diff options
Diffstat (limited to 'kpov_judge')
288 files changed, 0 insertions, 61199 deletions
diff --git a/kpov_judge/README.txt b/kpov_judge/README.txt deleted file mode 100644 index 1a9e772..0000000 --- a/kpov_judge/README.txt +++ /dev/null @@ -1,122 +0,0 @@ -What is kpov_judge - - kpov_judge is a system for the automated grading of assignments for - networking and system administration courses. - - Each assignment is represented by a task which a student should perform. - Tasks are customised for each student by setting a number of parameters - for each task. - - Typically, each task involves a number of interconnected computers, one - of which contains the kpov_judge testing program (test_task.py). After - solving the task, a student runs the test_task.py to check their solution. - The testing results are uploaded to a server for grading and feedback can - be provided immediately. - -Using kpov_judge as a student - - For each task, the student is supposed to set up some services or resources - on one or multiple computers. The services or resources are then checked to - see if the task has been performed successfully. The result of the test is - reported back to the student. - - The instructions for each task are included in the task itself. The - parameters for each task are either prepared for each student in advance or - generated the moment a student tries to check whether they have performed - the task successfully. - - The computers for each task are typically set up by downloading a set of - virtual disk images, creating a number of virtual machines using these - disks and connecting these virtual machines using virtual or physical - networks. After the computers are set up, a student can set up the services - required by the instructions. - - The checking is done by the program test_task.py. This program can run in - both an on-line mode where some of the testing is done by a remote server - or an off-line mode where all the testing is done locally. Since kpov_judge - is expected to be mostly used by schools, usually the on-line mode will be - used by students for handing in graded assignments and for immediate - feedback during practice. - -Using kpov_judge as a teacher - - TBD - -Preparing tasks - - Within the kpov_judge repository, tasks are stored under kpov_judge/tasks. - New tasks should be added as sub-directories of tasks. - - Each task is defined by a python file named task.py . The file task.py - contains: - - instructions - the task instructions in multiple languages, - - computers - a dictionary describing the computers used for this task, - - networks - a dictionary describing the network links for this task, - - params_meta - a dictionary with a description and other metadata for - each parameter for this task - - task(...) - a function for testing the student's solution of this task. - All the arguments for this function should be described in - params_meta and should be public. This function is run by - the student to test their task solution. The output of - task(...) should be relatively hard to fake - for example, - if the student had to set up the default route on one of - the computers, this function could return a string - containing the output of the 'netstat -r' command. The - idea is to make it harder for the student to fake the - correct output of task(...) than it would be to just - solve the task. - - task_check(results, params) - check the output of task(...). - The parameter results contains the return value of task(...). - The parameter params contains a dictionary of values for each - parameter used for this task - This function is used for grading the task and should return - a value between 0 and 10 with 0 representing the lowest and 10 - representing the highest number of points attainable for solving - the task. - - gen_params(user_id, params_meta) - prepare all the parameters for - this task. For most tasks, most of the parameters will be randomly - generated according to the metadata in params_meta. A number of - helper functions for generating the parameters are available in - kpov_util.py - - prepare_disks(templates, params) - prepare the disk images for this - task. For some tasks it might be neccessarry to create or edit - some files on the virtual disk images used by each student to set - up the computers needed for this task. The parameter templates - contains a dictionary of guestfs objects. Refer to the libguestfs - documentation for more information. - - Typically, a new task is created by the following steps: - - prepare a (virtual) testing computer - - checkout the kpov_judge repository on the testing computer - - create a copy of an existing task to use as reference - - change the instructions in task.py - - create the other computers and networks involved in this task - - change the dictionaries computers and networks in task.py - - change the params_meta to correspond to the new instructions. - - write a task(...) function which returns a simple string - - write a task_check function which simply prints out the parameter - results - - write a gen_params(user_id, params_meta) function - - run test_task -g to test gen_params and set the initial task parameters - - debug everything you have created so far by performing the task - and running test_task.py as many times as needed - - write the task_check and gen_params functions - - write the prepare_disks function - - commit the new task to the repository - - checkout the task on the web-based evaluation system - - upload the clean virtual disk images, add the task to the web-based - system - - log in as a student, download the images, solve task, run task_check - - debug the task if needed - - For each course taught using kpov_judge, a directory should be created - under kpov_judge/courses. Each course's directory can be arranged in any - way the lecturer sees fit. For fri_kpov, the directory contains one - sub-directory for each lesson. Each lesson consists of a task the student - should perform before attending class (preparation), the instructions - for that week's class (lecture) and a task the student will be graded on - after the class (evaluation). - - - - diff --git a/kpov_judge/add_task.py b/kpov_judge/add_task.py deleted file mode 100755 index 7bb2f3e..0000000 --- a/kpov_judge/add_task.py +++ /dev/null @@ -1,124 +0,0 @@ -#!/usr/bin/env python3 - -import glob -import inspect -import os -import settings -import sys -import urllib - -import kpov_util -import pymongo -from bson import Binary - -def task_check(results, params): - data = { - 'results': json.dumps(results), - 'params': json.dumps({k: v for k, v in params.items() if k != 'token'}), - } - # should be an argument to task_check, but probably better not modify the signature… - if 'token' in params: - data['token'] = params['token'] - - response = urllib.request.urlopen( - '{task_url}/{task_name}/results.json'.format(task_url=task_url, task_name=task_name), - data=urllib.parse.urlencode(data).encode()) - response_dict = json.loads(response.read().decode()) - hints = response_dict.get('hints', []) - hints = ['status: ' + response_dict.get('status', '')] + hints - return response_dict.get('result', 'No result'), hints - -uploading_task_check_source = inspect.getsource(task_check) - -def gen_params(user_id, meta): - return dict() - -dummy_gen_params_source = inspect.getsource(gen_params) - - -if __name__ == '__main__': - if len(sys.argv) < 2: - print("Usage: {0} <task_dir> [task_name]".format(sys.argv[0])) - exit(1) - dirname = sys.argv[1] - fname = os.path.join(dirname, 'task.py') - try: - class_id, task_id = sys.argv[2].split('/') - except: - normpath = os.path.normpath(dirname) - class_id = os.path.split(os.path.dirname(normpath))[-1] - task_id = os.path.basename(normpath) - print((class_id, task_id)) - - db = pymongo.MongoClient(settings.DB_URI).get_default_database() - - source = open(fname).read() - d = {} - # defines task, task_check, gen_params, prepare_disks, computers, params_meta - exec(compile(source, fname, 'exec'), globals(), d) - - public_meta = {} - for k, v in d['params_meta'].items(): - if v.get('public', False): - public_meta[k] = v - task_source = "\n\n".join([ - inspect.getsource(d['task']), - uploading_task_check_source, - "params_meta = {}".format(public_meta), - dummy_gen_params_source]) - task_check_source = inspect.getsource(d['task_check']) - gen_params_source = inspect.getsource(d['gen_params']) - prepare_disks_source = inspect.getsource(d['prepare_disks']) - x = list(d['params_meta'].keys()) # check for existence - db.computers_meta.remove({'task_id': task_id, 'class_id': class_id}) - auto_networks = set([None]) - for k, v in d['computers'].items(): - for n in v.get('network_interfaces', []): - auto_networks.add(n.get('network', None)) - db.computers_meta.update({ - 'task_id': task_id, - 'class_id': class_id, - 'name': k - }, {'$set': v}, upsert=True) - auto_networks.remove(None) - db.networks.remove({'task_id': task_id, 'class_id': class_id}) - try: - net_list = d['networks'].items() - except: - net_list = [(k, {'public': False}) for k in auto_networks] - for k, v in net_list: - db.networks.update({'task_id': task_id, 'class_id': class_id, 'name': k}, {'$set': v}, upsert=True) - db.task_checkers.update({ - 'task_id': task_id, 'class_id': class_id - }, {'$set': {'source': task_check_source}}, upsert=True) - db.tasks.update({ - 'task_id': task_id, 'class_id': class_id - },{'$set': {'source': task_source}}, upsert=True) - db.prepare_disks.update({ - 'task_id': task_id, 'class_id': class_id - }, {'$set': {'source': prepare_disks_source}}, upsert=True) - db.gen_params.update({'task_id': task_id, 'class_id': class_id}, - {'$set': {'source': gen_params_source}}, upsert=True) - db.task_params_meta.update({'task_id': task_id, 'class_id': class_id}, - {'$set': {'params': d['params_meta']}}, upsert=True) - db.task_instructions.update({'task_id': task_id, 'class_id': class_id}, - {'$set': d['instructions']}, upsert=True) - for howto_dir in glob.glob(os.path.join(dirname, 'howtos/*')): - howto_lang = os.path.basename(os.path.normpath(howto_dir)) - if howto_lang not in {'images'}: - with open(os.path.join(howto_dir, 'index.html')) as f: - db.howtos.update({ - 'task_id': task_id, - 'class_id': class_id, - 'lang': howto_lang}, - {'$set': {'text': f.read()}}, upsert=True) - else: - for img in glob.glob(os.path.join(howto_dir, '*')): - fname = os.path.basename(img) - with open(img, 'rb') as f: - db.howto_images.update({ - 'task_id': task_id, - 'class_id': class_id, - 'fname': fname, - }, - {'$set': {'data': Binary(f.read())}}, upsert=True) diff --git a/kpov_judge/courses/fri_kpov/01/evaluation b/kpov_judge/courses/fri_kpov/01/evaluation deleted file mode 120000 index bc7800d..0000000 --- a/kpov_judge/courses/fri_kpov/01/evaluation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/set_motd
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/01/lecture/idea.txt b/kpov_judge/courses/fri_kpov/01/lecture/idea.txt deleted file mode 100644 index e05a775..0000000 --- a/kpov_judge/courses/fri_kpov/01/lecture/idea.txt +++ /dev/null @@ -1,2 +0,0 @@ -Sistem dela pri vajah. Kako izgleda pristopni kolokvij. Kako se ocenjuje. -Pogosti problemi pri VirtualBox. Dodajanje diskov. Problemi z mrežo. diff --git a/kpov_judge/courses/fri_kpov/01/preparation b/kpov_judge/courses/fri_kpov/01/preparation deleted file mode 120000 index bc7800d..0000000 --- a/kpov_judge/courses/fri_kpov/01/preparation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/set_motd
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/02/evaluation b/kpov_judge/courses/fri_kpov/02/evaluation deleted file mode 120000 index aa80e13..0000000 --- a/kpov_judge/courses/fri_kpov/02/evaluation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/public_ip_ssh
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/02/lecture/idea.txt b/kpov_judge/courses/fri_kpov/02/lecture/idea.txt deleted file mode 100644 index 23f5dcc..0000000 --- a/kpov_judge/courses/fri_kpov/02/lecture/idea.txt +++ /dev/null @@ -1,2 +0,0 @@ -Primer pristopnega kolokvija. Odgovori na vprašanja. Pogoste težave v Virtualbox. -X11, desktopi, nastavitve. diff --git a/kpov_judge/courses/fri_kpov/02/preparation b/kpov_judge/courses/fri_kpov/02/preparation deleted file mode 120000 index 92a2558..0000000 --- a/kpov_judge/courses/fri_kpov/02/preparation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/mock_entrance_exam
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/03/evaluation b/kpov_judge/courses/fri_kpov/03/evaluation deleted file mode 120000 index 83669c5..0000000 --- a/kpov_judge/courses/fri_kpov/03/evaluation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/set_ip_dhcp_hostname
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/03/lecture/idea.txt b/kpov_judge/courses/fri_kpov/03/lecture/idea.txt deleted file mode 100644 index 92d984c..0000000 --- a/kpov_judge/courses/fri_kpov/03/lecture/idea.txt +++ /dev/null @@ -1,2 +0,0 @@ -Mrežne nastavitve pod Linuxom. Ukazi za delo z mrežo. tcpdump. NetworkManager. -dbus. diff --git a/kpov_judge/courses/fri_kpov/03/preparation b/kpov_judge/courses/fri_kpov/03/preparation deleted file mode 120000 index ecf9a02..0000000 --- a/kpov_judge/courses/fri_kpov/03/preparation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/set_ip_static_dhcp
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/04/evaluation b/kpov_judge/courses/fri_kpov/04/evaluation deleted file mode 120000 index 8c03708..0000000 --- a/kpov_judge/courses/fri_kpov/04/evaluation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/copy_rename_100_files
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/04/lecture/idea.txt b/kpov_judge/courses/fri_kpov/04/lecture/idea.txt deleted file mode 100644 index 1a29e34..0000000 --- a/kpov_judge/courses/fri_kpov/04/lecture/idea.txt +++ /dev/null @@ -1 +0,0 @@ -Vprašanja/odgovori glede pristopnega kolokvija. Bashizmi. Morda window managerji. diff --git a/kpov_judge/courses/fri_kpov/04/preparation b/kpov_judge/courses/fri_kpov/04/preparation deleted file mode 120000 index bf8f78f..0000000 --- a/kpov_judge/courses/fri_kpov/04/preparation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/copy_rename_20_files_tail_env
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/05/evaluation b/kpov_judge/courses/fri_kpov/05/evaluation deleted file mode 120000 index 71afeb3..0000000 --- a/kpov_judge/courses/fri_kpov/05/evaluation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/rename_grep_network
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/05/lecture/idea.txt b/kpov_judge/courses/fri_kpov/05/lecture/idea.txt deleted file mode 100644 index 91c85c2..0000000 --- a/kpov_judge/courses/fri_kpov/05/lecture/idea.txt +++ /dev/null @@ -1 +0,0 @@ -Reši pristopni kolokvij z visoko oceno. diff --git a/kpov_judge/courses/fri_kpov/05/preparation b/kpov_judge/courses/fri_kpov/05/preparation deleted file mode 120000 index 86fe4ae..0000000 --- a/kpov_judge/courses/fri_kpov/05/preparation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/edit_find_grep_compile_convert
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/06/evaluation b/kpov_judge/courses/fri_kpov/06/evaluation deleted file mode 120000 index 13f05ef..0000000 --- a/kpov_judge/courses/fri_kpov/06/evaluation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/dhcp_dns_predefined_ip
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/06/lecture/idea.txt b/kpov_judge/courses/fri_kpov/06/lecture/idea.txt deleted file mode 100644 index 89f3a3a..0000000 --- a/kpov_judge/courses/fri_kpov/06/lecture/idea.txt +++ /dev/null @@ -1 +0,0 @@ -Nastavi strežnik dhcp tako, da bodo računalniki v različnih skupinah dobili različna imena zagonskih datotek. Nastavi syslinux tako, da se bo ob zagonu syslinux pokazala slika. diff --git a/kpov_judge/courses/fri_kpov/06/preparation b/kpov_judge/courses/fri_kpov/06/preparation deleted file mode 120000 index aaee75c..0000000 --- a/kpov_judge/courses/fri_kpov/06/preparation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/isc_dhcp_live_boot
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/07/evaluation b/kpov_judge/courses/fri_kpov/07/evaluation deleted file mode 120000 index a033e6b..0000000 --- a/kpov_judge/courses/fri_kpov/07/evaluation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/network_boot_custom_program
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/07/lecture/idea.txt b/kpov_judge/courses/fri_kpov/07/lecture/idea.txt deleted file mode 100644 index a380311..0000000 --- a/kpov_judge/courses/fri_kpov/07/lecture/idea.txt +++ /dev/null @@ -1 +0,0 @@ -Zaženi računalnik. Spremeni initrd. Zaženi sistem prek NFS. Spremeni podatke v squashfs. diff --git a/kpov_judge/courses/fri_kpov/07/preparation b/kpov_judge/courses/fri_kpov/07/preparation deleted file mode 120000 index 338e3c4..0000000 --- a/kpov_judge/courses/fri_kpov/07/preparation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/smb_nfs
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/08/evaluation b/kpov_judge/courses/fri_kpov/08/evaluation deleted file mode 120000 index 9f38dbd..0000000 --- a/kpov_judge/courses/fri_kpov/08/evaluation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/snmp_alarms_interfaces
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/08/lecture/idea.txt b/kpov_judge/courses/fri_kpov/08/lecture/idea.txt deleted file mode 100644 index 0832279..0000000 --- a/kpov_judge/courses/fri_kpov/08/lecture/idea.txt +++ /dev/null @@ -1,2 +0,0 @@ -Postavi SNMP strežnik. Preberi podatke z njega. Dodaj agenta za temp. procesorja. Namesti CACTI. Nastavi CACTI, da bo bral podatke s strežnika. - diff --git a/kpov_judge/courses/fri_kpov/08/preparation b/kpov_judge/courses/fri_kpov/08/preparation deleted file mode 120000 index 43d41d1..0000000 --- a/kpov_judge/courses/fri_kpov/08/preparation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/snmp_agent_uptime
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/09/evaluation b/kpov_judge/courses/fri_kpov/09/evaluation deleted file mode 120000 index 4cf01e0..0000000 --- a/kpov_judge/courses/fri_kpov/09/evaluation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/rdate_64bit
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/09/lecture/idea.txt b/kpov_judge/courses/fri_kpov/09/lecture/idea.txt deleted file mode 100644 index 0fb111a..0000000 --- a/kpov_judge/courses/fri_kpov/09/lecture/idea.txt +++ /dev/null @@ -1,2 +0,0 @@ -Napiši svoj rdate klient. Nastavi računalnik, da bo uro sinhroniziral z NTP strežnika. - diff --git a/kpov_judge/courses/fri_kpov/09/preparation b/kpov_judge/courses/fri_kpov/09/preparation deleted file mode 120000 index 93958cb..0000000 --- a/kpov_judge/courses/fri_kpov/09/preparation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/custom_rdate
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/10/evaluation b/kpov_judge/courses/fri_kpov/10/evaluation deleted file mode 120000 index 7dad5da..0000000 --- a/kpov_judge/courses/fri_kpov/10/evaluation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/openvpn_multiple_hops
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/10/lecture/idea.txt b/kpov_judge/courses/fri_kpov/10/lecture/idea.txt deleted file mode 100644 index 3ae0c92..0000000 --- a/kpov_judge/courses/fri_kpov/10/lecture/idea.txt +++ /dev/null @@ -1,2 +0,0 @@ -Namesti OpenVPN. Ustvari OpenVPN strežnik. Omogoči sosedu, da se nanj poveže. -Ustvari javni in zasebni ključ. Omogoči več sosedom, da se povežejo na tvoj strežnik. diff --git a/kpov_judge/courses/fri_kpov/10/preparation b/kpov_judge/courses/fri_kpov/10/preparation deleted file mode 120000 index 88dd369..0000000 --- a/kpov_judge/courses/fri_kpov/10/preparation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/openvpn_simple_smb
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/11/evaluation b/kpov_judge/courses/fri_kpov/11/evaluation deleted file mode 120000 index 632bdfe..0000000 --- a/kpov_judge/courses/fri_kpov/11/evaluation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/radius_multiple_realms
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/11/lecture/idea.txt b/kpov_judge/courses/fri_kpov/11/lecture/idea.txt deleted file mode 100644 index fd9d1a9..0000000 --- a/kpov_judge/courses/fri_kpov/11/lecture/idea.txt +++ /dev/null @@ -1 +0,0 @@ -Nastavi apache tako, da se boš nanj prijavila s pomočjo avtentikacije pri sosedu. diff --git a/kpov_judge/courses/fri_kpov/11/preparation b/kpov_judge/courses/fri_kpov/11/preparation deleted file mode 120000 index 193fb07..0000000 --- a/kpov_judge/courses/fri_kpov/11/preparation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/radius_mysql_pam
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/12/evaluation b/kpov_judge/courses/fri_kpov/12/evaluation deleted file mode 120000 index 63a7017..0000000 --- a/kpov_judge/courses/fri_kpov/12/evaluation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/nat_port_forward
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/12/lecture/idea.txt b/kpov_judge/courses/fri_kpov/12/lecture/idea.txt deleted file mode 100644 index 852ee43..0000000 --- a/kpov_judge/courses/fri_kpov/12/lecture/idea.txt +++ /dev/null @@ -1,2 +0,0 @@ -Nastavi računalnik tako, da bo vse pakete za določene naslove prepošiljal na drug računalnik. -Vzpostavi NAT. diff --git a/kpov_judge/courses/fri_kpov/12/preparation b/kpov_judge/courses/fri_kpov/12/preparation deleted file mode 120000 index 28b7694..0000000 --- a/kpov_judge/courses/fri_kpov/12/preparation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/nat_vlc
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/13/evaluation b/kpov_judge/courses/fri_kpov/13/evaluation deleted file mode 120000 index 350e3c0..0000000 --- a/kpov_judge/courses/fri_kpov/13/evaluation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/openwrt
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/13/lecture/idea.txt b/kpov_judge/courses/fri_kpov/13/lecture/idea.txt deleted file mode 100644 index 7e12372..0000000 --- a/kpov_judge/courses/fri_kpov/13/lecture/idea.txt +++ /dev/null @@ -1,2 +0,0 @@ -Postavi OpenWRT na router. Usposobi predvajanje filmov na Raspberry PI. - diff --git a/kpov_judge/courses/fri_kpov/13/preparation b/kpov_judge/courses/fri_kpov/13/preparation deleted file mode 120000 index 3fa7bd2..0000000 --- a/kpov_judge/courses/fri_kpov/13/preparation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/vlc_stream_rtp
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/14/evaluation b/kpov_judge/courses/fri_kpov/14/evaluation deleted file mode 120000 index e6e31f2..0000000 --- a/kpov_judge/courses/fri_kpov/14/evaluation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/ldap_import
\ No newline at end of file diff --git a/kpov_judge/courses/fri_kpov/14/lecture/idea.txt b/kpov_judge/courses/fri_kpov/14/lecture/idea.txt deleted file mode 100644 index e9647ce..0000000 --- a/kpov_judge/courses/fri_kpov/14/lecture/idea.txt +++ /dev/null @@ -1,2 +0,0 @@ -Postavi strežnik OpenLDAP. Ustvari shemo. Ustvari uporabnika. Uporabi LDAP kot backend za RADIUS. - diff --git a/kpov_judge/courses/fri_kpov/14/preparation b/kpov_judge/courses/fri_kpov/14/preparation deleted file mode 120000 index 51c2854..0000000 --- a/kpov_judge/courses/fri_kpov/14/preparation +++ /dev/null @@ -1 +0,0 @@ -../../../tasks/ldap_search
\ No newline at end of file diff --git a/kpov_judge/create_disk_images.py b/kpov_judge/create_disk_images.py deleted file mode 100755 index d4a7cfd..0000000 --- a/kpov_judge/create_disk_images.py +++ /dev/null @@ -1,205 +0,0 @@ -#!/usr/bin/env python3 - -import hashlib -import collections -import fcntl -import glob -import inspect -import os -import re -import subprocess -import sys - -import guestfs -import pymongo - -import settings -import kpov_util -from util import write_default_config - -def get_prepare_disks(db, class_id, task_id): - prepare_disks_source = db.prepare_disks.find_one({'class_id': class_id, 'task_id': task_id})['source'] - d = {} - exec(compile(prepare_disks_source, 'prepare_disks.py', 'exec'), globals(), d) - return d['prepare_disks'] - -def create_snapshot(class_id, task_id, student_id, computer_name, disk_name, fmt='vmdk', overwrite=True): - # add a hash to filename to allow multiple students using the same directory - snap_hash = hashlib.sha1((student_id+class_id).encode()).hexdigest()[:3] - snap = '{}-{}-{}-{}.{}'.format( - task_id, snap_hash, computer_name, disk_name, fmt) - backing = [] - - template = disk_name + '.' + fmt - task_dir = os.path.join(student_id, class_id, task_id) - task_path = os.path.join(settings.STUDENT_DISK_PATH, task_dir) - - if not os.path.exists(os.path.join(task_path)) or overwrite: - if not os.path.exists(os.path.join(settings.DISK_TEMPLATE_PATH, template)): - raise Exception('template not found: {}'.format(template)) - - # ensure task dir exists - os.makedirs(task_path, exist_ok=True) - - if fmt in ('vdi', 'vmdk'): - # don’t use backing files, just copy the template - os.chdir(task_path) - if settings.STUDENT_DISK_COW: - subprocess.call(['cp', '--reflink=always', os.path.join(settings.DISK_TEMPLATE_PATH, template), snap]) - else: - subprocess.call(['cp', os.path.join(settings.DISK_TEMPLATE_PATH, template), snap]) - - elif fmt == 'qcow2': - # qemu-img create stores backing-file path as given, so link all - # backing images to task directory where target image will be - # generated - os.chdir(settings.DISK_TEMPLATE_PATH) # qemu-img info is saner when called from image directory - output = subprocess.check_output( - ['qemu-img', 'info', '--backing-chain', template], universal_newlines=True) - for image in [template] + [m.group(1) for m in re.finditer(r'backing file: (.*)', output)]: - backing += [image] - dest = os.path.join(task_path, image) - if not os.path.exists(dest): - os.symlink(os.path.join(settings.DISK_TEMPLATE_PATH, image), dest) - # would be great if someone finds a way to avoid the stuff above - - # make overlay image - os.chdir(task_path) - subprocess.call(['qemu-img', 'create', - '-f', fmt, - '-b', template, snap]) - - return task_dir, snap, backing - -def prepare_task_disks(class_id, task_id, student_id, fmt, computers): - disks = collections.defaultdict(dict) - templates = collections.defaultdict(dict) - for computer in computers: - lock_fp.write('creating computer ' + computer['name'] + '\n') - if not computer['disks']: - continue - - manual_disks = [] - try_automount = False - - g = guestfs.GuestFS() - for disk in computer['disks']: - lock_fp.write("register " + disk['name'] + '\n') - task_dir, snap, backing = create_snapshot(class_id, task_id, student_id, computer['name'], disk['name'], fmt=fmt) - snap_file = os.path.join(settings.STUDENT_DISK_PATH, task_dir, snap) - if 'options' in disk: - g.add_drive_opts(snap_file, **(disk['options'])) - else: - g.add_drive(snap_file) - if 'parts' in disk: - for p in disk['parts']: - lock_fp.write("part {}: {}\n".format( - settings.GUESTFS_DEV_PREFIX + p['dev'], p['path'])) - manual_disks.append( - (settings.GUESTFS_DEV_PREFIX + p['dev'], p['path'], p.get('options', None))) - else: - try_automount = True - - templates[disk['name']] = g - lock_fp.write(" templates[{}] = {}\n".format(disk['name'], disk)) - - # add disk or update existing record with new format - disks[computer['name']][disk['name']] = [snap] + backing - - g.launch() - mounted = set() - if try_automount: - roots = g.inspect_os() - for root in roots: - mps = g.inspect_get_mountpoints(root) - lock_fp.write('detected: ' + str(mps) + '\n') - for mountpoint, device in sorted(mps): - if mountpoint not in mounted: - try: - g.mount(device, mountpoint, ) - lock_fp.write( 'mounted ' + device + ' on ' + mountpoint + '\n') - except RuntimeError as msg: - lock_fp.write( "%s (ignored)\n" % msg) - mounted.add(mountpoint) - - for device, mountpoint, opts in manual_disks: - try: - if opts is not None: - g.mount_options(opts, device, mountpoint) - else: - g.mount(device, mountpoint) - lock_fp.write('manually mounted ' + device + " on " + mountpoint + '\n') - except RuntimeError as msg: - lock_fp.write( "%s (ignored)\n" % msg) - - lock_fp.write("preparing disks\n") - global_params = { - 'task_name': task_id, - 'class_id': class_id, - 'username': student_id - } - if 'TASK_URL' in vars(settings): - global_params['task_url'] = settings.TASK_URL + '/' + class_id + '/' - - task_params = db.task_params.find_one({'class_id': class_id, 'task_id': task_id, 'student_id': student_id})['params'] - prepare_disks = get_prepare_disks(db, class_id, task_id) - prepare_disks(templates, task_params, global_params) - - # pospravi za seboj. - lock_fp.write("unmounting\n") - for g in set(templates.values()): - g.umount_all() - g.close() - - return disks - -if __name__ == '__main__': - if len(sys.argv) != 1: - print("Usage: {0}") - print("Create the pending disk images") - - db = pymongo.MongoClient(settings.DB_URI).get_default_database() - - all_computers = collections.defaultdict(list) - for computer in db.student_computers.find({"disk_urls": {"$exists": False}}): - all_computers[(computer['class_id'], computer['task_id'], computer['student_id'])] += [computer] - - for (class_id, task_id, student_id), computers in all_computers.items(): - if db.student_computers.find_one({'class_id': class_id, 'task_id': task_id, 'student_id': student_id}) is None: - continue - - lock_file = os.path.join(settings.STUDENT_LOCKFILE_PATH, - '{0}-{1}-{2}.lock'.format(student_id, class_id, task_id)) - with open(lock_file, 'w') as lock_fp: - try: - fcntl.lockf(lock_fp, fcntl.LOCK_EX | fcntl.LOCK_NB) - except IOError: - continue - - all_disks = collections.defaultdict(dict) - for fmt in settings.STUDENT_DISK_FORMATS: - print("Creating {}/{} for {} [format={}]".format(class_id, task_id, student_id, fmt)) - try: - for computer, disks in prepare_task_disks(class_id, task_id, student_id, fmt, computers).items(): - for disk, urls in disks.items(): - d = all_disks[computer].setdefault(disk, {'formats': []}) - d['formats'] += [fmt] - d[fmt] = urls - except Exception as ex: - print(ex) - continue - - lock_fp.write("saving URLs\n") - for computer in computers: - comp_name = computer['name'] - disks = all_disks[comp_name] - lock_fp.write('urls: '+ str(disks) + '\n') - db.student_computers.update({ - 'disk_urls': {'$exists': False}, - 'student_id': student_id, - 'task_id': task_id, - 'class_id': class_id, - 'name': comp_name}, - {'$set': { 'disk_urls': disks }}) - - os.unlink(lock_file) diff --git a/kpov_judge/create_opstack.py b/kpov_judge/create_opstack.py deleted file mode 100644 index a7fa699..0000000 --- a/kpov_judge/create_opstack.py +++ /dev/null @@ -1,112 +0,0 @@ -import keystoneclient.v2_0.client as ksclient -import quantumclient.quantum.client as qclient -import novaclient.client as nclient -import settings -import pymongo -import sys -import os -import fcntl - -########################################################## - -def create_network(qc, network_name, tenant_name): - net = {'name': network_name, 'admin_state_up': True, 'tenant_id': getattr(kc.tenants.find(name=tenant_name), 'id')} - network = qc.create_network({'network': net}) - sub = {'name': network_name + "-subnet", 'cidr': '0.0.0.0/24', 'network_id': network['network']['id'], 'ip_version': 4, 'enable_dhcp': False, 'gateway_ip': None} - subnet = qc.create_subnet({'subnet': sub}) - return network - -def get_nova_client(tenant_name): - return nclient.Client("1.1", username=settings.OS_ADMIN_USER, api_key=settings.OS_ADMIN_PASS, auth_url=settings.OS_AUTH_URL, project_id=tenant_name) - -def get_quantum_client(tenant_name): - kcsub = ksclient.Client(auth_url=settings.OS_AUTH_URL, username=settings.OS_ADMIN_USER, password=settings.OS_ADMIN_PASS, tenant_name=tenant_name) - client = qclient.Client('2.0', endpoint_url=settings.OS_QUANTUM_URL, token=kcsub.auth_token) - client.format = 'json' - return client - - -########################################################## -def main(): - kc = ksclient.Client(endpoint=settings.OS_ADMIN_AUTH_URL, token=settings.OS_ADMIN_TOKEN) - admin_role = kc.roles.find(name='admin') - member_role = kc.roles.find(name='Member') - - db = pymongo.MongoClient(settings.DB_URI).get_default_database() - l = db.student_tasks.find({'create_openstack': True}) - projects = list() - for project in l: - task_id, student_id = project['task_id'], project['student_id'] - if (task_id, student_id) not in projects: - projects.append((task_id, student_id)) - #projects = [ ('01.predvaja','at9036@student.uni-lj.si'), ('01.predvaja', 'andrejtolic@fri1.uni-lj.si') ] - for task_id, student_id in projects: - l = db.student_tasks.find_one({'task_id': task_id, 'student_id': student_id, "create_openstack": True}) - if l is None: - continue - lock_file = os.path.join(settings.OS_LOCKFILE_PATH, '{0}-{1}.lock'.format(student_id, task_id)) - lock_fp = open(lock_file, 'w') - try: - fcntl.lockf(lock_fp, fcntl.LOCK_EX | fcntl.LOCK_NB) - except IOError: - continue - # Ustvarimo projekt - project_name = "{0}-{1}".format(student_id, task_id) - project = kc.tenants.create(tenant_name=project_name) - lock_fp.write("Created project {0}.\n".format(project_name)) - # Dodamo admin uporabnika v projekt - kc.roles.add_user_role(kc.users.find(name='admin'), admin_role, project) - lock_fp.write("Added user admin to project {0}.\n".format(project_name)) - # Ustvarimo L2 omrezja - qc = get_quantum_client(tenant_name=project_name) - network_list = db.networks.find({'task_id': task_id}) - nets = {} - for n in network_list: - net = create_network(qc, network_name=n['name'], tenant_name=project_name) - lock_fp.write("Created network {0}.".format(n['name'])) - nets[n['name']] = {'net-id': net['network']['id']} - db.student_networks.update({'task_id': task_id, 'student_id': student_id, 'name': n['name']}, {'$set': {'network_id': net['network']['id'], 'public': n['public']}}, upsert=True) - #Ustvarimo instance - instance_list = db.computers_meta.find({'task_id': task_id}) - nc = get_nova_client(tenant_name=project_name) - first_instance_in_project = True - for inst in instance_list: - image = nc.images.find(name=inst['image']) - flavor = nc.flavors.find(name=inst['flavor']) - instance_nets = [nets[iface['network']] for iface in inst['network_interfaces']] - if inst['config_drive']: - if 'string' in inst['userdata'].keys(): - udata = inst['userdata']['string'] - elif 'file' in inst['userdata'].keys(): - try: - udata = open(inst['userdata']['file'], 'r') - except: - udata = None - lock_fp.write("Problem reading file {0} for config drive. Using None instead.".format(inst['userdata']['file'])) - else: - udata = None - if first_instance_in_project: - scheduler_hints = None - first_instance_in_project = False - else: - s = db.student_computers.find_one({'task_id': task_id, 'student_id': student_id, 'name': inst['name']}) - # Value corresponding to the 'same_host' key is a list (with just one element) - # of instances besides which to put the new instance. - scheduler_hints = {'same_host': [s['openstack_instance_id']] } - instance = nc.servers.create(name=project_name + "-" + inst['name'], image=image, flavor=flavor, nics=instance_nets, config_drive=inst['config_drive'], userdata=udata, scheduler_hints=scheduler_hints) - lock_fp.write("Created instance for computer {0}.".format(inst['name'])) - # Write openstack instance id to mongo. - db.student_computers.update({'task_id': task_id, 'student_id': student_id, 'name': inst['name']}, {'$set': {'openstack_instance_id': instance['id'], 'openstack_host': instance['OS-EXT-SRV-ATTR:host'], 'openstack_finalized': False}, upsert=True) - # instance['status'] lahko BUILD, ACTIVE ali SHUTOFF - # instance = nova.servers.get(instance['id']) - db.student_tasks.update({'task_id': task_id, 'student_id': student_id}, {'$set': {'create_openstack': False, 'openstack_created': True}}) - os.unlink(lock_file) - lock_fp.close() - - # TODO v loceni skripti. - # povezi test-net na brarbiters, po izklopu instanc guestfs nad diski in create_image. - # Dodamo studenta v projekt - kc.roles.add_user_role(kc.users.find(name=student_id), member_role, project) - -if __name__ == '__main__': - main() diff --git a/kpov_judge/doc/DEVELOPMENT-FAQ.txt b/kpov_judge/doc/DEVELOPMENT-FAQ.txt deleted file mode 100644 index 0c358cc..0000000 --- a/kpov_judge/doc/DEVELOPMENT-FAQ.txt +++ /dev/null @@ -1,93 +0,0 @@ -Question: - - I want to write a new task. Where do I start? - -Answer: - - You can start by looking at tasks/set_ip_static_dhcp. For instructions, see the file README.txt under Preparing tasks. After preparing the task, make sure to update the howtos. - -Question: - - How do I run gen_params? - -Answer: - - run test_task.py -g - -Question: - - What is the URL supposed to be? - -Answer: - - For testing on the simpleArbiter, you should probably set it to: - file:///home/tester/kpov-public/kpov_judge/tasks - The name should then be, for example, custom_rdate - -Vprašanje: - - Kaj, če ne znam postaviti vprašanja v angleščini? - Odgovor: - - Postavi vprašanje v slovenščini in asistent ga bo prevedel. - -Vprašanje (06-isc_live_boot): - - lahko prosim razložite bolj potrobno prvi del navodil (ne razumemo kaj naj bi bila ta datoteka A, ter kako so mišljeni ti IP-ji pri parametru IP_DHCP ter IP_GW). - -Question: - - What is the difference between simpleArbiter, simpleArbiterDhcp, simpleArbiter-base? - -Answer: - - The image simpleArbiter-base is a base image which should not be altered. simpleArbiter is derived from simpleArbiter-base - and is the minimal system that should be used for testing. simpleArbiterDhcp is the same as simpleArbiter, but includes a DHCP server. - simpleArbiterGW includes a DHCP server and is configured to act as a router using NAT. - -Question: - -Kaj je potrebno naredit pri nalogi write gen_params(), params_meta z parmams_meta tabelo? - -Answer: - Potrebno je spremeniti slovar params_meta tako, da pogleda katere parametre ste zgenerirali in kakšnega tipa so ti parametri. - -Question: - -Navodila za smb_nfs nalogo zahtevajo, da na virtualki SimpleArbiterDhcp poiscem mapo "Mapa", imenik "SAMBA_SHARE" ter "NFS_POT", vendar teh map na virtualki ni? - -Answer: - -Mapo Mapa kreirajte sami.Ta se bo enkrat ustvarila sama avtomaticno v prepare_disks. SAMBA_SHARE in NFS_POT bo ustvaril študent, ko bo reševal vašo nalogo. - -Question: - - How do I add a translation of the instructions? - -Answer: - - Add a key, value pair into the instructions dictionary. For example (orig): - instructions = {'en':'Do the locomotion'} - corrected: - instructions = {'en':'Do the locomotion', 'si':'Izvedi gibanje'} - -Question: - - How do I add a parameter to params_meta / what is the meaning of each field? - -Answer: - - params_meta is a simple dictionary. If, for example, the parameters are SOME_IP, SOME_MAC and SOME_FNAME and - if the student is supposed to be shown SOME_IP and SOME_MAC but is supposed to find SOME_FNAME by inspecting the - filesystem of their computer, params_meta might look like this: - -params_meta = { - 'SOME_IP': { - 'descriptions': {'en': 'THE IP of the server'}, # this will be shown in the dialog when test_task.py is run - 'w': False, # the student is not allowed to change the value of SOME_IP - 'public': True, # the student should be shown the value of SOME_IP if they run test_task.py - 'type':'IP', # this can be used to pick the right function to generate the random value - # Look at kpov_util.default_generators and kpov_util.IPv4_addr_gen - # for more info. - 'generated': True # this parameter should be generated by gen_params - }, - 'SOME_MAC': { - 'descriptions': {'en': 'The MAC of the server', 'si': u'MAC naslov strežnika'}, - 'w': True, # the student can change this value - 'public': True, # the student should see this parameter when they run test_task.py - 'type':'MAC', # if 'MAC' were a key in kpov_util.default_generators, the value - # in that dictionary should be a random function for generating MAC addresses. - # Also, in the future, the 'type' field could be used for validation. - 'generated': False # the student should enter this value his or herself. - }, - 'SOME_FNAME': { - 'descriptions': {'en': 'The name of the file to find'}, # this won't be shown anywhere - 'w': False, # the student is not allowed to change this - 'public': False, # the student will not be shown this parameter when they run test_task.py - 'type': 'filename', # this can be used by gen_params or kpov_util for generation - 'generated': True # the value should be generated in gen_params - }, -} - diff --git a/kpov_judge/doc/presentation/beamercolorthemeULFRI.sty b/kpov_judge/doc/presentation/beamercolorthemeULFRI.sty deleted file mode 100644 index a7bc26b..0000000 --- a/kpov_judge/doc/presentation/beamercolorthemeULFRI.sty +++ /dev/null @@ -1,39 +0,0 @@ -% Copyright 2012 by Pa3cio Bulic, UL FRI -% -% This file may be distributed and/or modified -% -% 1. under the LaTeX Project Public License and/or -% 2. under the GNU Public License. -% -% See the file doc/licenses/LICENSE for more details. - -% Just modified the Dolphin color theme. - -\ProvidesPackageRCS $Header: beamercolorthemeULFRI.sty,v 0.0.1 2012/10/08 22:31:55 patricio $ - - -\mode<presentation> - -%% Nastavimo barvo primarnih elementov (npr. headline-a): -\setbeamercolor*{palette primary}{use=structure,fg=white,bg=structure.fg} -\setbeamercolor*{palette secondary}{use=structure,fg=black,bg=structure.fg} -\setbeamercolor*{palette tertiary}{use=structure,fg=black,bg=structure.fg} -\setbeamercolor*{palette quaternary}{fg=white,bg=black} - -%% Barva ozadja za sidebar -\setbeamercolor*{sidebar}{use=structure,bg=white,fg=black} - - -%% barva elementov v sidebar-u: -\setbeamercolor*{palette sidebar primary}{fg=black,bg=white} -\setbeamercolor*{palette sidebar secondary}{fg=black} -\setbeamercolor*{palette sidebar tertiary}{fg=black} -\setbeamercolor*{palette sidebar quaternary}{fg=black} - -\setbeamercolor*{titlelike}{use=structure,fg=structure.fg} - -\setbeamercolor*{separation line}{} -\setbeamercolor*{fine separation line}{} - -\mode -<all> diff --git a/kpov_judge/doc/presentation/beamerthemeULFRI.sty b/kpov_judge/doc/presentation/beamerthemeULFRI.sty deleted file mode 100644 index 276c3c3..0000000 --- a/kpov_judge/doc/presentation/beamerthemeULFRI.sty +++ /dev/null @@ -1,78 +0,0 @@ -% Copyright 2012 by Pa3cio Bulic, UL FRI -% -% This file may be distributed and/or modified -% -% 1. under the LaTeX Project Public License and/or -% 2. under the GNU Public License. -% -% See the file doc/licenses/LICENSE for more details. - -\ProvidesPackageRCS $Header: beamerthemeULFRI.sty,v 0.0.1 2012/11/07 09:11:41 pa3cio $ - -\DeclareOptionBeamer{height}{\PassOptionsToPackage{height=#1}{beamerouterthemesidebar}} -\ProcessOptionsBeamer - -\DeclareOptionBeamer{compress}{\beamer@compresstrue} -\ProcessOptionsBeamer - -\mode<presentation> -\usecolortheme[RGB={180,22,44}]{structure} -%\usecolortheme[RGB={204,45,48}]{structure} -%\usecolortheme[cmyk={0.0,0.81,0.81,0.16}]{structure} - - -% If you have a file called "university-logo-filename.xxx", where xxx -% is a graphic format that can be processed by latex or pdflatex, -% resp., then you can add a logo as follows: - -\pgfdeclareimage[height=20mm]{logo}{znakULFRIbeamer.png} -\logo{\pgfuseimage{logo}} -%\logo{\includegraphics[height=20mm]{znakULFRIbeamer.png}} - - -%\useoutertheme{infolines} -%\setbeamertemplate{items}[ball] -%\usefonttheme{serif} - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% IZGLED BLOKOV (TEOREMI, DOKAZI, ....) -% 1. Ce zelite imeti bloke z zaobljenimi robovi, izberite: -% \setbeamertemplate{blocks}[rounded][shadow=false] -% 2. Ce zelite imeti bloke z zaobljenimi robovi in sencami, izberite: -% \setbeamertemplate{blocks}[rounded][shadow=true] -% 3. Ce zelite imeti navadne pravokotne bloke, izberite: -% \setbeamertemplate{blocks}[default] -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%\setbeamertemplate{blocks}[rounded][shadow=false] -%\setbeamertemplate{blocks}[rounded][shadow=true] -\setbeamertemplate{blocks}[default] -% -% -% -% -\setbeamertemplate{navigation symbols}{} -% - - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% I Z B I R A T E M E Z U N A N J I H E L E M E N T O V : -% 1. Ce zelite prosojnice brez kazala poglavij, zakomentirajte spodnji dve vrstici -% 2. Ce zelite prosojnice s kazalom ob strani in logom v zgornjem levem kotu, izberite \useoutertheme[left,hideallsubsections]{sidebar} -% 3. Ce zelite prosojnice s kazalom v glavi, izberite \useoutertheme{split} -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -\useoutertheme[left,hideallsubsections]{sidebar} -%\useoutertheme{split} -%\useoutertheme[footline=authorinstitutetitle]{miniframes} -%\useoutertheme{shadow} - - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% B A R V N A P R E D L O G A I N F O N T I -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -\usecolortheme{ULFRI} -\usecolortheme{orchid} -\setbeamercolor*{frametitle}{parent=palette primary} -\setbeamerfont{block title}{size={}} - -\mode -<all> diff --git a/kpov_judge/doc/presentation/beamerthemeULFRIframes.sty b/kpov_judge/doc/presentation/beamerthemeULFRIframes.sty deleted file mode 100644 index cd0e37a..0000000 --- a/kpov_judge/doc/presentation/beamerthemeULFRIframes.sty +++ /dev/null @@ -1,74 +0,0 @@ -% Copyright 2012 by Pa3cio Bulic, UL FRI -% -% This file may be distributed and/or modified -% -% 1. under the LaTeX Project Public License and/or -% 2. under the GNU Public License. -% -% See the file doc/licenses/LICENSE for more details. - -\ProvidesPackageRCS $Header: beamerthemeULFRIframes.sty,v 0.0.1 2012/11/07 09:11:41 pa3cio $ - -\DeclareOptionBeamer{height}{\PassOptionsToPackage{height=#1}{beamerouterthemesidebar}} -\ProcessOptionsBeamer - -\DeclareOptionBeamer{compress}{\beamer@compresstrue} -\ProcessOptionsBeamer - -\mode<presentation> -\usecolortheme[RGB={180,22,44}]{structure} -%\usecolortheme[RGB={204,45,48}]{structure} -%\usecolortheme[cmyk={0.0,0.81,0.81,0.16}]{structure} - - -% If you have a file called "university-logo-filename.xxx", where xxx -% is a graphic format that can be processed by latex or pdflatex, -% resp., then you can add a logo as follows: - -%\pgfdeclareimage[height=20mm]{logo}{znakULFRIbeamer.png} -%\logo{\pgfuseimage{logo}} -%\logo{\includegraphics[height=20mm]{znakULFRIbeamer.png}} - - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% IZGLED BLOKOV (TEOREMI, DOKAZI, ....) -% 1. Ce zelite imeti bloke z zaobljenimi robovi, izberite: -% \setbeamertemplate{blocks}[rounded][shadow=false] -% 2. Ce zelite imeti bloke z zaobljenimi robovi in sencami, izberite: -% \setbeamertemplate{blocks}[rounded][shadow=true] -% 3. Ce zelite imeti navadne pravokotne bloke, izberite: -% \setbeamertemplate{blocks}[default] -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%\setbeamertemplate{blocks}[rounded][shadow=false] -%\setbeamertemplate{blocks}[rounded][shadow=true] -\setbeamertemplate{blocks}[default] -% -% -% -% -\setbeamertemplate{navigation symbols}{} -% - - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% I Z B I R A T E M E Z U N A N J I H E L E M E N T O V : -% 1. Ce zelite prosojnice brez kazala poglavij, zakomentirajte spodnji dve vrstici -% 2. Ce zelite prosojnice s kazalom ob strani in logom v zgornjem levem kotu, izberite \useoutertheme[left,hideallsubsections]{sidebar} -% 3. Ce zelite prosojnice s kazalom v glavi, izberite \useoutertheme{split} -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -%\useoutertheme[left,hideallsubsections]{sidebar} -%\useoutertheme{split} -\useoutertheme[footline=authorinstitutetitle]{miniframes} -%\useoutertheme{shadow} - - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -% B A R V N A P R E D L O G A I N F O N T I -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -\usecolortheme{ULFRI} -\usecolortheme{orchid} -\setbeamercolor*{frametitle}{parent=palette primary} -\setbeamerfont{block title}{size={}} - -\mode -<all> diff --git a/kpov_judge/doc/presentation/figs/VCL.png b/kpov_judge/doc/presentation/figs/VCL.png Binary files differdeleted file mode 100644 index 01a3d3c..0000000 --- a/kpov_judge/doc/presentation/figs/VCL.png +++ /dev/null diff --git a/kpov_judge/doc/presentation/figs/baby.jpg b/kpov_judge/doc/presentation/figs/baby.jpg Binary files differdeleted file mode 100644 index aedb769..0000000 --- a/kpov_judge/doc/presentation/figs/baby.jpg +++ /dev/null diff --git a/kpov_judge/doc/presentation/figs/centralised-architecture.pdf b/kpov_judge/doc/presentation/figs/centralised-architecture.pdf Binary files differdeleted file mode 100644 index 17c9c6e..0000000 --- a/kpov_judge/doc/presentation/figs/centralised-architecture.pdf +++ /dev/null diff --git a/kpov_judge/doc/presentation/figs/centralised-architecture.png b/kpov_judge/doc/presentation/figs/centralised-architecture.png Binary files differdeleted file mode 100644 index a4830fc..0000000 --- a/kpov_judge/doc/presentation/figs/centralised-architecture.png +++ /dev/null diff --git a/kpov_judge/doc/presentation/figs/centralised-architecture.svg b/kpov_judge/doc/presentation/figs/centralised-architecture.svg deleted file mode 100644 index b91c593..0000000 --- a/kpov_judge/doc/presentation/figs/centralised-architecture.svg +++ /dev/null @@ -1,18111 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1052.3622" - height="744.09448" - id="svg2" - version="1.1" - inkscape:version="0.48.5 r10040" - sodipodi:docname="centralised-architecture.svg" - inkscape:export-filename="/home/polz/predmeti/kpov-public/kpov_judge/doc/presentation/figs/centralised-architecture.png" - inkscape:export-xdpi="100" - inkscape:export-ydpi="100"> - <defs - id="defs4"> - <radialGradient - r="20.631315" - fy="138.73308" - fx="71.368683" - cy="138.73308" - cx="71.368683" - gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" - gradientUnits="userSpaceOnUse" - id="radialGradient11107" - xlink:href="#linearGradient3802" - inkscape:collect="always" /> - <radialGradient - r="20.5" - fy="116" - fx="72" - cy="116" - cx="72" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - gradientUnits="userSpaceOnUse" - id="radialGradient11105" - xlink:href="#linearGradient4949" - inkscape:collect="always" /> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientTransform="translate(1,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11103" - xlink:href="#linearGradient6064" - inkscape:collect="always" /> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientUnits="userSpaceOnUse" - id="linearGradient11101" - xlink:href="#linearGradient6064" - inkscape:collect="always" /> - <linearGradient - y2="15.908398" - x2="72.281242" - y1="58" - x1="70.316795" - gradientTransform="translate(102.53048,-57.275649)" - gradientUnits="userSpaceOnUse" - id="linearGradient11095" - xlink:href="#linearGradient7136" - inkscape:collect="always" /> - <radialGradient - r="50.234375" - fy="8.0446291" - fx="43.034355" - cy="42.699898" - cx="43.620941" - gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" - gradientUnits="userSpaceOnUse" - id="radialGradient11093" - xlink:href="#linearGradient4875" - inkscape:collect="always" /> - <linearGradient - y2="32.457832" - x2="76.596703" - y1="148.57518" - x1="17.723173" - gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" - gradientUnits="userSpaceOnUse" - id="linearGradient11091" - xlink:href="#linearGradient4860" - inkscape:collect="always" /> - <radialGradient - r="47.937988" - fy="111.93269" - fx="69.801033" - cy="88.499367" - cx="60.097603" - gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" - gradientUnits="userSpaceOnUse" - id="radialGradient11089" - xlink:href="#linearGradient3954" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11087" - xlink:href="#linearGradient3088" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11085" - xlink:href="#linearGradient3088" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11081" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11079" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11077" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11075" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11073" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11071" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11069" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11067" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11065" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11063" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11061" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11059" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11057" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11055" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11053" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11051" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11049" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11047" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11045" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11043" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11041" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11039" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11037" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11035" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11033" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11031" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11029" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11027" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11025" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11023" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11021" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11019" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11017" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11015" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11013" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <radialGradient - r="42.727272" - fy="44.909092" - fx="52.18182" - cy="44.909092" - cx="52.18182" - spreadMethod="reflect" - gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" - gradientUnits="userSpaceOnUse" - id="radialGradient11011" - xlink:href="#linearGradient3065" - inkscape:collect="always" /> - <radialGradient - r="17.67767" - fy="55.875111" - fx="176.77669" - cy="65.774605" - cx="177.4838" - gradientUnits="userSpaceOnUse" - id="radialGradient11009" - xlink:href="#linearGradient7290" - inkscape:collect="always" /> - <linearGradient - y2="15.75" - x2="71.75" - y1="112.25" - x1="71.75" - gradientTransform="translate(-12,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11007" - xlink:href="#linearGradient3586" - inkscape:collect="always" /> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" - gradientUnits="userSpaceOnUse" - id="radialGradient11005" - xlink:href="#linearGradient3399-1" - inkscape:collect="always" /> - <radialGradient - r="2.953125" - fy="322.82944" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" - gradientUnits="userSpaceOnUse" - id="radialGradient11003" - xlink:href="#linearGradient3483" - inkscape:collect="always" /> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient11001" - xlink:href="#linearGradient4429" - inkscape:collect="always" /> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient10999" - xlink:href="#linearGradient4441" - inkscape:collect="always" /> - <linearGradient - y2="122.43194" - x2="91.105286" - y1="122.43194" - x1="50.458698" - gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10996" - xlink:href="#linearGradient4029" - inkscape:collect="always" /> - <linearGradient - y2="124.48643" - x2="93.409775" - y1="124.48643" - x1="50.394154" - gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10993" - xlink:href="#linearGradient3149" - inkscape:collect="always" /> - <linearGradient - y2="477.52972" - x2="742.16382" - y1="477.52972" - x1="555.14642" - gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990" - xlink:href="#linearGradient3611" - inkscape:collect="always" /> - <radialGradient - r="93.508705" - fy="406.23959" - fx="648.6554" - cy="390.69016" - cx="648.65527" - gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" - gradientUnits="userSpaceOnUse" - id="radialGradient10987" - xlink:href="#linearGradient3166" - inkscape:collect="always" /> - <radialGradient - r="93.508705" - fy="639.22247" - fx="648.65515" - cy="639.22247" - cx="648.65515" - gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" - gradientUnits="userSpaceOnUse" - id="radialGradient10984" - xlink:href="#linearGradient3176" - inkscape:collect="always" /> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient10981" - xlink:href="#linearGradient3722" - inkscape:collect="always" /> - <radialGradient - r="7.9898205" - fy="76.438904" - fx="55.989819" - cy="76.438904" - cx="55.989819" - gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" - gradientUnits="userSpaceOnUse" - id="radialGradient10977" - xlink:href="#linearGradient3872" - inkscape:collect="always" /> - <linearGradient - y2="110.8287" - x2="73.38102" - y1="150.87357" - x1="73.38102" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10974" - xlink:href="#linearGradient3176" - inkscape:collect="always" /> - <linearGradient - gradientTransform="translate(2,927.73011)" - y2="18.691383" - x2="16.357016" - y1="92" - x1="36" - gradientUnits="userSpaceOnUse" - id="linearGradient10953" - xlink:href="#linearGradient4409" - inkscape:collect="always" /> - <linearGradient - y2="7.7186575" - x2="55.058228" - y1="-0.85672575" - x1="55.058228" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10950" - xlink:href="#linearGradient7354" - inkscape:collect="always" /> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" - gradientUnits="userSpaceOnUse" - id="linearGradient10947" - xlink:href="#linearGradient7394" - inkscape:collect="always" /> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" - gradientUnits="userSpaceOnUse" - id="linearGradient10892" - xlink:href="#linearGradient7394" - inkscape:collect="always" /> - <linearGradient - y2="116.8996" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10888" - xlink:href="#linearGradient7365" - inkscape:collect="always" /> - <linearGradient - y2="60.866104" - x2="73.467186" - y1="60.866104" - x1="72.201843" - gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" - gradientUnits="userSpaceOnUse" - id="linearGradient10883" - xlink:href="#linearGradient3576" - inkscape:collect="always" /> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" - gradientUnits="userSpaceOnUse" - id="radialGradient10880" - xlink:href="#linearGradient3399-1" - inkscape:collect="always" /> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" - gradientUnits="userSpaceOnUse" - id="radialGradient10876" - xlink:href="#linearGradient3483" - inkscape:collect="always" /> - <radialGradient - r="26.75" - fy="-16.181448" - fx="60" - cy="-16.181448" - cx="60" - gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" - gradientUnits="userSpaceOnUse" - id="radialGradient10871" - xlink:href="#linearGradient7365" - inkscape:collect="always" /> - <linearGradient - y2="24.713068" - x2="60.428722" - y1="22.930367" - x1="60.428722" - gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" - gradientUnits="userSpaceOnUse" - id="linearGradient10867" - xlink:href="#linearGradient4878" - inkscape:collect="always" /> - <linearGradient - y2="15.411574" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10845" - xlink:href="#linearGradient7365" - inkscape:collect="always" /> - <radialGradient - r="94" - fy="-192.92754" - fx="-122.25" - cy="-192.92754" - cx="-122.25" - gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" - gradientUnits="userSpaceOnUse" - id="radialGradient10842" - xlink:href="#linearGradient3393" - inkscape:collect="always" /> - <linearGradient - y2="-228.88507" - x2="-100" - y1="-106.62158" - x1="-100" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10839" - xlink:href="#linearGradient3385-7" - inkscape:collect="always" /> - <linearGradient - y2="-208.05618" - x2="-80" - y1="-67.985718" - x1="-80" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10836" - xlink:href="#linearGradient3259" - inkscape:collect="always" /> - <linearGradient - y2="-275.16071" - x2="-127.61703" - y1="-310.29703" - x1="-127.61703" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" - gradientUnits="userSpaceOnUse" - id="linearGradient10833" - xlink:href="#linearGradient3303-2" - inkscape:collect="always" /> - <radialGradient - r="78" - fy="-166.52031" - fx="-120.37437" - cy="-150.6152" - cx="-120" - gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" - gradientUnits="userSpaceOnUse" - id="radialGradient10830" - xlink:href="#linearGradient3273" - inkscape:collect="always" /> - <radialGradient - r="78" - fy="-109.7959" - fx="-120" - cy="-109.7959" - cx="-120" - gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" - gradientUnits="userSpaceOnUse" - id="radialGradient10827" - xlink:href="#linearGradient3273" - inkscape:collect="always" /> - <linearGradient - y2="-124.49196" - x2="-11.793251" - y1="-0.17180708" - x1="-11.793251" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10823" - xlink:href="#linearGradient3427" - inkscape:collect="always" /> - <linearGradient - y2="-158.88614" - x2="-90.485931" - y1="-60.000008" - x1="-132.38875" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10820" - xlink:href="#XMLID_18_" - inkscape:collect="always" /> - <radialGradient - r="76" - fy="-120.68829" - fx="-526.78827" - cy="-120.68829" - cx="-526.78827" - gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" - gradientUnits="userSpaceOnUse" - id="radialGradient10817" - xlink:href="#XMLID_18_" - inkscape:collect="always" /> - <linearGradient - y2="-141.69821" - x2="-474.70587" - y1="-349.57544" - x1="-519.00256" - gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" - gradientUnits="userSpaceOnUse" - id="linearGradient10814" - xlink:href="#linearGradient4376" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4441"> - <stop - id="stop4443" - offset="0" - style="stop-color:#dbfaff;stop-opacity:1;" /> - <stop - id="stop4445" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4441" - id="radialGradient4439" - gradientUnits="userSpaceOnUse" - cx="-1" - cy="107" - fx="-1" - fy="107" - r="1" /> - <linearGradient - id="linearGradient4429"> - <stop - style="stop-color:#fff1c0;stop-opacity:1;" - offset="0" - id="stop4431" /> - <stop - style="stop-color:#fff1c0;stop-opacity:0;" - offset="1" - id="stop4433" /> - </linearGradient> - <linearGradient - id="linearGradient4376" - inkscape:collect="always"> - <stop - id="stop4378" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4380" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="linearGradient9409"> - <stop - id="stop9411" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop9413" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="XMLID_18_"> - <stop - id="stop3354" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop3364" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient3427" - inkscape:collect="always"> - <stop - id="stop3429" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3431" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3273" - inkscape:collect="always"> - <stop - id="stop3275" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3277" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3303-2" - inkscape:collect="always"> - <stop - id="stop3305-5" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3307-4" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3259"> - <stop - id="stop3261" - offset="0" - style="stop-color:#1f1f1f;stop-opacity:1;" /> - <stop - id="stop3263" - offset="1" - style="stop-color:#424242;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3385-7"> - <stop - id="stop3387" - offset="0" - style="stop-color:#d6d6d6;stop-opacity:1;" /> - <stop - id="stop3389" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3393"> - <stop - id="stop3395" - offset="0" - style="stop-color:#efefef;stop-opacity:1" /> - <stop - id="stop3397" - offset="1" - style="stop-color:#b8b8b8;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5566"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5568" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5570" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5566" - id="linearGradient3408" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - x1="-190.20325" - y1="77.351906" - x2="-190.20325" - y2="102.10035" /> - <linearGradient - id="linearGradient5114"> - <stop - id="stop5116" - offset="0" - style="stop-color:#000000;stop-opacity:0;" /> - <stop - style="stop-color:#000000;stop-opacity:0.21428572;" - offset="0.5" - id="stop5182" /> - <stop - id="stop5118" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5114" - id="radialGradient3406" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" - cx="-75.711166" - cy="113.45824" - fx="-75.514481" - fy="99.224663" - r="50.125" /> - <filter - id="filter5178" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5180" - stdDeviation="0.42032926" - inkscape:collect="always" /> - </filter> - <linearGradient - id="linearGradient5522"> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="0" - id="stop5524" /> - <stop - id="stop5526" - offset="0.52602422" - style="stop-color:#000000;stop-opacity:0.21428572;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop5528" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5522" - id="radialGradient3404" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" - cx="-75.703278" - cy="119.10338" - fx="-75.703278" - fy="119.10338" - r="50.125" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5631-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5633" /> - <stop - id="stop5639" - offset="0.30253538" - style="stop-color:#ffffff;stop-opacity:0.86666667;" /> - <stop - id="stop5637" - offset="0.70000011" - style="stop-color:#ffffff;stop-opacity:0.50980392;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5635" /> - </linearGradient> - <radialGradient - r="50.496159" - fy="-97.979721" - fx="-498.49612" - cy="-97.979721" - cx="-498.49612" - gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" - gradientUnits="userSpaceOnUse" - id="radialGradient5645" - xlink:href="#linearGradient5631-3" - inkscape:collect="always" /> - <mask - id="mask5641" - maskUnits="userSpaceOnUse"> - <rect - y="-108.19437" - x="-548.99231" - height="26.352942" - width="100.99232" - id="rect5643" - style="fill:url(#radialGradient5645);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4" - id="radialGradient3402" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" - cx="-195.32211" - cy="144.36551" - fx="-195.32211" - fy="144.36551" - r="48.968639" /> - <filter - id="filter3649" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3651" - stdDeviation="0.53709441" - inkscape:collect="always" /> - </filter> - <linearGradient - id="linearGradient3653-4" - inkscape:collect="always"> - <stop - id="stop3655" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3657" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4" - id="radialGradient3400" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" - cx="-195.32214" - cy="133.89294" - fx="-195.32214" - fy="133.89294" - r="48.968639" /> - <filter - height="1.9108608" - y="-0.45543039" - width="1.2504867" - x="-0.12524337" - id="filter5402" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5404" - stdDeviation="1.2915062" - inkscape:collect="always" /> - </filter> - <linearGradient - id="linearGradient5406" - inkscape:collect="always"> - <stop - id="stop5408" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5410" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5406" - id="radialGradient3398" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" - cx="-107.83378" - cy="-43.067612" - fx="-107.83378" - fy="-43.067612" - r="12.374368" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604" - id="linearGradient3396" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient5267" - inkscape:collect="always"> - <stop - id="stop5269" - offset="0" - style="stop-color:#050505;stop-opacity:1;" /> - <stop - id="stop5271" - offset="1" - style="stop-color:#050505;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5267" - id="linearGradient3394-8" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-190.3601,-184.7254)" - x1="-296.75015" - y1="119.76865" - x2="-296.75015" - y2="92.064072" /> - <linearGradient - id="linearGradient5352" - inkscape:collect="always"> - <stop - id="stop5354" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5356" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5352" - id="linearGradient3392-6" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-377.3601,-71.225397)" - x1="-115.51489" - y1="-53.597103" - x2="-115.51489" - y2="-33.89423" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237" - id="radialGradient3390" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-317.63007" - cy="84.673492" - fx="-317.63007" - fy="84.673492" - r="18.133474" /> - <filter - height="1.2339463" - y="-0.11697313" - width="1.0979174" - x="-0.048958682" - id="filter5257" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5259" - stdDeviation="0.71942638" - inkscape:collect="always" /> - </filter> - <linearGradient - id="linearGradient5237" - inkscape:collect="always"> - <stop - id="stop5239" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.62162162" /> - <stop - id="stop5241" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237" - id="radialGradient3388" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-322.72327" - cy="85.487053" - fx="-322.72327" - fy="85.487053" - r="18.133474" /> - <filter - id="filter3600" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3602" - stdDeviation="0.47186117" - inkscape:collect="always" /> - </filter> - <linearGradient - id="linearGradient3604" - inkscape:collect="always"> - <stop - id="stop3606" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop3608" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604" - id="linearGradient3386" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient5227" - inkscape:collect="always"> - <stop - id="stop5229" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5231" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5227" - id="radialGradient3383-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" - cx="-307.625" - cy="70.359375" - fx="-320.35294" - fy="87.258614" - r="50.125" /> - <linearGradient - id="linearGradient5549-4"> - <stop - style="stop-color:#cacaca;stop-opacity:1" - offset="0" - id="stop5551" /> - <stop - id="stop5553" - offset="0.61419845" - style="stop-color:#ebebeb;stop-opacity:1;" /> - <stop - style="stop-color:#cbcbcb;stop-opacity:1;" - offset="1" - id="stop5555" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5549-4" - id="linearGradient3381-7" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-302.8601,-193.7254)" - x1="-190.99445" - y1="75.382088" - x2="-190.99445" - y2="118.72548" /> - <filter - id="filter5214" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5216" - stdDeviation="0.94493222" - inkscape:collect="always" /> - </filter> - <filter - height="1.2056012" - y="-0.1028006" - width="1.1447796" - x="-0.072389819" - id="filter5346" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5348" - stdDeviation="3.0237831" - inkscape:collect="always" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient4878"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4880" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4882" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.59694225" - width="2.1938846" - y="-0.074120946" - height="1.1482419" - id="filter4927" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.49701338" - id="feGaussianBlur4929" /> - </filter> - <linearGradient - id="linearGradient9237"> - <stop - id="stop9239" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop9241" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3483"> - <stop - id="stop3485" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop3487" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.4660736" - width="1.9321471" - y="-0.038034502" - height="1.076069" - id="filter3469" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.146978" - id="feGaussianBlur3471" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient3399-1"> - <stop - style="stop-color:#00a8ba;stop-opacity:1;" - offset="0" - id="stop3401" /> - <stop - style="stop-color:#00a8ba;stop-opacity:0;" - offset="1" - id="stop3403" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3576"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3578" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3580" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient7365"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7367" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7369" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.4752" - width="1.9504" - y="-0.012310881" - height="1.0246218" - id="filter3598" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.495" - id="feGaussianBlur3600" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient3586"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3588" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3590" /> - </linearGradient> - <linearGradient - id="linearGradient7290"> - <stop - id="stop7292" - offset="0" - style="stop-color:#dddddd;stop-opacity:1;" /> - <stop - id="stop7294" - offset="1" - style="stop-color:#a7a7a7;stop-opacity:1;" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7312" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.1655606" - id="feGaussianBlur7314" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient4875"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4877" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4879" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4860"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4862" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4864" /> - </linearGradient> - <linearGradient - id="linearGradient3954"> - <stop - style="stop-color:#b3b3b3;stop-opacity:1;" - offset="0" - id="stop3956" /> - <stop - id="stop3962" - offset="0.52879584" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#c5c5c5;stop-opacity:1;" - offset="1" - id="stop3958" /> - </linearGradient> - <linearGradient - id="linearGradient9171"> - <stop - id="stop9173" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop9175" /> - <stop - id="stop9177" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3088"> - <stop - id="stop3090-4" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop3098" /> - <stop - id="stop3092" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3167" - inkscape:collect="always"> - <stop - id="stop3169" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3171" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3065"> - <stop - id="stop3067-5" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3073" /> - <stop - id="stop3069" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4648" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="4.6264466" - id="feGaussianBlur4650" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient7394"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7396" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7398" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient7354"> - <stop - style="stop-color:#929595;stop-opacity:1;" - offset="0" - id="stop7356" /> - <stop - style="stop-color:#929595;stop-opacity:0;" - offset="1" - id="stop7358" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4405" - x="-0.23281144" - width="1.4656229" - y="-0.048040453" - height="1.0960809" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.2610619" - id="feGaussianBlur4407" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient4409"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4411" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4413" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7238" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.6674107" - id="feGaussianBlur7240" /> - </filter> - <filter - inkscape:collect="always" - x="-0.14289699" - width="1.285794" - y="-0.089270152" - height="1.1785403" - id="filter7256" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="6.6685268" - id="feGaussianBlur7258" /> - </filter> - <filter - inkscape:collect="always" - id="filter7348" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.8190732" - id="feGaussianBlur7350" /> - </filter> - <linearGradient - id="linearGradient7150"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop7152" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop7154" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient7150" - id="radialGradient7164" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" - cx="162.46797" - cy="-0.23275588" - fx="162.46797" - fy="-0.23275588" - r="25.9375" /> - <mask - maskUnits="userSpaceOnUse" - id="mask7160"> - <path - id="path7162" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="fill:url(#radialGradient7164);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - </mask> - <linearGradient - inkscape:collect="always" - id="linearGradient7136"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7138" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7140" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient7136" - id="linearGradient5542" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(102.53048,-57.275649)" - x1="70.316795" - y1="58" - x2="72.281242" - y2="15.908398" /> - <radialGradient - r="7.7821388" - fy="77.29686" - fx="56.1105" - cy="77.29686" - cx="56.1105" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-34.282576,64.562999)" - gradientUnits="userSpaceOnUse" - id="radialGradient8863" - xlink:href="#linearGradient3978" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3978"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3980" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3982" /> - </linearGradient> - <radialGradient - r="7.7821388" - fy="77.29686" - fx="56.1105" - cy="77.29686" - cx="56.1105" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-34.282576,64.562999)" - gradientUnits="userSpaceOnUse" - id="radialGradient8766" - xlink:href="#linearGradient3978" - inkscape:collect="always" /> - <filter - inkscape:collect="always" - x="-0.26761475" - width="1.5352294" - y="-0.062321238" - height="1.1246425" - id="filter6060" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.5675913" - id="feGaussianBlur6062" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient6064"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6066" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6068" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.013508443" - width="1.0270169" - y="-0.55384612" - height="2.1076922" - id="filter4997" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.23076923" - id="feGaussianBlur4999" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient4949"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4951" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4953" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4949" - id="radialGradient5116" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - cx="72" - cy="116" - fx="72" - fy="116" - r="20.5" /> - <linearGradient - id="linearGradient8830"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop8832" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop8834" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3872"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3874" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3876" /> - </linearGradient> - <linearGradient - id="linearGradient8819"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop8821" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop8823" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3722" - id="linearGradient8817" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7018405,0,0,0.7018405,-31.780516,17.907276)" - x1="88.188385" - y1="74.379738" - x2="47.238132" - y2="118.57565" /> - <linearGradient - id="linearGradient3722"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3724" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop3726" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3722" - id="linearGradient3523" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7018405,0,0,0.7018405,-31.780516,17.907276)" - x1="88.188385" - y1="74.379738" - x2="47.238132" - y2="118.57565" /> - <linearGradient - id="linearGradient3176"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3178-5" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop3180" /> - </linearGradient> - <linearGradient - id="linearGradient3166"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168" /> - <stop - id="stop3518" - offset="0.5990991" - style="stop-color:#ffffff;stop-opacity:0.82206404;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3170" /> - </linearGradient> - <linearGradient - id="linearGradient3611"> - <stop - id="stop3613" - offset="0" - style="stop-color:#818584;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.5" - id="stop3615" /> - <stop - id="stop3617" - offset="1" - style="stop-color:#818584;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3149"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3151" /> - <stop - id="stop3157" - offset="0.34797296" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.65930116" - id="stop4061" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3153" /> - </linearGradient> - <linearGradient - id="linearGradient4029"> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="0" - id="stop4031" /> - <stop - id="stop4033" - offset="0.5" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="1" - id="stop4035" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.075877823" - width="1.1517557" - y="-0.78272969" - height="2.5654593" - id="filter3872" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.3045494" - id="feGaussianBlur3874" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient3802"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3804" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3806" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - id="perspective8778" /> - <inkscape:perspective - id="perspective9568" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - r="20.631315" - fy="138.73308" - fx="71.368683" - cy="138.73308" - cx="71.368683" - gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" - gradientUnits="userSpaceOnUse" - id="radialGradient11107-9" - xlink:href="#linearGradient3802-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3802-8"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3804-2" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3806-3" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.075877823" - width="1.1517557" - y="-0.78272969" - height="2.5654593" - id="filter3872-5" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.3045494" - id="feGaussianBlur3874-0" /> - </filter> - <linearGradient - y2="122.43194" - x2="91.105286" - y1="122.43194" - x1="50.458698" - gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10996-4" - xlink:href="#linearGradient4029-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4029-4"> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="0" - id="stop4031-9" /> - <stop - id="stop4033-5" - offset="0.5" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="1" - id="stop4035-4" /> - </linearGradient> - <linearGradient - y2="124.48643" - x2="93.409775" - y1="124.48643" - x1="50.394154" - gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10993-9" - xlink:href="#linearGradient3149-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3149-4"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3151-8" /> - <stop - id="stop3157-6" - offset="0.34797296" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.65930116" - id="stop4061-9" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3153-4" /> - </linearGradient> - <linearGradient - y2="477.52972" - x2="742.16382" - y1="477.52972" - x1="555.14642" - gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990-7" - xlink:href="#linearGradient3611-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3611-2"> - <stop - id="stop3613-1" - offset="0" - style="stop-color:#818584;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.5" - id="stop3615-6" /> - <stop - id="stop3617-5" - offset="1" - style="stop-color:#818584;stop-opacity:1;" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="406.23959" - fx="648.6554" - cy="390.69016" - cx="648.65527" - gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" - gradientUnits="userSpaceOnUse" - id="radialGradient10987-3" - xlink:href="#linearGradient3166-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3166-4"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168-9" /> - <stop - id="stop3518-9" - offset="0.5990991" - style="stop-color:#ffffff;stop-opacity:0.82206404;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3170-1" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="639.22247" - fx="648.65515" - cy="639.22247" - cx="648.65515" - gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" - gradientUnits="userSpaceOnUse" - id="radialGradient10984-2" - xlink:href="#linearGradient3176-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3176-9"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3178-5-7" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop3180-1" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient10981-8" - xlink:href="#linearGradient3722-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3722-5"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3724-5" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop3726-3" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient7741" - xlink:href="#linearGradient3722-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7743"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop7745" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop7747" /> - </linearGradient> - <radialGradient - r="7.9898205" - fy="76.438904" - fx="55.989819" - cy="76.438904" - cx="55.989819" - gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" - gradientUnits="userSpaceOnUse" - id="radialGradient10977-2" - xlink:href="#linearGradient3872-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3872-5"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3874-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3876-7" /> - </linearGradient> - <linearGradient - y2="110.8287" - x2="73.38102" - y1="150.87357" - x1="73.38102" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10974-6" - xlink:href="#linearGradient3176-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7754"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7756" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop7758" /> - </linearGradient> - <radialGradient - r="20.5" - fy="116" - fx="72" - cy="116" - cx="72" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - gradientUnits="userSpaceOnUse" - id="radialGradient11105-5" - xlink:href="#linearGradient4949-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4949-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4951-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4953-9" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.013508443" - width="1.0270169" - y="-0.55384612" - height="2.1076922" - id="filter4997-1" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.23076923" - id="feGaussianBlur4999-6" /> - </filter> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientTransform="translate(1,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11103-0" - xlink:href="#linearGradient6064-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient6064-7"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6066-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6068-2" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.26761475" - width="1.5352294" - y="-0.062321238" - height="1.1246425" - id="filter6060-9" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.5675913" - id="feGaussianBlur6062-1" /> - </filter> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientUnits="userSpaceOnUse" - id="linearGradient11101-9" - xlink:href="#linearGradient6064-7" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-5" - id="radialGradient7694-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3978-5"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3980-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3982-5" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-5" - id="radialGradient7787" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - y2="15.908398" - x2="72.281242" - y1="58" - x1="70.316795" - gradientTransform="translate(102.53048,-57.275649)" - gradientUnits="userSpaceOnUse" - id="linearGradient11095-8" - xlink:href="#linearGradient7136-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7136-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7138-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7140-5" /> - </linearGradient> - <mask - maskUnits="userSpaceOnUse" - id="mask7160-6"> - <path - inkscape:connector-curvature="0" - id="path7162-5" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="fill:url(#radialGradient7164-2);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient7150-1" - id="radialGradient7164-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" - cx="162.46797" - cy="-0.23275588" - fx="162.46797" - fy="-0.23275588" - r="25.9375" /> - <linearGradient - id="linearGradient7150-1"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop7152-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop7154-5" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7348-8" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.8190732" - id="feGaussianBlur7350-8" /> - </filter> - <filter - inkscape:collect="always" - x="-0.14289699" - width="1.285794" - y="-0.089270152" - height="1.1785403" - id="filter7256-4" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="6.6685268" - id="feGaussianBlur7258-7" /> - </filter> - <filter - inkscape:collect="always" - id="filter7238-3" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.6674107" - id="feGaussianBlur7240-9" /> - </filter> - <linearGradient - gradientTransform="translate(2,927.73011)" - y2="18.691383" - x2="16.357016" - y1="92" - x1="36" - gradientUnits="userSpaceOnUse" - id="linearGradient10953-6" - xlink:href="#linearGradient4409-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4409-4"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4411-3" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4413-2" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4405-5" - x="-0.23281144" - width="1.4656229" - y="-0.048040453" - height="1.0960809" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.2610619" - id="feGaussianBlur4407-0" /> - </filter> - <linearGradient - y2="7.7186575" - x2="55.058228" - y1="-0.85672575" - x1="55.058228" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10950-7" - xlink:href="#linearGradient7354-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7354-9"> - <stop - style="stop-color:#929595;stop-opacity:1;" - offset="0" - id="stop7356-1" /> - <stop - style="stop-color:#929595;stop-opacity:0;" - offset="1" - id="stop7358-8" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" - gradientUnits="userSpaceOnUse" - id="linearGradient10947-9" - xlink:href="#linearGradient7394-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7394-5"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7396-6" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7398-9" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4648-2" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="4.6264466" - id="feGaussianBlur4650-4" /> - </filter> - <radialGradient - r="42.727272" - fy="44.909092" - fx="52.18182" - cy="44.909092" - cx="52.18182" - spreadMethod="reflect" - gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" - gradientUnits="userSpaceOnUse" - id="radialGradient11011-4" - xlink:href="#linearGradient3065-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3065-9"> - <stop - id="stop3067-5-2" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3073-0" /> - <stop - id="stop3069-6" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11013-4" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3167-3" - inkscape:collect="always"> - <stop - id="stop3169-4" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3171-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11015-4" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11017-5" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11019-7" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11021-1" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11023-0" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11025-7" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11027-9" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11029-5" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11031-0" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11033-2" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11035-2" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11037-2" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11039-1" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11041-3" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11043-6" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11045-0" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11047-4" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11049-3" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11051-8" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11053-4" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11055-6" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11057-2" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11059-0" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11061-5" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11063-6" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11065-3" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11067-1" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11069-3" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11071-6" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11073-7" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11075-6" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11077-2" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11079-2" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11081-4" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083-5" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11085-5" - xlink:href="#linearGradient3088-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3088-1"> - <stop - id="stop3090-4-5" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop3098-2" /> - <stop - id="stop3092-3" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11087-9" - xlink:href="#linearGradient3088-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8095"> - <stop - id="stop8097" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop8099" /> - <stop - id="stop8101" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="47.937988" - fy="111.93269" - fx="69.801033" - cy="88.499367" - cx="60.097603" - gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" - gradientUnits="userSpaceOnUse" - id="radialGradient11089-4" - xlink:href="#linearGradient3954-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3954-7"> - <stop - style="stop-color:#b3b3b3;stop-opacity:1;" - offset="0" - id="stop3956-0" /> - <stop - id="stop3962-9" - offset="0.52879584" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#c5c5c5;stop-opacity:1;" - offset="1" - id="stop3958-3" /> - </linearGradient> - <linearGradient - y2="32.457832" - x2="76.596703" - y1="148.57518" - x1="17.723173" - gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" - gradientUnits="userSpaceOnUse" - id="linearGradient11091-2" - xlink:href="#linearGradient4860-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4860-4"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4862-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4864-0" /> - </linearGradient> - <radialGradient - r="50.234375" - fy="8.0446291" - fx="43.034355" - cy="42.699898" - cx="43.620941" - gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" - gradientUnits="userSpaceOnUse" - id="radialGradient11093-0" - xlink:href="#linearGradient4875-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4875-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4877-5" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4879-0" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7312-0" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.1655606" - id="feGaussianBlur7314-3" /> - </filter> - <radialGradient - r="17.67767" - fy="55.875111" - fx="176.77669" - cy="65.774605" - cx="177.4838" - gradientUnits="userSpaceOnUse" - id="radialGradient11009-5" - xlink:href="#linearGradient7290-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7290-1"> - <stop - id="stop7292-6" - offset="0" - style="stop-color:#dddddd;stop-opacity:1;" /> - <stop - id="stop7294-4" - offset="1" - style="stop-color:#a7a7a7;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" - gradientUnits="userSpaceOnUse" - id="linearGradient10892-0" - xlink:href="#linearGradient7394-5" - inkscape:collect="always" /> - <linearGradient - y2="15.75" - x2="71.75" - y1="112.25" - x1="71.75" - gradientTransform="translate(-12,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11007-3" - xlink:href="#linearGradient3586-6" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3586-6"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3588-5" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3590-9" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.4752" - width="1.9504" - y="-0.012310881" - height="1.0246218" - id="filter3598-2" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.495" - id="feGaussianBlur3600-0" /> - </filter> - <linearGradient - y2="116.8996" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10888-2" - xlink:href="#linearGradient7365-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7365-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7367-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7369-5" /> - </linearGradient> - <linearGradient - y2="60.866104" - x2="73.467186" - y1="60.866104" - x1="72.201843" - gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" - gradientUnits="userSpaceOnUse" - id="linearGradient10883-0" - xlink:href="#linearGradient3576-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3576-8"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3578-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3580-2" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" - gradientUnits="userSpaceOnUse" - id="radialGradient10880-7" - xlink:href="#linearGradient3399-1-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3399-1-8"> - <stop - style="stop-color:#00a8ba;stop-opacity:1;" - offset="0" - id="stop3401-5" /> - <stop - style="stop-color:#00a8ba;stop-opacity:0;" - offset="1" - id="stop3403-3" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" - gradientUnits="userSpaceOnUse" - id="radialGradient11005-5" - xlink:href="#linearGradient3399-1-8" - inkscape:collect="always" /> - <filter - inkscape:collect="always" - x="-0.4660736" - width="1.9321471" - y="-0.038034502" - height="1.076069" - id="filter3469-7" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.146978" - id="feGaussianBlur3471-5" /> - </filter> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" - gradientUnits="userSpaceOnUse" - id="radialGradient10876-0" - xlink:href="#linearGradient3483-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3483-4"> - <stop - id="stop3485-6" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop3487-2" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.82944" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" - gradientUnits="userSpaceOnUse" - id="radialGradient11003-8" - xlink:href="#linearGradient3483-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8161"> - <stop - id="stop8163" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop8165" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.59694225" - width="2.1938846" - y="-0.074120946" - height="1.1482419" - id="filter4927-3" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.49701338" - id="feGaussianBlur4929-5" /> - </filter> - <radialGradient - r="26.75" - fy="-16.181448" - fx="60" - cy="-16.181448" - cx="60" - gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" - gradientUnits="userSpaceOnUse" - id="radialGradient10871-6" - xlink:href="#linearGradient7365-9" - inkscape:collect="always" /> - <linearGradient - y2="24.713068" - x2="60.428722" - y1="22.930367" - x1="60.428722" - gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" - gradientUnits="userSpaceOnUse" - id="linearGradient10867-7" - xlink:href="#linearGradient4878-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4878-5"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4880-1" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4882-6" /> - </linearGradient> - <filter - height="1.2056012" - y="-0.1028006" - width="1.1447796" - x="-0.072389819" - id="filter5346-0" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5348-2" - stdDeviation="3.0237831" - inkscape:collect="always" /> - </filter> - <filter - id="filter5214-8" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5216-2" - stdDeviation="0.94493222" - inkscape:collect="always" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5549-4-9" - id="linearGradient3381-7-4" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-302.8601,-193.7254)" - x1="-190.99445" - y1="75.382088" - x2="-190.99445" - y2="118.72548" /> - <linearGradient - id="linearGradient5549-4-9"> - <stop - style="stop-color:#cacaca;stop-opacity:1" - offset="0" - id="stop5551-6" /> - <stop - id="stop5553-1" - offset="0.61419845" - style="stop-color:#ebebeb;stop-opacity:1;" /> - <stop - style="stop-color:#cbcbcb;stop-opacity:1;" - offset="1" - id="stop5555-9" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5227-4" - id="radialGradient3383-8-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" - cx="-307.625" - cy="70.359375" - fx="-320.35294" - fy="87.258614" - r="50.125" /> - <linearGradient - id="linearGradient5227-4" - inkscape:collect="always"> - <stop - id="stop5229-1" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5231-4" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-8" - id="linearGradient3386-4" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient3604-8" - inkscape:collect="always"> - <stop - id="stop3606-9" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop3608-9" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <filter - id="filter3600-6" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3602-5" - stdDeviation="0.47186117" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-2" - id="radialGradient3388-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-322.72327" - cy="85.487053" - fx="-322.72327" - fy="85.487053" - r="18.133474" /> - <linearGradient - id="linearGradient5237-2" - inkscape:collect="always"> - <stop - id="stop5239-3" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.62162162" /> - <stop - id="stop5241-3" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <filter - height="1.2339463" - y="-0.11697313" - width="1.0979174" - x="-0.048958682" - id="filter5257-2" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5259-6" - stdDeviation="0.71942638" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-2" - id="radialGradient3390-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-317.63007" - cy="84.673492" - fx="-317.63007" - fy="84.673492" - r="18.133474" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5352-4" - id="linearGradient3392-6-1" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-377.3601,-71.225397)" - x1="-115.51489" - y1="-53.597103" - x2="-115.51489" - y2="-33.89423" /> - <linearGradient - id="linearGradient5352-4" - inkscape:collect="always"> - <stop - id="stop5354-5" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5356-4" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5267-8" - id="linearGradient3394-8-0" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-190.3601,-184.7254)" - x1="-296.75015" - y1="119.76865" - x2="-296.75015" - y2="92.064072" /> - <linearGradient - id="linearGradient5267-8" - inkscape:collect="always"> - <stop - id="stop5269-7" - offset="0" - style="stop-color:#050505;stop-opacity:1;" /> - <stop - id="stop5271-0" - offset="1" - style="stop-color:#050505;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-8" - id="linearGradient3396-0" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5406-1" - id="radialGradient3398-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" - cx="-107.83378" - cy="-43.067612" - fx="-107.83378" - fy="-43.067612" - r="12.374368" /> - <linearGradient - id="linearGradient5406-1" - inkscape:collect="always"> - <stop - id="stop5408-7" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5410-3" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <filter - height="1.9108608" - y="-0.45543039" - width="1.2504867" - x="-0.12524337" - id="filter5402-0" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5404-3" - stdDeviation="1.2915062" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-3" - id="radialGradient3400-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" - cx="-195.32214" - cy="133.89294" - fx="-195.32214" - fy="133.89294" - r="48.968639" /> - <linearGradient - id="linearGradient3653-4-3" - inkscape:collect="always"> - <stop - id="stop3655-7" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3657-3" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <filter - id="filter3649-2" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3651-7" - stdDeviation="0.53709441" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-3" - id="radialGradient3402-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" - cx="-195.32211" - cy="144.36551" - fx="-195.32211" - fy="144.36551" - r="48.968639" /> - <mask - id="mask5641-0" - maskUnits="userSpaceOnUse"> - <rect - y="-108.19437" - x="-548.99231" - height="26.352942" - width="100.99232" - id="rect5643-2" - style="fill:url(#radialGradient5645-7);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - r="50.496159" - fy="-97.979721" - fx="-498.49612" - cy="-97.979721" - cx="-498.49612" - gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" - gradientUnits="userSpaceOnUse" - id="radialGradient5645-7" - xlink:href="#linearGradient5631-3-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5631-3-2"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5633-5" /> - <stop - id="stop5639-2" - offset="0.30253538" - style="stop-color:#ffffff;stop-opacity:0.86666667;" /> - <stop - id="stop5637-7" - offset="0.70000011" - style="stop-color:#ffffff;stop-opacity:0.50980392;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5635-3" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5522-8" - id="radialGradient3404-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" - cx="-75.703278" - cy="119.10338" - fx="-75.703278" - fy="119.10338" - r="50.125" /> - <linearGradient - id="linearGradient5522-8"> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="0" - id="stop5524-9" /> - <stop - id="stop5526-9" - offset="0.52602422" - style="stop-color:#000000;stop-opacity:0.21428572;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop5528-2" /> - </linearGradient> - <filter - id="filter5178-9" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5180-7" - stdDeviation="0.42032926" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5114-1" - id="radialGradient3406-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" - cx="-75.711166" - cy="113.45824" - fx="-75.514481" - fy="99.224663" - r="50.125" /> - <linearGradient - id="linearGradient5114-1"> - <stop - id="stop5116-0" - offset="0" - style="stop-color:#000000;stop-opacity:0;" /> - <stop - style="stop-color:#000000;stop-opacity:0.21428572;" - offset="0.5" - id="stop5182-3" /> - <stop - id="stop5118-2" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5566-6" - id="linearGradient3408-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - x1="-190.20325" - y1="77.351906" - x2="-190.20325" - y2="102.10035" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5566-6"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5568-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5570-0" /> - </linearGradient> - <linearGradient - y2="15.411574" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10845-7" - xlink:href="#linearGradient7365-9" - inkscape:collect="always" /> - <radialGradient - r="94" - fy="-192.92754" - fx="-122.25" - cy="-192.92754" - cx="-122.25" - gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" - gradientUnits="userSpaceOnUse" - id="radialGradient10842-8" - xlink:href="#linearGradient3393-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3393-0"> - <stop - id="stop3395-2" - offset="0" - style="stop-color:#efefef;stop-opacity:1" /> - <stop - id="stop3397-0" - offset="1" - style="stop-color:#b8b8b8;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-228.88507" - x2="-100" - y1="-106.62158" - x1="-100" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10839-9" - xlink:href="#linearGradient3385-7-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3385-7-8"> - <stop - id="stop3387-0" - offset="0" - style="stop-color:#d6d6d6;stop-opacity:1;" /> - <stop - id="stop3389-3" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-208.05618" - x2="-80" - y1="-67.985718" - x1="-80" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10836-7" - xlink:href="#linearGradient3259-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3259-4"> - <stop - id="stop3261-0" - offset="0" - style="stop-color:#1f1f1f;stop-opacity:1;" /> - <stop - id="stop3263-9" - offset="1" - style="stop-color:#424242;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-275.16071" - x2="-127.61703" - y1="-310.29703" - x1="-127.61703" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" - gradientUnits="userSpaceOnUse" - id="linearGradient10833-1" - xlink:href="#linearGradient3303-2-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3303-2-3" - inkscape:collect="always"> - <stop - id="stop3305-5-3" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3307-4-9" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-166.52031" - fx="-120.37437" - cy="-150.6152" - cx="-120" - gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" - gradientUnits="userSpaceOnUse" - id="radialGradient10830-3" - xlink:href="#linearGradient3273-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3273-2" - inkscape:collect="always"> - <stop - id="stop3275-4" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3277-4" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-109.7959" - fx="-120" - cy="-109.7959" - cx="-120" - gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" - gradientUnits="userSpaceOnUse" - id="radialGradient10827-2" - xlink:href="#linearGradient3273-2" - inkscape:collect="always" /> - <linearGradient - y2="-124.49196" - x2="-11.793251" - y1="-0.17180708" - x1="-11.793251" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10823-3" - xlink:href="#linearGradient3427-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3427-6" - inkscape:collect="always"> - <stop - id="stop3429-2" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3431-8" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-158.88614" - x2="-90.485931" - y1="-60.000008" - x1="-132.38875" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10820-0" - xlink:href="#XMLID_18_-9" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="XMLID_18_-9"> - <stop - id="stop3354-6" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop3364-5" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <radialGradient - r="76" - fy="-120.68829" - fx="-526.78827" - cy="-120.68829" - cx="-526.78827" - gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" - gradientUnits="userSpaceOnUse" - id="radialGradient10817-1" - xlink:href="#XMLID_18_-9" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="linearGradient8333"> - <stop - id="stop8335" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop8337" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - y2="-141.69821" - x2="-474.70587" - y1="-349.57544" - x1="-519.00256" - gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" - gradientUnits="userSpaceOnUse" - id="linearGradient10814-3" - xlink:href="#linearGradient4376-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4376-3" - inkscape:collect="always"> - <stop - id="stop4378-3" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4380-7" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient11001-5" - xlink:href="#linearGradient4429-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4429-4"> - <stop - style="stop-color:#fff1c0;stop-opacity:1;" - offset="0" - id="stop4431-7" /> - <stop - style="stop-color:#fff1c0;stop-opacity:0;" - offset="1" - id="stop4433-7" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient10999-7" - xlink:href="#linearGradient4441-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4441-4"> - <stop - id="stop4443-1" - offset="0" - style="stop-color:#dbfaff;stop-opacity:1;" /> - <stop - id="stop4445-7" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient8482" - xlink:href="#linearGradient4441-4" - inkscape:collect="always" /> - <radialGradient - r="20.631315" - fy="138.73308" - fx="71.368683" - cy="138.73308" - cx="71.368683" - gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" - gradientUnits="userSpaceOnUse" - id="radialGradient11107-4" - xlink:href="#linearGradient3802-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3802-7"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3804-8" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3806-1" /> - </linearGradient> - <linearGradient - y2="122.43194" - x2="91.105286" - y1="122.43194" - x1="50.458698" - gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10996-2" - xlink:href="#linearGradient4029-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4029-9"> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="0" - id="stop4031-93" /> - <stop - id="stop4033-4" - offset="0.5" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="1" - id="stop4035-5" /> - </linearGradient> - <linearGradient - y2="124.48643" - x2="93.409775" - y1="124.48643" - x1="50.394154" - gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10993-6" - xlink:href="#linearGradient3149-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3149-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3151-1" /> - <stop - id="stop3157-9" - offset="0.34797296" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.65930116" - id="stop4061-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3153-0" /> - </linearGradient> - <linearGradient - y2="477.52972" - x2="742.16382" - y1="477.52972" - x1="555.14642" - gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990-4" - xlink:href="#linearGradient3611-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3611-5"> - <stop - id="stop3613-19" - offset="0" - style="stop-color:#818584;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.5" - id="stop3615-2" /> - <stop - id="stop3617-4" - offset="1" - style="stop-color:#818584;stop-opacity:1;" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="406.23959" - fx="648.6554" - cy="390.69016" - cx="648.65527" - gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" - gradientUnits="userSpaceOnUse" - id="radialGradient10987-1" - xlink:href="#linearGradient3166-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3166-5"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168-2" /> - <stop - id="stop3518-6" - offset="0.5990991" - style="stop-color:#ffffff;stop-opacity:0.82206404;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3170-8" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="639.22247" - fx="648.65515" - cy="639.22247" - cx="648.65515" - gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" - gradientUnits="userSpaceOnUse" - id="radialGradient10984-7" - xlink:href="#linearGradient3176-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3176-3"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3178-5-2" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop3180-6" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient10981-3" - xlink:href="#linearGradient3722-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3722-4"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3724-58" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop3726-8" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient7741-7" - xlink:href="#linearGradient3722-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7743-8"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop7745-1" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop7747-3" /> - </linearGradient> - <radialGradient - r="7.9898205" - fy="76.438904" - fx="55.989819" - cy="76.438904" - cx="55.989819" - gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" - gradientUnits="userSpaceOnUse" - id="radialGradient10977-5" - xlink:href="#linearGradient3872-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3872-0"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3874-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3876-79" /> - </linearGradient> - <linearGradient - y2="110.8287" - x2="73.38102" - y1="150.87357" - x1="73.38102" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10974-2" - xlink:href="#linearGradient3176-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7754-7"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7756-6" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop7758-7" /> - </linearGradient> - <radialGradient - r="20.5" - fy="116" - fx="72" - cy="116" - cx="72" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - gradientUnits="userSpaceOnUse" - id="radialGradient11105-0" - xlink:href="#linearGradient4949-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4949-5"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4951-1" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4953-6" /> - </linearGradient> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientTransform="translate(1,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11103-6" - xlink:href="#linearGradient6064-6" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient6064-6"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6066-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6068-9" /> - </linearGradient> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientUnits="userSpaceOnUse" - id="linearGradient11101-5" - xlink:href="#linearGradient6064-6" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-4" - id="radialGradient7694" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3978-4"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3980-1" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3982-3" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-4" - id="radialGradient7787-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - y2="15.908398" - x2="72.281242" - y1="58" - x1="70.316795" - gradientTransform="translate(102.53048,-57.275649)" - gradientUnits="userSpaceOnUse" - id="linearGradient11095-83" - xlink:href="#linearGradient7136-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7136-8"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7138-1" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7140-9" /> - </linearGradient> - <mask - maskUnits="userSpaceOnUse" - id="mask7160-8"> - <path - inkscape:connector-curvature="0" - id="path7162-56" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="fill:url(#radialGradient7164-0);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient7150-7" - id="radialGradient7164-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" - cx="162.46797" - cy="-0.23275588" - fx="162.46797" - fy="-0.23275588" - r="25.9375" /> - <linearGradient - id="linearGradient7150-7"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop7152-5" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop7154-6" /> - </linearGradient> - <linearGradient - gradientTransform="translate(2,927.73011)" - y2="18.691383" - x2="16.357016" - y1="92" - x1="36" - gradientUnits="userSpaceOnUse" - id="linearGradient10953-69" - xlink:href="#linearGradient4409-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4409-1"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4411-30" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4413-29" /> - </linearGradient> - <linearGradient - y2="7.7186575" - x2="55.058228" - y1="-0.85672575" - x1="55.058228" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10950-3" - xlink:href="#linearGradient7354-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7354-0"> - <stop - style="stop-color:#929595;stop-opacity:1;" - offset="0" - id="stop7356-4" /> - <stop - style="stop-color:#929595;stop-opacity:0;" - offset="1" - id="stop7358-2" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" - gradientUnits="userSpaceOnUse" - id="linearGradient10947-1" - xlink:href="#linearGradient7394-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7394-3"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7396-2" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7398-6" /> - </linearGradient> - <radialGradient - r="42.727272" - fy="44.909092" - fx="52.18182" - cy="44.909092" - cx="52.18182" - spreadMethod="reflect" - gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" - gradientUnits="userSpaceOnUse" - id="radialGradient11011-6" - xlink:href="#linearGradient3065-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3065-6"> - <stop - id="stop3067-5-0" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3073-2" /> - <stop - id="stop3069-5" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11013-5" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3167-2" - inkscape:collect="always"> - <stop - id="stop3169-1" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3171-6" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11015-7" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11017-7" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11019-79" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11021-2" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11023-8" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11025-3" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11027-1" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11029-3" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11031-1" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11033-3" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11035-4" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11037-5" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11039-3" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11041-1" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11043-9" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11045-6" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11047-41" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11049-5" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11051-84" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11053-1" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11055-66" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11057-5" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11059-2" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11061-2" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11063-7" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11065-5" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11067-0" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11069-5" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11071-2" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11073-8" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11075-66" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11077-6" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11079-9" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11081-8" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083-9" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11085-0" - xlink:href="#linearGradient3088-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3088-3"> - <stop - id="stop3090-4-6" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop3098-7" /> - <stop - id="stop3092-9" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11087-7" - xlink:href="#linearGradient3088-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8095-6"> - <stop - id="stop8097-5" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop8099-3" /> - <stop - id="stop8101-8" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="47.937988" - fy="111.93269" - fx="69.801033" - cy="88.499367" - cx="60.097603" - gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" - gradientUnits="userSpaceOnUse" - id="radialGradient11089-0" - xlink:href="#linearGradient3954-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3954-1"> - <stop - style="stop-color:#b3b3b3;stop-opacity:1;" - offset="0" - id="stop3956-4" /> - <stop - id="stop3962-3" - offset="0.52879584" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#c5c5c5;stop-opacity:1;" - offset="1" - id="stop3958-8" /> - </linearGradient> - <linearGradient - y2="32.457832" - x2="76.596703" - y1="148.57518" - x1="17.723173" - gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" - gradientUnits="userSpaceOnUse" - id="linearGradient11091-0" - xlink:href="#linearGradient4860-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4860-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4862-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4864-4" /> - </linearGradient> - <radialGradient - r="50.234375" - fy="8.0446291" - fx="43.034355" - cy="42.699898" - cx="43.620941" - gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" - gradientUnits="userSpaceOnUse" - id="radialGradient11093-6" - xlink:href="#linearGradient4875-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4875-7"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4877-53" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4879-1" /> - </linearGradient> - <radialGradient - r="17.67767" - fy="55.875111" - fx="176.77669" - cy="65.774605" - cx="177.4838" - gradientUnits="userSpaceOnUse" - id="radialGradient11009-7" - xlink:href="#linearGradient7290-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7290-9"> - <stop - id="stop7292-0" - offset="0" - style="stop-color:#dddddd;stop-opacity:1;" /> - <stop - id="stop7294-7" - offset="1" - style="stop-color:#a7a7a7;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" - gradientUnits="userSpaceOnUse" - id="linearGradient10892-03" - xlink:href="#linearGradient7394-3" - inkscape:collect="always" /> - <linearGradient - y2="15.75" - x2="71.75" - y1="112.25" - x1="71.75" - gradientTransform="translate(-12,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11007-1" - xlink:href="#linearGradient3586-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3586-8"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3588-2" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3590-2" /> - </linearGradient> - <linearGradient - y2="116.8996" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10888-9" - xlink:href="#linearGradient7365-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7365-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7367-9" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7369-0" /> - </linearGradient> - <linearGradient - y2="60.866104" - x2="73.467186" - y1="60.866104" - x1="72.201843" - gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" - gradientUnits="userSpaceOnUse" - id="linearGradient10883-4" - xlink:href="#linearGradient3576-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3576-5"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3578-5" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3580-4" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" - gradientUnits="userSpaceOnUse" - id="radialGradient10880-74" - xlink:href="#linearGradient3399-1-82" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3399-1-82"> - <stop - style="stop-color:#00a8ba;stop-opacity:1;" - offset="0" - id="stop3401-3" /> - <stop - style="stop-color:#00a8ba;stop-opacity:0;" - offset="1" - id="stop3403-7" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" - gradientUnits="userSpaceOnUse" - id="radialGradient11005-7" - xlink:href="#linearGradient3399-1-82" - inkscape:collect="always" /> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" - gradientUnits="userSpaceOnUse" - id="radialGradient10876-2" - xlink:href="#linearGradient3483-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3483-8"> - <stop - id="stop3485-61" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop3487-0" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.82944" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" - gradientUnits="userSpaceOnUse" - id="radialGradient11003-5" - xlink:href="#linearGradient3483-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8161-3"> - <stop - id="stop8163-5" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop8165-6" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="26.75" - fy="-16.181448" - fx="60" - cy="-16.181448" - cx="60" - gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" - gradientUnits="userSpaceOnUse" - id="radialGradient10871-0" - xlink:href="#linearGradient7365-1" - inkscape:collect="always" /> - <linearGradient - y2="24.713068" - x2="60.428722" - y1="22.930367" - x1="60.428722" - gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" - gradientUnits="userSpaceOnUse" - id="linearGradient10867-1" - xlink:href="#linearGradient4878-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4878-9"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4880-0" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4882-4" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5549-4-2" - id="linearGradient3381-7-5" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-302.8601,-193.7254)" - x1="-190.99445" - y1="75.382088" - x2="-190.99445" - y2="118.72548" /> - <linearGradient - id="linearGradient5549-4-2"> - <stop - style="stop-color:#cacaca;stop-opacity:1" - offset="0" - id="stop5551-2" /> - <stop - id="stop5553-6" - offset="0.61419845" - style="stop-color:#ebebeb;stop-opacity:1;" /> - <stop - style="stop-color:#cbcbcb;stop-opacity:1;" - offset="1" - id="stop5555-6" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5227-3" - id="radialGradient3383-8-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" - cx="-307.625" - cy="70.359375" - fx="-320.35294" - fy="87.258614" - r="50.125" /> - <linearGradient - id="linearGradient5227-3" - inkscape:collect="always"> - <stop - id="stop5229-3" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5231-5" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-5" - id="linearGradient3386-2" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient3604-5" - inkscape:collect="always"> - <stop - id="stop3606-3" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop3608-0" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-4" - id="radialGradient3388-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-322.72327" - cy="85.487053" - fx="-322.72327" - fy="85.487053" - r="18.133474" /> - <linearGradient - id="linearGradient5237-4" - inkscape:collect="always"> - <stop - id="stop5239-1" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.62162162" /> - <stop - id="stop5241-4" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-4" - id="radialGradient3390-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-317.63007" - cy="84.673492" - fx="-317.63007" - fy="84.673492" - r="18.133474" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5352-6" - id="linearGradient3392-6-10" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-377.3601,-71.225397)" - x1="-115.51489" - y1="-53.597103" - x2="-115.51489" - y2="-33.89423" /> - <linearGradient - id="linearGradient5352-6" - inkscape:collect="always"> - <stop - id="stop5354-6" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5356-8" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5267-7" - id="linearGradient3394-8-8" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-190.3601,-184.7254)" - x1="-296.75015" - y1="119.76865" - x2="-296.75015" - y2="92.064072" /> - <linearGradient - id="linearGradient5267-7" - inkscape:collect="always"> - <stop - id="stop5269-5" - offset="0" - style="stop-color:#050505;stop-opacity:1;" /> - <stop - id="stop5271-8" - offset="1" - style="stop-color:#050505;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-5" - id="linearGradient3396-4" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5406-2" - id="radialGradient3398-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" - cx="-107.83378" - cy="-43.067612" - fx="-107.83378" - fy="-43.067612" - r="12.374368" /> - <linearGradient - id="linearGradient5406-2" - inkscape:collect="always"> - <stop - id="stop5408-2" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5410-4" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-4" - id="radialGradient3400-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" - cx="-195.32214" - cy="133.89294" - fx="-195.32214" - fy="133.89294" - r="48.968639" /> - <linearGradient - id="linearGradient3653-4-4" - inkscape:collect="always"> - <stop - id="stop3655-0" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3657-7" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-4" - id="radialGradient3402-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" - cx="-195.32211" - cy="144.36551" - fx="-195.32211" - fy="144.36551" - r="48.968639" /> - <mask - id="mask5641-6" - maskUnits="userSpaceOnUse"> - <rect - y="-108.19437" - x="-548.99231" - height="26.352942" - width="100.99232" - id="rect5643-9" - style="fill:url(#radialGradient5645-4);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - r="50.496159" - fy="-97.979721" - fx="-498.49612" - cy="-97.979721" - cx="-498.49612" - gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" - gradientUnits="userSpaceOnUse" - id="radialGradient5645-4" - xlink:href="#linearGradient5631-3-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5631-3-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5633-52" /> - <stop - id="stop5639-1" - offset="0.30253538" - style="stop-color:#ffffff;stop-opacity:0.86666667;" /> - <stop - id="stop5637-2" - offset="0.70000011" - style="stop-color:#ffffff;stop-opacity:0.50980392;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5635-5" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5522-83" - id="radialGradient3404-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" - cx="-75.703278" - cy="119.10338" - fx="-75.703278" - fy="119.10338" - r="50.125" /> - <linearGradient - id="linearGradient5522-83"> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="0" - id="stop5524-2" /> - <stop - id="stop5526-90" - offset="0.52602422" - style="stop-color:#000000;stop-opacity:0.21428572;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop5528-7" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5114-4" - id="radialGradient3406-91" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" - cx="-75.711166" - cy="113.45824" - fx="-75.514481" - fy="99.224663" - r="50.125" /> - <linearGradient - id="linearGradient5114-4"> - <stop - id="stop5116-07" - offset="0" - style="stop-color:#000000;stop-opacity:0;" /> - <stop - style="stop-color:#000000;stop-opacity:0.21428572;" - offset="0.5" - id="stop5182-4" /> - <stop - id="stop5118-4" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5566-3" - id="linearGradient3408-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - x1="-190.20325" - y1="77.351906" - x2="-190.20325" - y2="102.10035" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5566-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5568-43" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5570-1" /> - </linearGradient> - <linearGradient - y2="15.411574" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10845-2" - xlink:href="#linearGradient7365-1" - inkscape:collect="always" /> - <radialGradient - r="94" - fy="-192.92754" - fx="-122.25" - cy="-192.92754" - cx="-122.25" - gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" - gradientUnits="userSpaceOnUse" - id="radialGradient10842-3" - xlink:href="#linearGradient3393-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3393-5"> - <stop - id="stop3395-28" - offset="0" - style="stop-color:#efefef;stop-opacity:1" /> - <stop - id="stop3397-9" - offset="1" - style="stop-color:#b8b8b8;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-228.88507" - x2="-100" - y1="-106.62158" - x1="-100" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10839-3" - xlink:href="#linearGradient3385-7-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3385-7-0"> - <stop - id="stop3387-7" - offset="0" - style="stop-color:#d6d6d6;stop-opacity:1;" /> - <stop - id="stop3389-6" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-208.05618" - x2="-80" - y1="-67.985718" - x1="-80" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10836-1" - xlink:href="#linearGradient3259-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3259-0"> - <stop - id="stop3261-8" - offset="0" - style="stop-color:#1f1f1f;stop-opacity:1;" /> - <stop - id="stop3263-0" - offset="1" - style="stop-color:#424242;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-275.16071" - x2="-127.61703" - y1="-310.29703" - x1="-127.61703" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" - gradientUnits="userSpaceOnUse" - id="linearGradient10833-3" - xlink:href="#linearGradient3303-2-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3303-2-8" - inkscape:collect="always"> - <stop - id="stop3305-5-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3307-4-2" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-166.52031" - fx="-120.37437" - cy="-150.6152" - cx="-120" - gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" - gradientUnits="userSpaceOnUse" - id="radialGradient10830-7" - xlink:href="#linearGradient3273-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3273-8" - inkscape:collect="always"> - <stop - id="stop3275-3" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3277-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-109.7959" - fx="-120" - cy="-109.7959" - cx="-120" - gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" - gradientUnits="userSpaceOnUse" - id="radialGradient10827-8" - xlink:href="#linearGradient3273-8" - inkscape:collect="always" /> - <linearGradient - y2="-124.49196" - x2="-11.793251" - y1="-0.17180708" - x1="-11.793251" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10823-37" - xlink:href="#linearGradient3427-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3427-4" - inkscape:collect="always"> - <stop - id="stop3429-21" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3431-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-158.88614" - x2="-90.485931" - y1="-60.000008" - x1="-132.38875" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10820-6" - xlink:href="#XMLID_18_-4" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="XMLID_18_-4"> - <stop - id="stop3354-3" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop3364-1" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <radialGradient - r="76" - fy="-120.68829" - fx="-526.78827" - cy="-120.68829" - cx="-526.78827" - gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" - gradientUnits="userSpaceOnUse" - id="radialGradient10817-2" - xlink:href="#XMLID_18_-4" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="linearGradient8333-7"> - <stop - id="stop8335-9" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop8337-3" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - y2="-141.69821" - x2="-474.70587" - y1="-349.57544" - x1="-519.00256" - gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" - gradientUnits="userSpaceOnUse" - id="linearGradient10814-0" - xlink:href="#linearGradient4376-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4376-2" - inkscape:collect="always"> - <stop - id="stop4378-0" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4380-9" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient11001-3" - xlink:href="#linearGradient4429-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4429-1"> - <stop - style="stop-color:#fff1c0;stop-opacity:1;" - offset="0" - id="stop4431-9" /> - <stop - style="stop-color:#fff1c0;stop-opacity:0;" - offset="1" - id="stop4433-3" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient10999-4" - xlink:href="#linearGradient4441-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4441-7"> - <stop - id="stop4443-4" - offset="0" - style="stop-color:#dbfaff;stop-opacity:1;" /> - <stop - id="stop4445-6" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient8482-5" - xlink:href="#linearGradient4441-7" - inkscape:collect="always" /> - <radialGradient - r="20.631315" - fy="138.73308" - fx="71.368683" - cy="138.73308" - cx="71.368683" - gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" - gradientUnits="userSpaceOnUse" - id="radialGradient11107-7" - xlink:href="#linearGradient3802-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3802-0"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3804-87" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3806-0" /> - </linearGradient> - <linearGradient - y2="122.43194" - x2="91.105286" - y1="122.43194" - x1="50.458698" - gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10996-8" - xlink:href="#linearGradient4029-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4029-3"> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="0" - id="stop4031-4" /> - <stop - id="stop4033-9" - offset="0.5" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="1" - id="stop4035-0" /> - </linearGradient> - <linearGradient - y2="124.48643" - x2="93.409775" - y1="124.48643" - x1="50.394154" - gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10993-2" - xlink:href="#linearGradient3149-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3149-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3151-7" /> - <stop - id="stop3157-4" - offset="0.34797296" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.65930116" - id="stop4061-96" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3153-45" /> - </linearGradient> - <linearGradient - y2="477.52972" - x2="742.16382" - y1="477.52972" - x1="555.14642" - gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990-5" - xlink:href="#linearGradient3611-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3611-9"> - <stop - id="stop3613-5" - offset="0" - style="stop-color:#818584;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.5" - id="stop3615-0" /> - <stop - id="stop3617-42" - offset="1" - style="stop-color:#818584;stop-opacity:1;" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="406.23959" - fx="648.6554" - cy="390.69016" - cx="648.65527" - gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" - gradientUnits="userSpaceOnUse" - id="radialGradient10987-5" - xlink:href="#linearGradient3166-46" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3166-46"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168-1" /> - <stop - id="stop3518-95" - offset="0.5990991" - style="stop-color:#ffffff;stop-opacity:0.82206404;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3170-17" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="639.22247" - fx="648.65515" - cy="639.22247" - cx="648.65515" - gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" - gradientUnits="userSpaceOnUse" - id="radialGradient10984-23" - xlink:href="#linearGradient3176-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3176-1"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3178-5-8" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop3180-4" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient10981-6" - xlink:href="#linearGradient3722-45" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3722-45"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3724-8" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop3726-6" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient7741-78" - xlink:href="#linearGradient3722-45" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7743-1"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop7745-8" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop7747-4" /> - </linearGradient> - <radialGradient - r="7.9898205" - fy="76.438904" - fx="55.989819" - cy="76.438904" - cx="55.989819" - gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" - gradientUnits="userSpaceOnUse" - id="radialGradient10977-7" - xlink:href="#linearGradient3872-52" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3872-52"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3874-82" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3876-4" /> - </linearGradient> - <linearGradient - y2="110.8287" - x2="73.38102" - y1="150.87357" - x1="73.38102" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10974-5" - xlink:href="#linearGradient3176-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7754-4"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7756-9" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop7758-9" /> - </linearGradient> - <radialGradient - r="20.5" - fy="116" - fx="72" - cy="116" - cx="72" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - gradientUnits="userSpaceOnUse" - id="radialGradient11105-2" - xlink:href="#linearGradient4949-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4949-2"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4951-0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4953-7" /> - </linearGradient> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientTransform="translate(1,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11103-09" - xlink:href="#linearGradient6064-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient6064-0"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6066-0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6068-3" /> - </linearGradient> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientUnits="userSpaceOnUse" - id="linearGradient11101-3" - xlink:href="#linearGradient6064-0" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-6" - id="radialGradient7694-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3978-6"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3980-6" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3982-8" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-6" - id="radialGradient7787-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - y2="15.908398" - x2="72.281242" - y1="58" - x1="70.316795" - gradientTransform="translate(102.53048,-57.275649)" - gradientUnits="userSpaceOnUse" - id="linearGradient11095-5" - xlink:href="#linearGradient7136-33" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7136-33"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7138-45" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7140-99" /> - </linearGradient> - <mask - maskUnits="userSpaceOnUse" - id="mask7160-1"> - <path - inkscape:connector-curvature="0" - id="path7162-1" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="fill:url(#radialGradient7164-03);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient7150-3" - id="radialGradient7164-03" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" - cx="162.46797" - cy="-0.23275588" - fx="162.46797" - fy="-0.23275588" - r="25.9375" /> - <linearGradient - id="linearGradient7150-3"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop7152-0" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop7154-2" /> - </linearGradient> - <linearGradient - gradientTransform="translate(2,927.73011)" - y2="18.691383" - x2="16.357016" - y1="92" - x1="36" - gradientUnits="userSpaceOnUse" - id="linearGradient10953-9" - xlink:href="#linearGradient4409-15" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4409-15"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4411-7" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4413-6" /> - </linearGradient> - <linearGradient - y2="7.7186575" - x2="55.058228" - y1="-0.85672575" - x1="55.058228" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10950-35" - xlink:href="#linearGradient7354-96" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7354-96"> - <stop - style="stop-color:#929595;stop-opacity:1;" - offset="0" - id="stop7356-0" /> - <stop - style="stop-color:#929595;stop-opacity:0;" - offset="1" - id="stop7358-3" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" - gradientUnits="userSpaceOnUse" - id="linearGradient10947-3" - xlink:href="#linearGradient7394-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7394-9"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7396-4" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7398-60" /> - </linearGradient> - <radialGradient - r="42.727272" - fy="44.909092" - fx="52.18182" - cy="44.909092" - cx="52.18182" - spreadMethod="reflect" - gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" - gradientUnits="userSpaceOnUse" - id="radialGradient11011-46" - xlink:href="#linearGradient3065-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3065-4"> - <stop - id="stop3067-5-3" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3073-5" /> - <stop - id="stop3069-8" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11013-2" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3167-6" - inkscape:collect="always"> - <stop - id="stop3169-5" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3171-9" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11015-78" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11017-4" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11019-5" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11021-4" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11023-09" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11025-8" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11027-5" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11029-6" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11031-9" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11033-26" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11035-3" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11037-7" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11039-7" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11041-7" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11043-4" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11045-8" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11047-47" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11049-4" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11051-0" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11053-19" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11055-8" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11057-0" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11059-4" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11061-4" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11063-5" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11065-34" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11067-5" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11069-7" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11071-9" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11073-9" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11075-9" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11077-8" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11079-95" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11081-48" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083-92" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11085-3" - xlink:href="#linearGradient3088-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3088-6"> - <stop - id="stop3090-4-9" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop3098-3" /> - <stop - id="stop3092-2" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11087-97" - xlink:href="#linearGradient3088-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8095-0"> - <stop - id="stop8097-59" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop8099-35" /> - <stop - id="stop8101-7" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="47.937988" - fy="111.93269" - fx="69.801033" - cy="88.499367" - cx="60.097603" - gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" - gradientUnits="userSpaceOnUse" - id="radialGradient11089-5" - xlink:href="#linearGradient3954-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3954-9"> - <stop - style="stop-color:#b3b3b3;stop-opacity:1;" - offset="0" - id="stop3956-42" /> - <stop - id="stop3962-4" - offset="0.52879584" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#c5c5c5;stop-opacity:1;" - offset="1" - id="stop3958-87" /> - </linearGradient> - <linearGradient - y2="32.457832" - x2="76.596703" - y1="148.57518" - x1="17.723173" - gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" - gradientUnits="userSpaceOnUse" - id="linearGradient11091-1" - xlink:href="#linearGradient4860-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4860-7"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4862-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4864-3" /> - </linearGradient> - <radialGradient - r="50.234375" - fy="8.0446291" - fx="43.034355" - cy="42.699898" - cx="43.620941" - gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" - gradientUnits="userSpaceOnUse" - id="radialGradient11093-7" - xlink:href="#linearGradient4875-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4875-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4877-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4879-3" /> - </linearGradient> - <radialGradient - r="17.67767" - fy="55.875111" - fx="176.77669" - cy="65.774605" - cx="177.4838" - gradientUnits="userSpaceOnUse" - id="radialGradient11009-3" - xlink:href="#linearGradient7290-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7290-5"> - <stop - id="stop7292-8" - offset="0" - style="stop-color:#dddddd;stop-opacity:1;" /> - <stop - id="stop7294-8" - offset="1" - style="stop-color:#a7a7a7;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" - gradientUnits="userSpaceOnUse" - id="linearGradient10892-00" - xlink:href="#linearGradient7394-9" - inkscape:collect="always" /> - <linearGradient - y2="15.75" - x2="71.75" - y1="112.25" - x1="71.75" - gradientTransform="translate(-12,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11007-7" - xlink:href="#linearGradient3586-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3586-2"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3588-57" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3590-5" /> - </linearGradient> - <linearGradient - y2="116.8996" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10888-3" - xlink:href="#linearGradient7365-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7365-0"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7367-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7369-7" /> - </linearGradient> - <linearGradient - y2="60.866104" - x2="73.467186" - y1="60.866104" - x1="72.201843" - gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" - gradientUnits="userSpaceOnUse" - id="linearGradient10883-8" - xlink:href="#linearGradient3576-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3576-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3578-1" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3580-7" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" - gradientUnits="userSpaceOnUse" - id="radialGradient10880-1" - xlink:href="#linearGradient3399-1-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3399-1-4"> - <stop - style="stop-color:#00a8ba;stop-opacity:1;" - offset="0" - id="stop3401-6" /> - <stop - style="stop-color:#00a8ba;stop-opacity:0;" - offset="1" - id="stop3403-1" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" - gradientUnits="userSpaceOnUse" - id="radialGradient11005-2" - xlink:href="#linearGradient3399-1-4" - inkscape:collect="always" /> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" - gradientUnits="userSpaceOnUse" - id="radialGradient10876-1" - xlink:href="#linearGradient3483-86" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3483-86"> - <stop - id="stop3485-69" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop3487-5" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.82944" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" - gradientUnits="userSpaceOnUse" - id="radialGradient11003-89" - xlink:href="#linearGradient3483-86" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8161-2"> - <stop - id="stop8163-0" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop8165-69" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="26.75" - fy="-16.181448" - fx="60" - cy="-16.181448" - cx="60" - gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" - gradientUnits="userSpaceOnUse" - id="radialGradient10871-69" - xlink:href="#linearGradient7365-0" - inkscape:collect="always" /> - <linearGradient - y2="24.713068" - x2="60.428722" - y1="22.930367" - x1="60.428722" - gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" - gradientUnits="userSpaceOnUse" - id="linearGradient10867-4" - xlink:href="#linearGradient4878-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4878-8"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4880-4" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4882-49" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5549-4-0" - id="linearGradient3381-7-7" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-302.8601,-193.7254)" - x1="-190.99445" - y1="75.382088" - x2="-190.99445" - y2="118.72548" /> - <linearGradient - id="linearGradient5549-4-0"> - <stop - style="stop-color:#cacaca;stop-opacity:1" - offset="0" - id="stop5551-5" /> - <stop - id="stop5553-8" - offset="0.61419845" - style="stop-color:#ebebeb;stop-opacity:1;" /> - <stop - style="stop-color:#cbcbcb;stop-opacity:1;" - offset="1" - id="stop5555-3" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5227-9" - id="radialGradient3383-8-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" - cx="-307.625" - cy="70.359375" - fx="-320.35294" - fy="87.258614" - r="50.125" /> - <linearGradient - id="linearGradient5227-9" - inkscape:collect="always"> - <stop - id="stop5229-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5231-48" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-3" - id="linearGradient3386-6" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient3604-3" - inkscape:collect="always"> - <stop - id="stop3606-99" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop3608-5" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-8" - id="radialGradient3388-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-322.72327" - cy="85.487053" - fx="-322.72327" - fy="85.487053" - r="18.133474" /> - <linearGradient - id="linearGradient5237-8" - inkscape:collect="always"> - <stop - id="stop5239-8" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.62162162" /> - <stop - id="stop5241-2" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-8" - id="radialGradient3390-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-317.63007" - cy="84.673492" - fx="-317.63007" - fy="84.673492" - r="18.133474" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5352-8" - id="linearGradient3392-6-9" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-377.3601,-71.225397)" - x1="-115.51489" - y1="-53.597103" - x2="-115.51489" - y2="-33.89423" /> - <linearGradient - id="linearGradient5352-8" - inkscape:collect="always"> - <stop - id="stop5354-66" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5356-6" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5267-9" - id="linearGradient3394-8-7" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-190.3601,-184.7254)" - x1="-296.75015" - y1="119.76865" - x2="-296.75015" - y2="92.064072" /> - <linearGradient - id="linearGradient5267-9" - inkscape:collect="always"> - <stop - id="stop5269-3" - offset="0" - style="stop-color:#050505;stop-opacity:1;" /> - <stop - id="stop5271-9" - offset="1" - style="stop-color:#050505;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-3" - id="linearGradient3396-44" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5406-25" - id="radialGradient3398-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" - cx="-107.83378" - cy="-43.067612" - fx="-107.83378" - fy="-43.067612" - r="12.374368" /> - <linearGradient - id="linearGradient5406-25" - inkscape:collect="always"> - <stop - id="stop5408-4" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5410-6" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-49" - id="radialGradient3400-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" - cx="-195.32214" - cy="133.89294" - fx="-195.32214" - fy="133.89294" - r="48.968639" /> - <linearGradient - id="linearGradient3653-4-49" - inkscape:collect="always"> - <stop - id="stop3655-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3657-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-49" - id="radialGradient3402-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" - cx="-195.32211" - cy="144.36551" - fx="-195.32211" - fy="144.36551" - r="48.968639" /> - <mask - id="mask5641-7" - maskUnits="userSpaceOnUse"> - <rect - y="-108.19437" - x="-548.99231" - height="26.352942" - width="100.99232" - id="rect5643-5" - style="fill:url(#radialGradient5645-9);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - r="50.496159" - fy="-97.979721" - fx="-498.49612" - cy="-97.979721" - cx="-498.49612" - gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" - gradientUnits="userSpaceOnUse" - id="radialGradient5645-9" - xlink:href="#linearGradient5631-3-6" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5631-3-6"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5633-6" /> - <stop - id="stop5639-9" - offset="0.30253538" - style="stop-color:#ffffff;stop-opacity:0.86666667;" /> - <stop - id="stop5637-4" - offset="0.70000011" - style="stop-color:#ffffff;stop-opacity:0.50980392;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5635-4" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5522-2" - id="radialGradient3404-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" - cx="-75.703278" - cy="119.10338" - fx="-75.703278" - fy="119.10338" - r="50.125" /> - <linearGradient - id="linearGradient5522-2"> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="0" - id="stop5524-3" /> - <stop - id="stop5526-1" - offset="0.52602422" - style="stop-color:#000000;stop-opacity:0.21428572;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop5528-1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5114-0" - id="radialGradient3406-92" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" - cx="-75.711166" - cy="113.45824" - fx="-75.514481" - fy="99.224663" - r="50.125" /> - <linearGradient - id="linearGradient5114-0"> - <stop - id="stop5116-7" - offset="0" - style="stop-color:#000000;stop-opacity:0;" /> - <stop - style="stop-color:#000000;stop-opacity:0.21428572;" - offset="0.5" - id="stop5182-7" /> - <stop - id="stop5118-0" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5566-32" - id="linearGradient3408-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - x1="-190.20325" - y1="77.351906" - x2="-190.20325" - y2="102.10035" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5566-32"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5568-0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5570-5" /> - </linearGradient> - <linearGradient - y2="15.411574" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10845-4" - xlink:href="#linearGradient7365-0" - inkscape:collect="always" /> - <radialGradient - r="94" - fy="-192.92754" - fx="-122.25" - cy="-192.92754" - cx="-122.25" - gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" - gradientUnits="userSpaceOnUse" - id="radialGradient10842-4" - xlink:href="#linearGradient3393-56" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3393-56"> - <stop - id="stop3395-3" - offset="0" - style="stop-color:#efefef;stop-opacity:1" /> - <stop - id="stop3397-2" - offset="1" - style="stop-color:#b8b8b8;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-228.88507" - x2="-100" - y1="-106.62158" - x1="-100" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10839-8" - xlink:href="#linearGradient3385-7-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3385-7-1"> - <stop - id="stop3387-07" - offset="0" - style="stop-color:#d6d6d6;stop-opacity:1;" /> - <stop - id="stop3389-64" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-208.05618" - x2="-80" - y1="-67.985718" - x1="-80" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10836-5" - xlink:href="#linearGradient3259-07" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3259-07"> - <stop - id="stop3261-7" - offset="0" - style="stop-color:#1f1f1f;stop-opacity:1;" /> - <stop - id="stop3263-3" - offset="1" - style="stop-color:#424242;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-275.16071" - x2="-127.61703" - y1="-310.29703" - x1="-127.61703" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" - gradientUnits="userSpaceOnUse" - id="linearGradient10833-6" - xlink:href="#linearGradient3303-2-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3303-2-6" - inkscape:collect="always"> - <stop - id="stop3305-5-95" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3307-4-99" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-166.52031" - fx="-120.37437" - cy="-150.6152" - cx="-120" - gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" - gradientUnits="userSpaceOnUse" - id="radialGradient10830-4" - xlink:href="#linearGradient3273-80" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3273-80" - inkscape:collect="always"> - <stop - id="stop3275-7" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3277-2" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-109.7959" - fx="-120" - cy="-109.7959" - cx="-120" - gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" - gradientUnits="userSpaceOnUse" - id="radialGradient10827-29" - xlink:href="#linearGradient3273-80" - inkscape:collect="always" /> - <linearGradient - y2="-124.49196" - x2="-11.793251" - y1="-0.17180708" - x1="-11.793251" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10823-7" - xlink:href="#linearGradient3427-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3427-8" - inkscape:collect="always"> - <stop - id="stop3429-4" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3431-4" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-158.88614" - x2="-90.485931" - y1="-60.000008" - x1="-132.38875" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10820-4" - xlink:href="#XMLID_18_-98" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="XMLID_18_-98"> - <stop - id="stop3354-4" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop3364-18" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <radialGradient - r="76" - fy="-120.68829" - fx="-526.78827" - cy="-120.68829" - cx="-526.78827" - gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" - gradientUnits="userSpaceOnUse" - id="radialGradient10817-29" - xlink:href="#XMLID_18_-98" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="linearGradient8333-2"> - <stop - id="stop8335-7" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop8337-1" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - y2="-141.69821" - x2="-474.70587" - y1="-349.57544" - x1="-519.00256" - gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" - gradientUnits="userSpaceOnUse" - id="linearGradient10814-9" - xlink:href="#linearGradient4376-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4376-6" - inkscape:collect="always"> - <stop - id="stop4378-4" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4380-5" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient11001-34" - xlink:href="#linearGradient4429-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4429-2"> - <stop - style="stop-color:#fff1c0;stop-opacity:1;" - offset="0" - id="stop4431-4" /> - <stop - style="stop-color:#fff1c0;stop-opacity:0;" - offset="1" - id="stop4433-38" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient10999-2" - xlink:href="#linearGradient4441-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4441-5"> - <stop - id="stop4443-6" - offset="0" - style="stop-color:#dbfaff;stop-opacity:1;" /> - <stop - id="stop4445-69" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient8482-53" - xlink:href="#linearGradient4441-5" - inkscape:collect="always" /> - <radialGradient - r="20.631315" - fy="138.73308" - fx="71.368683" - cy="138.73308" - cx="71.368683" - gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" - gradientUnits="userSpaceOnUse" - id="radialGradient11107-3" - xlink:href="#linearGradient3802-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3802-5"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3804-1" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3806-2" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.075877823" - width="1.1517557" - y="-0.78272969" - height="2.5654593" - id="filter3872-8" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.3045494" - id="feGaussianBlur3874-33" /> - </filter> - <linearGradient - y2="122.43194" - x2="91.105286" - y1="122.43194" - x1="50.458698" - gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10996-26" - xlink:href="#linearGradient4029-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4029-1"> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="0" - id="stop4031-2" /> - <stop - id="stop4033-6" - offset="0.5" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="1" - id="stop4035-51" /> - </linearGradient> - <linearGradient - y2="124.48643" - x2="93.409775" - y1="124.48643" - x1="50.394154" - gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10993-4" - xlink:href="#linearGradient3149-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3149-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3151-17" /> - <stop - id="stop3157-3" - offset="0.34797296" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.65930116" - id="stop4061-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3153-8" /> - </linearGradient> - <linearGradient - y2="477.52972" - x2="742.16382" - y1="477.52972" - x1="555.14642" - gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990-3" - xlink:href="#linearGradient3611-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3611-0"> - <stop - id="stop3613-7" - offset="0" - style="stop-color:#818584;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.5" - id="stop3615-1" /> - <stop - id="stop3617-9" - offset="1" - style="stop-color:#818584;stop-opacity:1;" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="406.23959" - fx="648.6554" - cy="390.69016" - cx="648.65527" - gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" - gradientUnits="userSpaceOnUse" - id="radialGradient10987-51" - xlink:href="#linearGradient3166-51" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3166-51"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168-18" /> - <stop - id="stop3518-64" - offset="0.5990991" - style="stop-color:#ffffff;stop-opacity:0.82206404;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3170-2" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="639.22247" - fx="648.65515" - cy="639.22247" - cx="648.65515" - gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" - gradientUnits="userSpaceOnUse" - id="radialGradient10984-6" - xlink:href="#linearGradient3176-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3176-7"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3178-5-6" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop3180-9" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient10981-69" - xlink:href="#linearGradient3722-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3722-3"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3724-2" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop3726-5" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient7741-4" - xlink:href="#linearGradient3722-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7743-80"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop7745-7" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop7747-5" /> - </linearGradient> - <radialGradient - r="7.9898205" - fy="76.438904" - fx="55.989819" - cy="76.438904" - cx="55.989819" - gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" - gradientUnits="userSpaceOnUse" - id="radialGradient10977-3" - xlink:href="#linearGradient3872-05" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3872-05"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3874-6" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3876-0" /> - </linearGradient> - <linearGradient - y2="110.8287" - x2="73.38102" - y1="150.87357" - x1="73.38102" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10974-58" - xlink:href="#linearGradient3176-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7754-2"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7756-2" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop7758-1" /> - </linearGradient> - <radialGradient - r="20.5" - fy="116" - fx="72" - cy="116" - cx="72" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - gradientUnits="userSpaceOnUse" - id="radialGradient11105-7" - xlink:href="#linearGradient4949-35" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4949-35"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4951-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4953-1" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.013508443" - width="1.0270169" - y="-0.55384612" - height="2.1076922" - id="filter4997-9" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.23076923" - id="feGaussianBlur4999-0" /> - </filter> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientTransform="translate(1,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11103-9" - xlink:href="#linearGradient6064-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient6064-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6066-6" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6068-8" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.26761475" - width="1.5352294" - y="-0.062321238" - height="1.1246425" - id="filter6060-7" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.5675913" - id="feGaussianBlur6062-8" /> - </filter> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientUnits="userSpaceOnUse" - id="linearGradient11101-1" - xlink:href="#linearGradient6064-9" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-57" - id="radialGradient7694-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3978-57"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3980-9" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3982-54" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-57" - id="radialGradient7787-50" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - y2="15.908398" - x2="72.281242" - y1="58" - x1="70.316795" - gradientTransform="translate(102.53048,-57.275649)" - gradientUnits="userSpaceOnUse" - id="linearGradient11095-7" - xlink:href="#linearGradient7136-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7136-2"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7138-6" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7140-97" /> - </linearGradient> - <mask - maskUnits="userSpaceOnUse" - id="mask7160-61"> - <path - inkscape:connector-curvature="0" - id="path7162-9" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="fill:url(#radialGradient7164-09);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient7150-4" - id="radialGradient7164-09" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" - cx="162.46797" - cy="-0.23275588" - fx="162.46797" - fy="-0.23275588" - r="25.9375" /> - <linearGradient - id="linearGradient7150-4"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop7152-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop7154-7" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7348-78" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.8190732" - id="feGaussianBlur7350-77" /> - </filter> - <filter - inkscape:collect="always" - x="-0.14289699" - width="1.285794" - y="-0.089270152" - height="1.1785403" - id="filter7256-9" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="6.6685268" - id="feGaussianBlur7258-6" /> - </filter> - <filter - inkscape:collect="always" - id="filter7238-7" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.6674107" - id="feGaussianBlur7240-6" /> - </filter> - <linearGradient - gradientTransform="translate(2,927.73011)" - y2="18.691383" - x2="16.357016" - y1="92" - x1="36" - gradientUnits="userSpaceOnUse" - id="linearGradient10953-61" - xlink:href="#linearGradient4409-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4409-7"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4411-1" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4413-0" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4405-7" - x="-0.23281144" - width="1.4656229" - y="-0.048040453" - height="1.0960809" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.2610619" - id="feGaussianBlur4407-6" /> - </filter> - <linearGradient - y2="7.7186575" - x2="55.058228" - y1="-0.85672575" - x1="55.058228" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10950-5" - xlink:href="#linearGradient7354-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7354-4"> - <stop - style="stop-color:#929595;stop-opacity:1;" - offset="0" - id="stop7356-8" /> - <stop - style="stop-color:#929595;stop-opacity:0;" - offset="1" - id="stop7358-28" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" - gradientUnits="userSpaceOnUse" - id="linearGradient10947-6" - xlink:href="#linearGradient7394-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7394-1"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7396-63" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7398-5" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4648-7" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="4.6264466" - id="feGaussianBlur4650-5" /> - </filter> - <radialGradient - r="42.727272" - fy="44.909092" - fx="52.18182" - cy="44.909092" - cx="52.18182" - spreadMethod="reflect" - gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" - gradientUnits="userSpaceOnUse" - id="radialGradient11011-44" - xlink:href="#linearGradient3065-41" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3065-41"> - <stop - id="stop3067-5-32" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3073-02" /> - <stop - id="stop3069-2" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11013-8" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3167-28" - inkscape:collect="always"> - <stop - id="stop3169-43" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3171-8" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11015-5" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11017-55" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11019-3" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11021-0" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11023-1" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11025-1" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11027-4" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11029-9" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11031-08" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11033-7" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11035-33" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11037-70" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11039-9" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11041-34" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11043-2" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11045-68" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11047-2" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11049-9" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11051-03" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11053-11" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11055-7" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11057-6" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11059-9" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11061-53" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11063-60" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11065-4" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11067-9" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11069-4" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11071-0" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11073-0" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11075-4" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11077-0" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11079-8" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11081-9" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083-3" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11085-51" - xlink:href="#linearGradient3088-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3088-4"> - <stop - id="stop3090-4-0" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop3098-76" /> - <stop - id="stop3092-6" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11087-5" - xlink:href="#linearGradient3088-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8095-1"> - <stop - id="stop8097-7" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop8099-8" /> - <stop - id="stop8101-4" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="47.937988" - fy="111.93269" - fx="69.801033" - cy="88.499367" - cx="60.097603" - gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" - gradientUnits="userSpaceOnUse" - id="radialGradient11089-09" - xlink:href="#linearGradient3954-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3954-3"> - <stop - style="stop-color:#b3b3b3;stop-opacity:1;" - offset="0" - id="stop3956-8" /> - <stop - id="stop3962-0" - offset="0.52879584" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#c5c5c5;stop-opacity:1;" - offset="1" - id="stop3958-82" /> - </linearGradient> - <linearGradient - y2="32.457832" - x2="76.596703" - y1="148.57518" - x1="17.723173" - gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" - gradientUnits="userSpaceOnUse" - id="linearGradient11091-8" - xlink:href="#linearGradient4860-98" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4860-98"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4862-9" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4864-5" /> - </linearGradient> - <radialGradient - r="50.234375" - fy="8.0446291" - fx="43.034355" - cy="42.699898" - cx="43.620941" - gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" - gradientUnits="userSpaceOnUse" - id="radialGradient11093-8" - xlink:href="#linearGradient4875-99" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4875-99"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4877-1" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4879-7" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7312-8" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.1655606" - id="feGaussianBlur7314-4" /> - </filter> - <radialGradient - r="17.67767" - fy="55.875111" - fx="176.77669" - cy="65.774605" - cx="177.4838" - gradientUnits="userSpaceOnUse" - id="radialGradient11009-4" - xlink:href="#linearGradient7290-99" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7290-99"> - <stop - id="stop7292-4" - offset="0" - style="stop-color:#dddddd;stop-opacity:1;" /> - <stop - id="stop7294-6" - offset="1" - style="stop-color:#a7a7a7;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" - gradientUnits="userSpaceOnUse" - id="linearGradient10892-7" - xlink:href="#linearGradient7394-1" - inkscape:collect="always" /> - <linearGradient - y2="15.75" - x2="71.75" - y1="112.25" - x1="71.75" - gradientTransform="translate(-12,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11007-33" - xlink:href="#linearGradient3586-80" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3586-80"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3588-1" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3590-23" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.4752" - width="1.9504" - y="-0.012310881" - height="1.0246218" - id="filter3598-261" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.495" - id="feGaussianBlur3600-2" /> - </filter> - <linearGradient - y2="116.8996" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10888-6" - xlink:href="#linearGradient7365-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7365-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7367-27" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7369-3" /> - </linearGradient> - <linearGradient - y2="60.866104" - x2="73.467186" - y1="60.866104" - x1="72.201843" - gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" - gradientUnits="userSpaceOnUse" - id="linearGradient10883-1" - xlink:href="#linearGradient3576-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3576-2"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3578-21" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3580-1" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" - gradientUnits="userSpaceOnUse" - id="radialGradient10880-3" - xlink:href="#linearGradient3399-1-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3399-1-0"> - <stop - style="stop-color:#00a8ba;stop-opacity:1;" - offset="0" - id="stop3401-1" /> - <stop - style="stop-color:#00a8ba;stop-opacity:0;" - offset="1" - id="stop3403-9" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" - gradientUnits="userSpaceOnUse" - id="radialGradient11005-70" - xlink:href="#linearGradient3399-1-0" - inkscape:collect="always" /> - <filter - inkscape:collect="always" - x="-0.4660736" - width="1.9321471" - y="-0.038034502" - height="1.076069" - id="filter3469-0" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.146978" - id="feGaussianBlur3471-3" /> - </filter> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" - gradientUnits="userSpaceOnUse" - id="radialGradient10876-8" - xlink:href="#linearGradient3483-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3483-0"> - <stop - id="stop3485-62" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop3487-8" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.82944" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" - gradientUnits="userSpaceOnUse" - id="radialGradient11003-9" - xlink:href="#linearGradient3483-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8161-31"> - <stop - id="stop8163-2" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop8165-8" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.59694225" - width="2.1938846" - y="-0.074120946" - height="1.1482419" - id="filter4927-9" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.49701338" - id="feGaussianBlur4929-52" /> - </filter> - <radialGradient - r="26.75" - fy="-16.181448" - fx="60" - cy="-16.181448" - cx="60" - gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" - gradientUnits="userSpaceOnUse" - id="radialGradient10871-5" - xlink:href="#linearGradient7365-3" - inkscape:collect="always" /> - <linearGradient - y2="24.713068" - x2="60.428722" - y1="22.930367" - x1="60.428722" - gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" - gradientUnits="userSpaceOnUse" - id="linearGradient10867-15" - xlink:href="#linearGradient4878-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4878-3"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4880-48" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4882-5" /> - </linearGradient> - <filter - height="1.2056012" - y="-0.1028006" - width="1.1447796" - x="-0.072389819" - id="filter5346-81" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5348-9" - stdDeviation="3.0237831" - inkscape:collect="always" /> - </filter> - <filter - id="filter5214-1" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5216-20" - stdDeviation="0.94493222" - inkscape:collect="always" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5549-4-1" - id="linearGradient3381-7-3" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-302.8601,-193.7254)" - x1="-190.99445" - y1="75.382088" - x2="-190.99445" - y2="118.72548" /> - <linearGradient - id="linearGradient5549-4-1"> - <stop - style="stop-color:#cacaca;stop-opacity:1" - offset="0" - id="stop5551-3" /> - <stop - id="stop5553-5" - offset="0.61419845" - style="stop-color:#ebebeb;stop-opacity:1;" /> - <stop - style="stop-color:#cbcbcb;stop-opacity:1;" - offset="1" - id="stop5555-4" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5227-5" - id="radialGradient3383-8-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" - cx="-307.625" - cy="70.359375" - fx="-320.35294" - fy="87.258614" - r="50.125" /> - <linearGradient - id="linearGradient5227-5" - inkscape:collect="always"> - <stop - id="stop5229-35" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5231-6" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-7" - id="linearGradient3386-41" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient3604-7" - inkscape:collect="always"> - <stop - id="stop3606-8" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop3608-98" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <filter - id="filter3600-3" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3602-1" - stdDeviation="0.47186117" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-80" - id="radialGradient3388-54" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-322.72327" - cy="85.487053" - fx="-322.72327" - fy="85.487053" - r="18.133474" /> - <linearGradient - id="linearGradient5237-80" - inkscape:collect="always"> - <stop - id="stop5239-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.62162162" /> - <stop - id="stop5241-7" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <filter - height="1.2339463" - y="-0.11697313" - width="1.0979174" - x="-0.048958682" - id="filter5257-87" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5259-8" - stdDeviation="0.71942638" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-80" - id="radialGradient3390-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-317.63007" - cy="84.673492" - fx="-317.63007" - fy="84.673492" - r="18.133474" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5352-9" - id="linearGradient3392-6-12" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-377.3601,-71.225397)" - x1="-115.51489" - y1="-53.597103" - x2="-115.51489" - y2="-33.89423" /> - <linearGradient - id="linearGradient5352-9" - inkscape:collect="always"> - <stop - id="stop5354-65" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5356-2" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5267-2" - id="linearGradient3394-8-3" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-190.3601,-184.7254)" - x1="-296.75015" - y1="119.76865" - x2="-296.75015" - y2="92.064072" /> - <linearGradient - id="linearGradient5267-2" - inkscape:collect="always"> - <stop - id="stop5269-6" - offset="0" - style="stop-color:#050505;stop-opacity:1;" /> - <stop - id="stop5271-95" - offset="1" - style="stop-color:#050505;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-7" - id="linearGradient3396-3" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5406-14" - id="radialGradient3398-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" - cx="-107.83378" - cy="-43.067612" - fx="-107.83378" - fy="-43.067612" - r="12.374368" /> - <linearGradient - id="linearGradient5406-14" - inkscape:collect="always"> - <stop - id="stop5408-49" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5410-5" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <filter - height="1.9108608" - y="-0.45543039" - width="1.2504867" - x="-0.12524337" - id="filter5402-4" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5404-2" - stdDeviation="1.2915062" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-9" - id="radialGradient3400-99" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" - cx="-195.32214" - cy="133.89294" - fx="-195.32214" - fy="133.89294" - r="48.968639" /> - <linearGradient - id="linearGradient3653-4-9" - inkscape:collect="always"> - <stop - id="stop3655-70" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3657-0" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <filter - id="filter3649-6" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3651-09" - stdDeviation="0.53709441" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-9" - id="radialGradient3402-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" - cx="-195.32211" - cy="144.36551" - fx="-195.32211" - fy="144.36551" - r="48.968639" /> - <mask - id="mask5641-70" - maskUnits="userSpaceOnUse"> - <rect - y="-108.19437" - x="-548.99231" - height="26.352942" - width="100.99232" - id="rect5643-96" - style="fill:url(#radialGradient5645-8);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - r="50.496159" - fy="-97.979721" - fx="-498.49612" - cy="-97.979721" - cx="-498.49612" - gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" - gradientUnits="userSpaceOnUse" - id="radialGradient5645-8" - xlink:href="#linearGradient5631-3-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5631-3-7"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5633-1" /> - <stop - id="stop5639-29" - offset="0.30253538" - style="stop-color:#ffffff;stop-opacity:0.86666667;" /> - <stop - id="stop5637-9" - offset="0.70000011" - style="stop-color:#ffffff;stop-opacity:0.50980392;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5635-34" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5522-7" - id="radialGradient3404-20" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" - cx="-75.703278" - cy="119.10338" - fx="-75.703278" - fy="119.10338" - r="50.125" /> - <linearGradient - id="linearGradient5522-7"> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="0" - id="stop5524-96" /> - <stop - id="stop5526-6" - offset="0.52602422" - style="stop-color:#000000;stop-opacity:0.21428572;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop5528-6" /> - </linearGradient> - <filter - id="filter5178-0" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5180-0" - stdDeviation="0.42032926" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5114-19" - id="radialGradient3406-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" - cx="-75.711166" - cy="113.45824" - fx="-75.514481" - fy="99.224663" - r="50.125" /> - <linearGradient - id="linearGradient5114-19"> - <stop - id="stop5116-5" - offset="0" - style="stop-color:#000000;stop-opacity:0;" /> - <stop - style="stop-color:#000000;stop-opacity:0.21428572;" - offset="0.5" - id="stop5182-31" /> - <stop - id="stop5118-1" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5566-1" - id="linearGradient3408-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - x1="-190.20325" - y1="77.351906" - x2="-190.20325" - y2="102.10035" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5566-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5568-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5570-2" /> - </linearGradient> - <linearGradient - y2="15.411574" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10845-3" - xlink:href="#linearGradient7365-3" - inkscape:collect="always" /> - <radialGradient - r="94" - fy="-192.92754" - fx="-122.25" - cy="-192.92754" - cx="-122.25" - gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" - gradientUnits="userSpaceOnUse" - id="radialGradient10842-0" - xlink:href="#linearGradient3393-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3393-9"> - <stop - id="stop3395-27" - offset="0" - style="stop-color:#efefef;stop-opacity:1" /> - <stop - id="stop3397-26" - offset="1" - style="stop-color:#b8b8b8;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-228.88507" - x2="-100" - y1="-106.62158" - x1="-100" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10839-81" - xlink:href="#linearGradient3385-7-14" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3385-7-14"> - <stop - id="stop3387-5" - offset="0" - style="stop-color:#d6d6d6;stop-opacity:1;" /> - <stop - id="stop3389-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-208.05618" - x2="-80" - y1="-67.985718" - x1="-80" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10836-16" - xlink:href="#linearGradient3259-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3259-7"> - <stop - id="stop3261-73" - offset="0" - style="stop-color:#1f1f1f;stop-opacity:1;" /> - <stop - id="stop3263-99" - offset="1" - style="stop-color:#424242;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-275.16071" - x2="-127.61703" - y1="-310.29703" - x1="-127.61703" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" - gradientUnits="userSpaceOnUse" - id="linearGradient10833-0" - xlink:href="#linearGradient3303-2-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3303-2-2" - inkscape:collect="always"> - <stop - id="stop3305-5-956" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3307-4-29" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-166.52031" - fx="-120.37437" - cy="-150.6152" - cx="-120" - gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" - gradientUnits="userSpaceOnUse" - id="radialGradient10830-1" - xlink:href="#linearGradient3273-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3273-3" - inkscape:collect="always"> - <stop - id="stop3275-74" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3277-7" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-109.7959" - fx="-120" - cy="-109.7959" - cx="-120" - gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" - gradientUnits="userSpaceOnUse" - id="radialGradient10827-9" - xlink:href="#linearGradient3273-3" - inkscape:collect="always" /> - <linearGradient - y2="-124.49196" - x2="-11.793251" - y1="-0.17180708" - x1="-11.793251" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10823-5" - xlink:href="#linearGradient3427-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3427-1" - inkscape:collect="always"> - <stop - id="stop3429-8" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3431-7" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-158.88614" - x2="-90.485931" - y1="-60.000008" - x1="-132.38875" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10820-9" - xlink:href="#XMLID_18_-6" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="XMLID_18_-6"> - <stop - id="stop3354-0" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop3364-0" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <radialGradient - r="76" - fy="-120.68829" - fx="-526.78827" - cy="-120.68829" - cx="-526.78827" - gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" - gradientUnits="userSpaceOnUse" - id="radialGradient10817-27" - xlink:href="#XMLID_18_-6" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="linearGradient8333-1"> - <stop - id="stop8335-3" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop8337-4" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - y2="-141.69821" - x2="-474.70587" - y1="-349.57544" - x1="-519.00256" - gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" - gradientUnits="userSpaceOnUse" - id="linearGradient10814-02" - xlink:href="#linearGradient4376-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4376-9" - inkscape:collect="always"> - <stop - id="stop4378-1" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4380-2" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient11001-9" - xlink:href="#linearGradient4429-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4429-3"> - <stop - style="stop-color:#fff1c0;stop-opacity:1;" - offset="0" - id="stop4431-3" /> - <stop - style="stop-color:#fff1c0;stop-opacity:0;" - offset="1" - id="stop4433-71" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient10999-5" - xlink:href="#linearGradient4441-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4441-6"> - <stop - id="stop4443-5" - offset="0" - style="stop-color:#dbfaff;stop-opacity:1;" /> - <stop - id="stop4445-9" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient8482-59" - xlink:href="#linearGradient4441-6" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-6" - id="radialGradient14192" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-4" - id="radialGradient14194" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-6" - id="radialGradient14202" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8202529,2.7584451e-7,-3.4561228e-7,0.07057628,821.43741,-19.640871)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-4" - id="radialGradient14206" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8202529,2.7584451e-7,-3.4561228e-7,0.07057628,821.43741,-19.640871)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - r="20.631315" - fy="138.73308" - fx="71.368683" - cy="138.73308" - cx="71.368683" - gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" - gradientUnits="userSpaceOnUse" - id="radialGradient11107-9-6" - xlink:href="#linearGradient3802-8-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3802-8-4"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3804-2-6" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3806-3-1" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.075877823" - width="1.1517557" - y="-0.78272969" - height="2.5654593" - id="filter3872-5-0" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.3045494" - id="feGaussianBlur3874-0-3" /> - </filter> - <linearGradient - y2="122.43194" - x2="91.105286" - y1="122.43194" - x1="50.458698" - gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10996-4-5" - xlink:href="#linearGradient4029-4-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4029-4-4"> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="0" - id="stop4031-9-3" /> - <stop - id="stop4033-5-1" - offset="0.5" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="1" - id="stop4035-4-2" /> - </linearGradient> - <linearGradient - y2="124.48643" - x2="93.409775" - y1="124.48643" - x1="50.394154" - gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10993-9-8" - xlink:href="#linearGradient3149-4-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3149-4-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3151-8-0" /> - <stop - id="stop3157-6-6" - offset="0.34797296" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.65930116" - id="stop4061-9-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3153-4-1" /> - </linearGradient> - <linearGradient - y2="477.52972" - x2="742.16382" - y1="477.52972" - x1="555.14642" - gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990-7-2" - xlink:href="#linearGradient3611-2-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3611-2-8"> - <stop - id="stop3613-1-4" - offset="0" - style="stop-color:#818584;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.5" - id="stop3615-6-0" /> - <stop - id="stop3617-5-2" - offset="1" - style="stop-color:#818584;stop-opacity:1;" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="406.23959" - fx="648.6554" - cy="390.69016" - cx="648.65527" - gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" - gradientUnits="userSpaceOnUse" - id="radialGradient10987-3-0" - xlink:href="#linearGradient3166-4-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3166-4-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168-9-1" /> - <stop - id="stop3518-9-5" - offset="0.5990991" - style="stop-color:#ffffff;stop-opacity:0.82206404;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3170-1-0" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="639.22247" - fx="648.65515" - cy="639.22247" - cx="648.65515" - gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" - gradientUnits="userSpaceOnUse" - id="radialGradient10984-2-7" - xlink:href="#linearGradient3176-9-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3176-9-9"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3178-5-7-2" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop3180-1-6" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient10981-8-7" - xlink:href="#linearGradient3722-5-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3722-5-8"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3724-5-5" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop3726-3-8" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient14359" - xlink:href="#linearGradient3722-5-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient14361"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop14363" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop14365" /> - </linearGradient> - <radialGradient - r="7.9898205" - fy="76.438904" - fx="55.989819" - cy="76.438904" - cx="55.989819" - gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" - gradientUnits="userSpaceOnUse" - id="radialGradient10977-2-0" - xlink:href="#linearGradient3872-5-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3872-5-0"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3874-8-5" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3876-7-4" /> - </linearGradient> - <linearGradient - y2="110.8287" - x2="73.38102" - y1="150.87357" - x1="73.38102" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10974-6-3" - xlink:href="#linearGradient3176-9-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient14372"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop14374" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop14376" /> - </linearGradient> - <radialGradient - r="20.5" - fy="116" - fx="72" - cy="116" - cx="72" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - gradientUnits="userSpaceOnUse" - id="radialGradient11105-5-7" - xlink:href="#linearGradient4949-3-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4949-3-7"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4951-7-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4953-9-2" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.013508443" - width="1.0270169" - y="-0.55384612" - height="2.1076922" - id="filter4997-1-7" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.23076923" - id="feGaussianBlur4999-6-0" /> - </filter> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientTransform="translate(1,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11103-0-9" - xlink:href="#linearGradient6064-7-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient6064-7-0"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6066-3-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6068-2-8" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.26761475" - width="1.5352294" - y="-0.062321238" - height="1.1246425" - id="filter6060-9-4" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.5675913" - id="feGaussianBlur6062-1-4" /> - </filter> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientUnits="userSpaceOnUse" - id="linearGradient11101-9-0" - xlink:href="#linearGradient6064-7-0" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-5-3" - id="radialGradient14196-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3978-5-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3980-8-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3982-5-2" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-5-3" - id="radialGradient14405" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - y2="15.908398" - x2="72.281242" - y1="58" - x1="70.316795" - gradientTransform="translate(102.53048,-57.275649)" - gradientUnits="userSpaceOnUse" - id="linearGradient11095-8-3" - xlink:href="#linearGradient7136-3-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7136-3-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7138-4-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7140-5-7" /> - </linearGradient> - <mask - maskUnits="userSpaceOnUse" - id="mask7160-6-0"> - <path - inkscape:connector-curvature="0" - id="path7162-5-0" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="fill:url(#radialGradient7164-2-5);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient7150-1-5" - id="radialGradient7164-2-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" - cx="162.46797" - cy="-0.23275588" - fx="162.46797" - fy="-0.23275588" - r="25.9375" /> - <linearGradient - id="linearGradient7150-1-5"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop7152-8-0" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop7154-5-5" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7348-8-7" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.8190732" - id="feGaussianBlur7350-8-6" /> - </filter> - <filter - inkscape:collect="always" - x="-0.14289699" - width="1.285794" - y="-0.089270152" - height="1.1785403" - id="filter7256-4-2" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="6.6685268" - id="feGaussianBlur7258-7-1" /> - </filter> - <filter - inkscape:collect="always" - id="filter7238-3-5" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.6674107" - id="feGaussianBlur7240-9-1" /> - </filter> - <linearGradient - gradientTransform="translate(2,927.73011)" - y2="18.691383" - x2="16.357016" - y1="92" - x1="36" - gradientUnits="userSpaceOnUse" - id="linearGradient10953-6-5" - xlink:href="#linearGradient4409-4-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4409-4-7"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4411-3-8" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4413-2-5" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4405-5-7" - x="-0.23281144" - width="1.4656229" - y="-0.048040453" - height="1.0960809" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.2610619" - id="feGaussianBlur4407-0-8" /> - </filter> - <linearGradient - y2="7.7186575" - x2="55.058228" - y1="-0.85672575" - x1="55.058228" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10950-7-9" - xlink:href="#linearGradient7354-9-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7354-9-5"> - <stop - style="stop-color:#929595;stop-opacity:1;" - offset="0" - id="stop7356-1-4" /> - <stop - style="stop-color:#929595;stop-opacity:0;" - offset="1" - id="stop7358-8-3" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" - gradientUnits="userSpaceOnUse" - id="linearGradient10947-9-7" - xlink:href="#linearGradient7394-5-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7394-5-3"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7396-6-6" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7398-9-1" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4648-2-5" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="4.6264466" - id="feGaussianBlur4650-4-1" /> - </filter> - <radialGradient - r="42.727272" - fy="44.909092" - fx="52.18182" - cy="44.909092" - cx="52.18182" - spreadMethod="reflect" - gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" - gradientUnits="userSpaceOnUse" - id="radialGradient11011-4-3" - xlink:href="#linearGradient3065-9-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3065-9-0"> - <stop - id="stop3067-5-2-1" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3073-0-3" /> - <stop - id="stop3069-6-0" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11013-4-6" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3167-3-0" - inkscape:collect="always"> - <stop - id="stop3169-4-3" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3171-1-4" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11015-4-7" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11017-5-9" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11019-7-8" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11021-1-0" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11023-0-4" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11025-7-9" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11027-9-7" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11029-5-3" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11031-0-9" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11033-2-4" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11035-2-0" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11037-2-7" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11039-1-3" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11041-3-7" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11043-6-3" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11045-0-8" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11047-4-5" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11049-3-9" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11051-8-6" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11053-4-8" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11055-6-4" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11057-2-8" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11059-0-1" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11061-5-5" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11063-6-1" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11065-3-6" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11067-1-7" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11069-3-9" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11071-6-8" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11073-7-2" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11075-6-5" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11077-2-8" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11079-2-3" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11081-4-3" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083-5-8" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11085-5-7" - xlink:href="#linearGradient3088-1-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3088-1-2"> - <stop - id="stop3090-4-5-8" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop3098-2-1" /> - <stop - id="stop3092-3-1" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11087-9-2" - xlink:href="#linearGradient3088-1-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient14713"> - <stop - id="stop14715" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop14717" /> - <stop - id="stop14719" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="47.937988" - fy="111.93269" - fx="69.801033" - cy="88.499367" - cx="60.097603" - gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" - gradientUnits="userSpaceOnUse" - id="radialGradient11089-4-3" - xlink:href="#linearGradient3954-7-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3954-7-0"> - <stop - style="stop-color:#b3b3b3;stop-opacity:1;" - offset="0" - id="stop3956-0-8" /> - <stop - id="stop3962-9-1" - offset="0.52879584" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#c5c5c5;stop-opacity:1;" - offset="1" - id="stop3958-3-6" /> - </linearGradient> - <linearGradient - y2="32.457832" - x2="76.596703" - y1="148.57518" - x1="17.723173" - gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" - gradientUnits="userSpaceOnUse" - id="linearGradient11091-2-8" - xlink:href="#linearGradient4860-4-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4860-4-8"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4862-7-5" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4864-0-5" /> - </linearGradient> - <radialGradient - r="50.234375" - fy="8.0446291" - fx="43.034355" - cy="42.699898" - cx="43.620941" - gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" - gradientUnits="userSpaceOnUse" - id="radialGradient11093-0-6" - xlink:href="#linearGradient4875-3-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4875-3-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4877-5-5" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4879-0-0" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7312-0-8" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.1655606" - id="feGaussianBlur7314-3-6" /> - </filter> - <radialGradient - r="17.67767" - fy="55.875111" - fx="176.77669" - cy="65.774605" - cx="177.4838" - gradientUnits="userSpaceOnUse" - id="radialGradient11009-5-8" - xlink:href="#linearGradient7290-1-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7290-1-6"> - <stop - id="stop7292-6-5" - offset="0" - style="stop-color:#dddddd;stop-opacity:1;" /> - <stop - id="stop7294-4-7" - offset="1" - style="stop-color:#a7a7a7;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" - gradientUnits="userSpaceOnUse" - id="linearGradient10892-0-8" - xlink:href="#linearGradient7394-5-3" - inkscape:collect="always" /> - <linearGradient - y2="15.75" - x2="71.75" - y1="112.25" - x1="71.75" - gradientTransform="translate(-12,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11007-3-1" - xlink:href="#linearGradient3586-6-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3586-6-5"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3588-5-4" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3590-9-6" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.4752" - width="1.9504" - y="-0.012310881" - height="1.0246218" - id="filter3598-2-5" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.495" - id="feGaussianBlur3600-0-1" /> - </filter> - <linearGradient - y2="116.8996" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10888-2-9" - xlink:href="#linearGradient7365-9-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7365-9-5"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7367-2-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7369-5-2" /> - </linearGradient> - <linearGradient - y2="60.866104" - x2="73.467186" - y1="60.866104" - x1="72.201843" - gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" - gradientUnits="userSpaceOnUse" - id="linearGradient10883-0-8" - xlink:href="#linearGradient3576-8-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3576-8-0"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3578-2-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3580-2-8" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" - gradientUnits="userSpaceOnUse" - id="radialGradient10880-7-3" - xlink:href="#linearGradient3399-1-8-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3399-1-8-1"> - <stop - style="stop-color:#00a8ba;stop-opacity:1;" - offset="0" - id="stop3401-5-6" /> - <stop - style="stop-color:#00a8ba;stop-opacity:0;" - offset="1" - id="stop3403-3-1" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" - gradientUnits="userSpaceOnUse" - id="radialGradient11005-5-6" - xlink:href="#linearGradient3399-1-8-1" - inkscape:collect="always" /> - <filter - inkscape:collect="always" - x="-0.4660736" - width="1.9321471" - y="-0.038034502" - height="1.076069" - id="filter3469-7-3" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.146978" - id="feGaussianBlur3471-5-9" /> - </filter> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" - gradientUnits="userSpaceOnUse" - id="radialGradient10876-0-7" - xlink:href="#linearGradient3483-4-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3483-4-8"> - <stop - id="stop3485-6-1" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop3487-2-6" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.82944" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" - gradientUnits="userSpaceOnUse" - id="radialGradient11003-8-6" - xlink:href="#linearGradient3483-4-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient14779"> - <stop - id="stop14781" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop14783" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.59694225" - width="2.1938846" - y="-0.074120946" - height="1.1482419" - id="filter4927-3-0" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.49701338" - id="feGaussianBlur4929-5-4" /> - </filter> - <radialGradient - r="26.75" - fy="-16.181448" - fx="60" - cy="-16.181448" - cx="60" - gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" - gradientUnits="userSpaceOnUse" - id="radialGradient10871-6-4" - xlink:href="#linearGradient7365-9-5" - inkscape:collect="always" /> - <linearGradient - y2="24.713068" - x2="60.428722" - y1="22.930367" - x1="60.428722" - gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" - gradientUnits="userSpaceOnUse" - id="linearGradient10867-7-9" - xlink:href="#linearGradient4878-5-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4878-5-4"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4880-1-5" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4882-6-6" /> - </linearGradient> - <filter - height="1.2056012" - y="-0.1028006" - width="1.1447796" - x="-0.072389819" - id="filter5346-0-8" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5348-2-1" - stdDeviation="3.0237831" - inkscape:collect="always" /> - </filter> - <filter - id="filter5214-8-1" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5216-2-2" - stdDeviation="0.94493222" - inkscape:collect="always" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5549-4-9-7" - id="linearGradient3381-7-4-2" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-302.8601,-193.7254)" - x1="-190.99445" - y1="75.382088" - x2="-190.99445" - y2="118.72548" /> - <linearGradient - id="linearGradient5549-4-9-7"> - <stop - style="stop-color:#cacaca;stop-opacity:1" - offset="0" - id="stop5551-6-8" /> - <stop - id="stop5553-1-5" - offset="0.61419845" - style="stop-color:#ebebeb;stop-opacity:1;" /> - <stop - style="stop-color:#cbcbcb;stop-opacity:1;" - offset="1" - id="stop5555-9-7" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5227-4-0" - id="radialGradient3383-8-4-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" - cx="-307.625" - cy="70.359375" - fx="-320.35294" - fy="87.258614" - r="50.125" /> - <linearGradient - id="linearGradient5227-4-0" - inkscape:collect="always"> - <stop - id="stop5229-1-7" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5231-4-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-8-5" - id="linearGradient3386-4-3" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient3604-8-5" - inkscape:collect="always"> - <stop - id="stop3606-9-4" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop3608-9-9" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <filter - id="filter3600-6-9" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3602-5-6" - stdDeviation="0.47186117" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-2-9" - id="radialGradient3388-1-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-322.72327" - cy="85.487053" - fx="-322.72327" - fy="85.487053" - r="18.133474" /> - <linearGradient - id="linearGradient5237-2-9" - inkscape:collect="always"> - <stop - id="stop5239-3-7" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.62162162" /> - <stop - id="stop5241-3-6" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <filter - height="1.2339463" - y="-0.11697313" - width="1.0979174" - x="-0.048958682" - id="filter5257-2-6" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5259-6-9" - stdDeviation="0.71942638" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-2-9" - id="radialGradient3390-0-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-317.63007" - cy="84.673492" - fx="-317.63007" - fy="84.673492" - r="18.133474" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5352-4-8" - id="linearGradient3392-6-1-0" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-377.3601,-71.225397)" - x1="-115.51489" - y1="-53.597103" - x2="-115.51489" - y2="-33.89423" /> - <linearGradient - id="linearGradient5352-4-8" - inkscape:collect="always"> - <stop - id="stop5354-5-7" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5356-4-7" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5267-8-7" - id="linearGradient3394-8-0-4" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-190.3601,-184.7254)" - x1="-296.75015" - y1="119.76865" - x2="-296.75015" - y2="92.064072" /> - <linearGradient - id="linearGradient5267-8-7" - inkscape:collect="always"> - <stop - id="stop5269-7-0" - offset="0" - style="stop-color:#050505;stop-opacity:1;" /> - <stop - id="stop5271-0-8" - offset="1" - style="stop-color:#050505;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-8-5" - id="linearGradient3396-0-9" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5406-1-5" - id="radialGradient3398-1-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" - cx="-107.83378" - cy="-43.067612" - fx="-107.83378" - fy="-43.067612" - r="12.374368" /> - <linearGradient - id="linearGradient5406-1-5" - inkscape:collect="always"> - <stop - id="stop5408-7-0" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5410-3-0" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <filter - height="1.9108608" - y="-0.45543039" - width="1.2504867" - x="-0.12524337" - id="filter5402-0-4" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5404-3-8" - stdDeviation="1.2915062" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-3-3" - id="radialGradient3400-9-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" - cx="-195.32214" - cy="133.89294" - fx="-195.32214" - fy="133.89294" - r="48.968639" /> - <linearGradient - id="linearGradient3653-4-3-3" - inkscape:collect="always"> - <stop - id="stop3655-7-2" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3657-3-5" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <filter - id="filter3649-2-8" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3651-7-8" - stdDeviation="0.53709441" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-3-3" - id="radialGradient3402-4-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" - cx="-195.32211" - cy="144.36551" - fx="-195.32211" - fy="144.36551" - r="48.968639" /> - <mask - id="mask5641-0-7" - maskUnits="userSpaceOnUse"> - <rect - y="-108.19437" - x="-548.99231" - height="26.352942" - width="100.99232" - id="rect5643-2-4" - style="fill:url(#radialGradient5645-7-6);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - r="50.496159" - fy="-97.979721" - fx="-498.49612" - cy="-97.979721" - cx="-498.49612" - gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" - gradientUnits="userSpaceOnUse" - id="radialGradient5645-7-6" - xlink:href="#linearGradient5631-3-2-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5631-3-2-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5633-5-2" /> - <stop - id="stop5639-2-3" - offset="0.30253538" - style="stop-color:#ffffff;stop-opacity:0.86666667;" /> - <stop - id="stop5637-7-5" - offset="0.70000011" - style="stop-color:#ffffff;stop-opacity:0.50980392;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5635-3-3" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5522-8-7" - id="radialGradient3404-2-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" - cx="-75.703278" - cy="119.10338" - fx="-75.703278" - fy="119.10338" - r="50.125" /> - <linearGradient - id="linearGradient5522-8-7"> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="0" - id="stop5524-9-2" /> - <stop - id="stop5526-9-4" - offset="0.52602422" - style="stop-color:#000000;stop-opacity:0.21428572;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop5528-2-6" /> - </linearGradient> - <filter - id="filter5178-9-8" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5180-7-2" - stdDeviation="0.42032926" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5114-1-6" - id="radialGradient3406-9-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" - cx="-75.711166" - cy="113.45824" - fx="-75.514481" - fy="99.224663" - r="50.125" /> - <linearGradient - id="linearGradient5114-1-6"> - <stop - id="stop5116-0-3" - offset="0" - style="stop-color:#000000;stop-opacity:0;" /> - <stop - style="stop-color:#000000;stop-opacity:0.21428572;" - offset="0.5" - id="stop5182-3-1" /> - <stop - id="stop5118-2-3" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5566-6-3" - id="linearGradient3408-7-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - x1="-190.20325" - y1="77.351906" - x2="-190.20325" - y2="102.10035" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5566-6-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5568-4-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5570-0-4" /> - </linearGradient> - <linearGradient - y2="15.411574" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10845-7-7" - xlink:href="#linearGradient7365-9-5" - inkscape:collect="always" /> - <radialGradient - r="94" - fy="-192.92754" - fx="-122.25" - cy="-192.92754" - cx="-122.25" - gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" - gradientUnits="userSpaceOnUse" - id="radialGradient10842-8-0" - xlink:href="#linearGradient3393-0-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3393-0-8"> - <stop - id="stop3395-2-4" - offset="0" - style="stop-color:#efefef;stop-opacity:1" /> - <stop - id="stop3397-0-1" - offset="1" - style="stop-color:#b8b8b8;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-228.88507" - x2="-100" - y1="-106.62158" - x1="-100" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10839-9-6" - xlink:href="#linearGradient3385-7-8-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3385-7-8-0"> - <stop - id="stop3387-0-8" - offset="0" - style="stop-color:#d6d6d6;stop-opacity:1;" /> - <stop - id="stop3389-3-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-208.05618" - x2="-80" - y1="-67.985718" - x1="-80" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10836-7-7" - xlink:href="#linearGradient3259-4-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3259-4-9"> - <stop - id="stop3261-0-5" - offset="0" - style="stop-color:#1f1f1f;stop-opacity:1;" /> - <stop - id="stop3263-9-2" - offset="1" - style="stop-color:#424242;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-275.16071" - x2="-127.61703" - y1="-310.29703" - x1="-127.61703" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" - gradientUnits="userSpaceOnUse" - id="linearGradient10833-1-4" - xlink:href="#linearGradient3303-2-3-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3303-2-3-8" - inkscape:collect="always"> - <stop - id="stop3305-5-3-7" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3307-4-9-3" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-166.52031" - fx="-120.37437" - cy="-150.6152" - cx="-120" - gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" - gradientUnits="userSpaceOnUse" - id="radialGradient10830-3-2" - xlink:href="#linearGradient3273-2-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3273-2-2" - inkscape:collect="always"> - <stop - id="stop3275-4-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3277-4-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-109.7959" - fx="-120" - cy="-109.7959" - cx="-120" - gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" - gradientUnits="userSpaceOnUse" - id="radialGradient10827-2-6" - xlink:href="#linearGradient3273-2-2" - inkscape:collect="always" /> - <linearGradient - y2="-124.49196" - x2="-11.793251" - y1="-0.17180708" - x1="-11.793251" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10823-3-8" - xlink:href="#linearGradient3427-6-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3427-6-7" - inkscape:collect="always"> - <stop - id="stop3429-2-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3431-8-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-158.88614" - x2="-90.485931" - y1="-60.000008" - x1="-132.38875" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10820-0-1" - xlink:href="#XMLID_18_-9-3" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="XMLID_18_-9-3"> - <stop - id="stop3354-6-5" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop3364-5-0" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <radialGradient - r="76" - fy="-120.68829" - fx="-526.78827" - cy="-120.68829" - cx="-526.78827" - gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" - gradientUnits="userSpaceOnUse" - id="radialGradient10817-1-9" - xlink:href="#XMLID_18_-9-3" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="linearGradient14951"> - <stop - id="stop14953" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop14955" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - y2="-141.69821" - x2="-474.70587" - y1="-349.57544" - x1="-519.00256" - gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" - gradientUnits="userSpaceOnUse" - id="linearGradient10814-3-4" - xlink:href="#linearGradient4376-3-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4376-3-3" - inkscape:collect="always"> - <stop - id="stop4378-3-7" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4380-7-9" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient11001-5-4" - xlink:href="#linearGradient4429-4-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4429-4-5"> - <stop - style="stop-color:#fff1c0;stop-opacity:1;" - offset="0" - id="stop4431-7-9" /> - <stop - style="stop-color:#fff1c0;stop-opacity:0;" - offset="1" - id="stop4433-7-4" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient8482-6" - xlink:href="#linearGradient4441-4-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4441-4-8"> - <stop - id="stop4443-1-4" - offset="0" - style="stop-color:#dbfaff;stop-opacity:1;" /> - <stop - id="stop4445-7-3" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="20.631315" - fy="138.73308" - fx="71.368683" - cy="138.73308" - cx="71.368683" - gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" - gradientUnits="userSpaceOnUse" - id="radialGradient11107-0" - xlink:href="#linearGradient3802-04" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3802-04"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3804-0" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3806-4" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.075877823" - width="1.1517557" - y="-0.78272969" - height="2.5654593" - id="filter3872-82" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.3045494" - id="feGaussianBlur3874-5" /> - </filter> - <linearGradient - y2="122.43194" - x2="91.105286" - y1="122.43194" - x1="50.458698" - gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10996-9" - xlink:href="#linearGradient4029-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4029-8"> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="0" - id="stop4031-3" /> - <stop - id="stop4033-99" - offset="0.5" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="1" - id="stop4035-52" /> - </linearGradient> - <linearGradient - y2="124.48643" - x2="93.409775" - y1="124.48643" - x1="50.394154" - gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10993-42" - xlink:href="#linearGradient3149-43" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3149-43"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3151-6" /> - <stop - id="stop3157-7" - offset="0.34797296" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.65930116" - id="stop4061-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3153-5" /> - </linearGradient> - <linearGradient - y2="477.52972" - x2="742.16382" - y1="477.52972" - x1="555.14642" - gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990-38" - xlink:href="#linearGradient3611-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3611-7"> - <stop - id="stop3613-8" - offset="0" - style="stop-color:#818584;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.5" - id="stop3615-65" /> - <stop - id="stop3617-40" - offset="1" - style="stop-color:#818584;stop-opacity:1;" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="406.23959" - fx="648.6554" - cy="390.69016" - cx="648.65527" - gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" - gradientUnits="userSpaceOnUse" - id="radialGradient10987-8" - xlink:href="#linearGradient3166-468" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3166-468"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168-0" /> - <stop - id="stop3518-4" - offset="0.5990991" - style="stop-color:#ffffff;stop-opacity:0.82206404;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3170-26" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="639.22247" - fx="648.65515" - cy="639.22247" - cx="648.65515" - gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" - gradientUnits="userSpaceOnUse" - id="radialGradient10984-62" - xlink:href="#linearGradient3176-15" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3176-15"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3178-5-1" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop3180-8" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient10981-9" - xlink:href="#linearGradient3722-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3722-6"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3724-0" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop3726-31" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient15004" - xlink:href="#linearGradient3722-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient15006"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop15008" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop15010" /> - </linearGradient> - <radialGradient - r="7.9898205" - fy="76.438904" - fx="55.989819" - cy="76.438904" - cx="55.989819" - gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" - gradientUnits="userSpaceOnUse" - id="radialGradient10977-73" - xlink:href="#linearGradient3872-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3872-4"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3874-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3876-6" /> - </linearGradient> - <linearGradient - y2="110.8287" - x2="73.38102" - y1="150.87357" - x1="73.38102" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10974-21" - xlink:href="#linearGradient3176-15" - inkscape:collect="always" /> - <linearGradient - id="linearGradient15017"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop15019" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop15021" /> - </linearGradient> - <radialGradient - r="20.5" - fy="116" - fx="72" - cy="116" - cx="72" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - gradientUnits="userSpaceOnUse" - id="radialGradient11105-6" - xlink:href="#linearGradient4949-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4949-8"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4951-9" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4953-2" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.013508443" - width="1.0270169" - y="-0.55384612" - height="2.1076922" - id="filter4997-0" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.23076923" - id="feGaussianBlur4999-9" /> - </filter> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientTransform="translate(1,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11103-7" - xlink:href="#linearGradient6064-67" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient6064-67"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6066-9" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6068-39" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.26761475" - width="1.5352294" - y="-0.062321238" - height="1.1246425" - id="filter6060-79" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.5675913" - id="feGaussianBlur6062-19" /> - </filter> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientUnits="userSpaceOnUse" - id="linearGradient11101-6" - xlink:href="#linearGradient6064-67" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-7" - id="radialGradient14198-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3978-7"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3980-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3982-0" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-7" - id="radialGradient15050" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - y2="15.908398" - x2="72.281242" - y1="58" - x1="70.316795" - gradientTransform="translate(102.53048,-57.275649)" - gradientUnits="userSpaceOnUse" - id="linearGradient11095-0" - xlink:href="#linearGradient7136-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7136-0"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7138-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7140-95" /> - </linearGradient> - <mask - maskUnits="userSpaceOnUse" - id="mask7160-85"> - <path - inkscape:connector-curvature="0" - id="path7162-4" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="fill:url(#radialGradient7164-29);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient7150-2" - id="radialGradient7164-29" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" - cx="162.46797" - cy="-0.23275588" - fx="162.46797" - fy="-0.23275588" - r="25.9375" /> - <linearGradient - id="linearGradient7150-2"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop7152-08" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop7154-53" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7348-9" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.8190732" - id="feGaussianBlur7350-4" /> - </filter> - <filter - inkscape:collect="always" - x="-0.14289699" - width="1.285794" - y="-0.089270152" - height="1.1785403" - id="filter7256-1" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="6.6685268" - id="feGaussianBlur7258-63" /> - </filter> - <filter - inkscape:collect="always" - id="filter7238-4" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.6674107" - id="feGaussianBlur7240-7" /> - </filter> - <linearGradient - gradientTransform="translate(2,927.73011)" - y2="18.691383" - x2="16.357016" - y1="92" - x1="36" - gradientUnits="userSpaceOnUse" - id="linearGradient10953-1" - xlink:href="#linearGradient4409-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4409-5"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4411-0" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4413-23" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4405-4" - x="-0.23281144" - width="1.4656229" - y="-0.048040453" - height="1.0960809" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.2610619" - id="feGaussianBlur4407-1" /> - </filter> - <linearGradient - y2="7.7186575" - x2="55.058228" - y1="-0.85672575" - x1="55.058228" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10950-0" - xlink:href="#linearGradient7354-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7354-7"> - <stop - style="stop-color:#929595;stop-opacity:1;" - offset="0" - id="stop7356-3" /> - <stop - style="stop-color:#929595;stop-opacity:0;" - offset="1" - id="stop7358-31" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" - gradientUnits="userSpaceOnUse" - id="linearGradient10947-2" - xlink:href="#linearGradient7394-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7394-8"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7396-9" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7398-8" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4648-4" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="4.6264466" - id="feGaussianBlur4650-1" /> - </filter> - <radialGradient - r="42.727272" - fy="44.909092" - fx="52.18182" - cy="44.909092" - cx="52.18182" - spreadMethod="reflect" - gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" - gradientUnits="userSpaceOnUse" - id="radialGradient11011-7" - xlink:href="#linearGradient3065-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3065-7"> - <stop - id="stop3067-5-37" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3073-28" /> - <stop - id="stop3069-66" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11013-0" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3167-4" - inkscape:collect="always"> - <stop - id="stop3169-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3171-63" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11015-2" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11017-45" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11019-6" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11021-7" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11023-18" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11025-0" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11027-8" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11029-1" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11031-5" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11033-1" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11035-6" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11037-3" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11039-0" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11041-4" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11043-0" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11045-3" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11047-3" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11049-7" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11051-9" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11053-2" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11055-9" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11057-7" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11059-07" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11061-9" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11063-66" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11065-6" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11067-91" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11069-2" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11071-4" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11073-79" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11075-7" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11077-7" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11079-1" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11081-6" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083-96" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11085-9" - xlink:href="#linearGradient3088-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3088-5"> - <stop - id="stop3090-4-2" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop3098-21" /> - <stop - id="stop3092-25" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11087-6" - xlink:href="#linearGradient3088-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient15358"> - <stop - id="stop15360" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop15362" /> - <stop - id="stop15364" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="47.937988" - fy="111.93269" - fx="69.801033" - cy="88.499367" - cx="60.097603" - gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" - gradientUnits="userSpaceOnUse" - id="radialGradient11089-9" - xlink:href="#linearGradient3954-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3954-6"> - <stop - style="stop-color:#b3b3b3;stop-opacity:1;" - offset="0" - id="stop3956-00" /> - <stop - id="stop3962-40" - offset="0.52879584" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#c5c5c5;stop-opacity:1;" - offset="1" - id="stop3958-7" /> - </linearGradient> - <linearGradient - y2="32.457832" - x2="76.596703" - y1="148.57518" - x1="17.723173" - gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" - gradientUnits="userSpaceOnUse" - id="linearGradient11091-3" - xlink:href="#linearGradient4860-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4860-8"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4862-5" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4864-1" /> - </linearGradient> - <radialGradient - r="50.234375" - fy="8.0446291" - fx="43.034355" - cy="42.699898" - cx="43.620941" - gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" - gradientUnits="userSpaceOnUse" - id="radialGradient11093-9" - xlink:href="#linearGradient4875-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4875-8"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4877-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4879-5" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7312-6" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.1655606" - id="feGaussianBlur7314-5" /> - </filter> - <radialGradient - r="17.67767" - fy="55.875111" - fx="176.77669" - cy="65.774605" - cx="177.4838" - gradientUnits="userSpaceOnUse" - id="radialGradient11009-2" - xlink:href="#linearGradient7290-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7290-3"> - <stop - id="stop7292-68" - offset="0" - style="stop-color:#dddddd;stop-opacity:1;" /> - <stop - id="stop7294-45" - offset="1" - style="stop-color:#a7a7a7;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" - gradientUnits="userSpaceOnUse" - id="linearGradient10892-01" - xlink:href="#linearGradient7394-8" - inkscape:collect="always" /> - <linearGradient - y2="15.75" - x2="71.75" - y1="112.25" - x1="71.75" - gradientTransform="translate(-12,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11007-72" - xlink:href="#linearGradient3586-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3586-4"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3588-17" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3590-20" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.4752" - width="1.9504" - y="-0.012310881" - height="1.0246218" - id="filter3598-6" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.495" - id="feGaussianBlur3600-22" /> - </filter> - <linearGradient - y2="116.8996" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10888-0" - xlink:href="#linearGradient7365-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7365-4"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7367-1" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7369-54" /> - </linearGradient> - <linearGradient - y2="60.866104" - x2="73.467186" - y1="60.866104" - x1="72.201843" - gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" - gradientUnits="userSpaceOnUse" - id="linearGradient10883-6" - xlink:href="#linearGradient3576-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3576-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3578-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3580-5" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" - gradientUnits="userSpaceOnUse" - id="radialGradient10880-2" - xlink:href="#linearGradient3399-1-83" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3399-1-83"> - <stop - style="stop-color:#00a8ba;stop-opacity:1;" - offset="0" - id="stop3401-9" /> - <stop - style="stop-color:#00a8ba;stop-opacity:0;" - offset="1" - id="stop3403-18" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" - gradientUnits="userSpaceOnUse" - id="radialGradient11005-6" - xlink:href="#linearGradient3399-1-83" - inkscape:collect="always" /> - <filter - inkscape:collect="always" - x="-0.4660736" - width="1.9321471" - y="-0.038034502" - height="1.076069" - id="filter3469-1" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.146978" - id="feGaussianBlur3471-51" /> - </filter> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" - gradientUnits="userSpaceOnUse" - id="radialGradient10876-18" - xlink:href="#linearGradient3483-03" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3483-03"> - <stop - id="stop3485-3" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop3487-1" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.82944" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" - gradientUnits="userSpaceOnUse" - id="radialGradient11003-3" - xlink:href="#linearGradient3483-03" - inkscape:collect="always" /> - <linearGradient - id="linearGradient15424"> - <stop - id="stop15426" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop15428" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.59694225" - width="2.1938846" - y="-0.074120946" - height="1.1482419" - id="filter4927-7" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.49701338" - id="feGaussianBlur4929-3" /> - </filter> - <radialGradient - r="26.75" - fy="-16.181448" - fx="60" - cy="-16.181448" - cx="60" - gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" - gradientUnits="userSpaceOnUse" - id="radialGradient10871-9" - xlink:href="#linearGradient7365-4" - inkscape:collect="always" /> - <linearGradient - y2="24.713068" - x2="60.428722" - y1="22.930367" - x1="60.428722" - gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" - gradientUnits="userSpaceOnUse" - id="linearGradient10867-2" - xlink:href="#linearGradient4878-51" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4878-51"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4880-8" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4882-66" /> - </linearGradient> - <filter - height="1.2056012" - y="-0.1028006" - width="1.1447796" - x="-0.072389819" - id="filter5346-3" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5348-4" - stdDeviation="3.0237831" - inkscape:collect="always" /> - </filter> - <filter - id="filter5214-5" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5216-6" - stdDeviation="0.94493222" - inkscape:collect="always" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5549-4-05" - id="linearGradient3381-7-1" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-302.8601,-193.7254)" - x1="-190.99445" - y1="75.382088" - x2="-190.99445" - y2="118.72548" /> - <linearGradient - id="linearGradient5549-4-05"> - <stop - style="stop-color:#cacaca;stop-opacity:1" - offset="0" - id="stop5551-69" /> - <stop - id="stop5553-65" - offset="0.61419845" - style="stop-color:#ebebeb;stop-opacity:1;" /> - <stop - style="stop-color:#cbcbcb;stop-opacity:1;" - offset="1" - id="stop5555-7" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5227-0" - id="radialGradient3383-8-72" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" - cx="-307.625" - cy="70.359375" - fx="-320.35294" - fy="87.258614" - r="50.125" /> - <linearGradient - id="linearGradient5227-0" - inkscape:collect="always"> - <stop - id="stop5229-90" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5231-0" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-1" - id="linearGradient3386-45" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient3604-1" - inkscape:collect="always"> - <stop - id="stop3606-7" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop3608-56" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <filter - id="filter3600-8" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3602-7" - stdDeviation="0.47186117" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-5" - id="radialGradient3388-19" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-322.72327" - cy="85.487053" - fx="-322.72327" - fy="85.487053" - r="18.133474" /> - <linearGradient - id="linearGradient5237-5" - inkscape:collect="always"> - <stop - id="stop5239-96" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.62162162" /> - <stop - id="stop5241-8" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <filter - height="1.2339463" - y="-0.11697313" - width="1.0979174" - x="-0.048958682" - id="filter5257-6" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5259-3" - stdDeviation="0.71942638" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-5" - id="radialGradient3390-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-317.63007" - cy="84.673492" - fx="-317.63007" - fy="84.673492" - r="18.133474" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5352-5" - id="linearGradient3392-6-7" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-377.3601,-71.225397)" - x1="-115.51489" - y1="-53.597103" - x2="-115.51489" - y2="-33.89423" /> - <linearGradient - id="linearGradient5352-5" - inkscape:collect="always"> - <stop - id="stop5354-0" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5356-45" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5267-25" - id="linearGradient3394-8-81" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-190.3601,-184.7254)" - x1="-296.75015" - y1="119.76865" - x2="-296.75015" - y2="92.064072" /> - <linearGradient - id="linearGradient5267-25" - inkscape:collect="always"> - <stop - id="stop5269-53" - offset="0" - style="stop-color:#050505;stop-opacity:1;" /> - <stop - id="stop5271-6" - offset="1" - style="stop-color:#050505;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-1" - id="linearGradient3396-5" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5406-3" - id="radialGradient3398-53" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" - cx="-107.83378" - cy="-43.067612" - fx="-107.83378" - fy="-43.067612" - r="12.374368" /> - <linearGradient - id="linearGradient5406-3" - inkscape:collect="always"> - <stop - id="stop5408-9" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5410-0" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <filter - height="1.9108608" - y="-0.45543039" - width="1.2504867" - x="-0.12524337" - id="filter5402-8" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5404-5" - stdDeviation="1.2915062" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-90" - id="radialGradient3400-15" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" - cx="-195.32214" - cy="133.89294" - fx="-195.32214" - fy="133.89294" - r="48.968639" /> - <linearGradient - id="linearGradient3653-4-90" - inkscape:collect="always"> - <stop - id="stop3655-2" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3657-8" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <filter - id="filter3649-8" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3651-1" - stdDeviation="0.53709441" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-90" - id="radialGradient3402-44" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" - cx="-195.32211" - cy="144.36551" - fx="-195.32211" - fy="144.36551" - r="48.968639" /> - <mask - id="mask5641-64" - maskUnits="userSpaceOnUse"> - <rect - y="-108.19437" - x="-548.99231" - height="26.352942" - width="100.99232" - id="rect5643-98" - style="fill:url(#radialGradient5645-0);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - r="50.496159" - fy="-97.979721" - fx="-498.49612" - cy="-97.979721" - cx="-498.49612" - gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" - gradientUnits="userSpaceOnUse" - id="radialGradient5645-0" - xlink:href="#linearGradient5631-3-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5631-3-4"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5633-61" /> - <stop - id="stop5639-93" - offset="0.30253538" - style="stop-color:#ffffff;stop-opacity:0.86666667;" /> - <stop - id="stop5637-6" - offset="0.70000011" - style="stop-color:#ffffff;stop-opacity:0.50980392;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5635-42" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5522-9" - id="radialGradient3404-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" - cx="-75.703278" - cy="119.10338" - fx="-75.703278" - fy="119.10338" - r="50.125" /> - <linearGradient - id="linearGradient5522-9"> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="0" - id="stop5524-5" /> - <stop - id="stop5526-8" - offset="0.52602422" - style="stop-color:#000000;stop-opacity:0.21428572;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop5528-8" /> - </linearGradient> - <filter - id="filter5178-7" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5180-6" - stdDeviation="0.42032926" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5114-8" - id="radialGradient3406-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" - cx="-75.711166" - cy="113.45824" - fx="-75.514481" - fy="99.224663" - r="50.125" /> - <linearGradient - id="linearGradient5114-8"> - <stop - id="stop5116-3" - offset="0" - style="stop-color:#000000;stop-opacity:0;" /> - <stop - style="stop-color:#000000;stop-opacity:0.21428572;" - offset="0.5" - id="stop5182-5" /> - <stop - id="stop5118-9" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5566-5" - id="linearGradient3408-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - x1="-190.20325" - y1="77.351906" - x2="-190.20325" - y2="102.10035" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5566-5"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5568-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5570-7" /> - </linearGradient> - <linearGradient - y2="15.411574" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10845-21" - xlink:href="#linearGradient7365-4" - inkscape:collect="always" /> - <radialGradient - r="94" - fy="-192.92754" - fx="-122.25" - cy="-192.92754" - cx="-122.25" - gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" - gradientUnits="userSpaceOnUse" - id="radialGradient10842-5" - xlink:href="#linearGradient3393-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3393-6"> - <stop - id="stop3395-1" - offset="0" - style="stop-color:#efefef;stop-opacity:1" /> - <stop - id="stop3397-5" - offset="1" - style="stop-color:#b8b8b8;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-228.88507" - x2="-100" - y1="-106.62158" - x1="-100" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10839-6" - xlink:href="#linearGradient3385-7-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3385-7-7"> - <stop - id="stop3387-1" - offset="0" - style="stop-color:#d6d6d6;stop-opacity:1;" /> - <stop - id="stop3389-9" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-208.05618" - x2="-80" - y1="-67.985718" - x1="-80" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10836-6" - xlink:href="#linearGradient3259-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3259-6"> - <stop - id="stop3261-72" - offset="0" - style="stop-color:#1f1f1f;stop-opacity:1;" /> - <stop - id="stop3263-8" - offset="1" - style="stop-color:#424242;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-275.16071" - x2="-127.61703" - y1="-310.29703" - x1="-127.61703" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" - gradientUnits="userSpaceOnUse" - id="linearGradient10833-02" - xlink:href="#linearGradient3303-2-39" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3303-2-39" - inkscape:collect="always"> - <stop - id="stop3305-5-2" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3307-4-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-166.52031" - fx="-120.37437" - cy="-150.6152" - cx="-120" - gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" - gradientUnits="userSpaceOnUse" - id="radialGradient10830-78" - xlink:href="#linearGradient3273-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3273-9" - inkscape:collect="always"> - <stop - id="stop3275-1" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3277-5" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-109.7959" - fx="-120" - cy="-109.7959" - cx="-120" - gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" - gradientUnits="userSpaceOnUse" - id="radialGradient10827-0" - xlink:href="#linearGradient3273-9" - inkscape:collect="always" /> - <linearGradient - y2="-124.49196" - x2="-11.793251" - y1="-0.17180708" - x1="-11.793251" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10823-9" - xlink:href="#linearGradient3427-10" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3427-10" - inkscape:collect="always"> - <stop - id="stop3429-85" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3431-15" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-158.88614" - x2="-90.485931" - y1="-60.000008" - x1="-132.38875" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10820-1" - xlink:href="#XMLID_18_-40" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="XMLID_18_-40"> - <stop - id="stop3354-9" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop3364-4" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <radialGradient - r="76" - fy="-120.68829" - fx="-526.78827" - cy="-120.68829" - cx="-526.78827" - gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" - gradientUnits="userSpaceOnUse" - id="radialGradient10817-3" - xlink:href="#XMLID_18_-40" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="linearGradient15596"> - <stop - id="stop15598" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop15600" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - y2="-141.69821" - x2="-474.70587" - y1="-349.57544" - x1="-519.00256" - gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" - gradientUnits="userSpaceOnUse" - id="linearGradient10814-029" - xlink:href="#linearGradient4376-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4376-7" - inkscape:collect="always"> - <stop - id="stop4378-5" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4380-0" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient11001-97" - xlink:href="#linearGradient4429-30" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4429-30"> - <stop - style="stop-color:#fff1c0;stop-opacity:1;" - offset="0" - id="stop4431-1" /> - <stop - style="stop-color:#fff1c0;stop-opacity:0;" - offset="1" - id="stop4433-6" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient10999-8" - xlink:href="#linearGradient4441-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4441-2"> - <stop - id="stop4443-8" - offset="0" - style="stop-color:#dbfaff;stop-opacity:1;" /> - <stop - id="stop4445-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient15880" - xlink:href="#linearGradient4441-2" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-5-3" - id="radialGradient44595" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-7" - id="radialGradient44597" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-57" - id="radialGradient44599" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-5" - id="radialGradient44601" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978" - id="radialGradient44603" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.49497475" - inkscape:cx="128.32708" - inkscape:cy="565.24024" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1366" - inkscape:window-height="745" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-308.2677)"> - <g - transform="translate(351.53714,-555.65156)" - id="layer1-6" - inkscape:label="Camada 1"> - <rect - transform="matrix(0.7755201,0,0,1.4537453,-24.041606,856.9683)" - ry="0.51796591" - rx="0.26239562" - y="120" - x="38.73737" - height="4" - width="41.26263" - id="rect3800" - style="opacity:0.73260073;fill:url(#radialGradient11107);fill-opacity:1;stroke:none;filter:url(#filter3872)" /> - <path - sodipodi:nodetypes="ccccssccc" - id="rect3570" - d="m 10.196797,1029.5867 23.606406,0 c 0.109026,0 0.196797,0.086 0.196797,0.1923 l 0,5.7472 c 0,0.1066 -0.09002,0.1704 -0.196797,0.1924 -5.185241,1.0645 -18.154888,1.4166 -23.606406,0 C 10.091311,1035.6911 10,1035.6328 10,1035.5262 l 0,-5.7472 c 0,-0.1065 0.08777,-0.1923 0.196797,-0.1923 z" - style="fill:url(#linearGradient10996);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccc" - id="rect4022" - d="m 12.168776,1029.5867 c -0.09079,0 -0.168776,0.083 -0.168776,0.1898 l 0,5.7401 c 0,0.1066 0.07798,0.2135 0.168776,0.2135 l 3.888187,0 0,-6.1434 -3.888187,0 z m 13.84135,0 0,6.1434 5.821098,0 c 0.09079,0 0.168776,-0.1069 0.168776,-0.2135 l 0,-5.7401 c 0,-0.1066 -0.07798,-0.1898 -0.168776,-0.1898 l -5.821098,0 z" - style="fill:url(#linearGradient10993);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.7237271" - rx="1.7851298" - y="951.72955" - x="2.0005379" - height="80.001083" - width="39.996975" - id="rect2175" - style="fill:url(#linearGradient10990);fill-opacity:1;stroke:none" /> - <rect - style="opacity:0.70695974;fill:url(#radialGradient10987);fill-opacity:1;stroke:none" - id="rect3164" - width="39.996975" - height="80.001083" - x="2.0005379" - y="951.72955" - rx="1.7155496" - ry="1.6565403" /> - <rect - style="fill:url(#radialGradient10984);fill-opacity:1;stroke:none" - id="rect3174" - width="39.996975" - height="33.089149" - x="2.0005379" - y="998.62677" - rx="1.6431732" - ry="1.3948433" /> - <text - transform="scale(0.99108136,1.0089989)" - id="text3658" - y="1013.8896" - x="7.6162062" - style="font-size:1.91842496px;font-style:normal;font-weight:bold;fill:url(#linearGradient10981);fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" - xml:space="preserve"><tspan - style="fill:url(#linearGradient10981);fill-opacity:1" - y="1013.8896" - x="7.6162062" - id="tspan3660" - sodipodi:role="line">OXYGEN</tspan></text> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.3854" - x="13.428246" - height="0.6053918" - width="11.413166" - id="rect3870" - style="opacity:0.73260073;fill:url(#radialGradient10977);fill-opacity:1;stroke:none" /> - <rect - ry="1.6160318" - rx="1.6160318" - y="1011.7048" - x="2.0005379" - height="20.011065" - width="39.996975" - id="rect4018" - style="fill:url(#linearGradient10974);fill-opacity:1;stroke:none" /> - <rect - transform="matrix(0,1,-1,0,0,0)" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" - id="rect7275" - width="0.2382233" - height="18.519377" - x="1012.42" - y="-41.999535" /> - <path - transform="matrix(0.7968167,0,0,0.6896645,-35.37178,948.26401)" - id="path4947" - d="m 52,118.9 40,0" - style="opacity:0.63003666;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient11105);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4997)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="cccc" - id="path5021" - d="M 85.933333,5.8497359 C 85.266404,34.586754 87.338901,93.798793 83.459589,114.50486 69.128393,112.87262 68.975828,41.187138 72.111111,5.5042329 l 13.822222,0.345503 z" - style="opacity:0.60439561;fill:url(#linearGradient11103);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(-0.7142317,0,0,0.6896645,65.083446,948.97091)" - style="opacity:0.76190479;fill:url(#linearGradient11101);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060)" - d="M 85.733333,5.7497359 C 85.066404,34.486754 84.984404,99.894031 82.459589,114.50486 66.698764,114.86601 77.87361,31.982082 71.111111,5.5042329 l 14.622222,0.245503 z" - id="path6072" - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" /> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.1423" - x="2.297204" - height="1.9007041" - width="10.992223" - id="rect3976" - style="opacity:0.73260073;fill:url(#radialGradient44603);fill-opacity:1;stroke:none" /> - <path - sodipodi:nodetypes="ccccccccc" - id="path3489" - d="m 2.0119272,957.29764 0,0.46099 L 13,957.73011 l 0,42.99999 -11,0 0.014258,0.3494 11.398186,0 0,-43.78186 -11.4005166,0 z" - style="fill:#3e3e3e;fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <use - x="0" - y="0" - xlink:href="#rect3976" - id="use7065" - transform="matrix(0,3.9486526,-0.5779271,0,593.11395,948.91009)" - width="128" - height="128" /> - <path - transform="matrix(0.686221,0,0,0.7025015,-89.189728,989.64483)" - mask="url(#mask7160)" - id="rect7115" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467362 -0.84375,1.03125 l 0,50.43749973 c 4.94936,0.59011697 10.01102,0.90624997 15.15625,0.90624997 12.91618,0 25.27421,-1.915556 36.71875,-5.4375 l 0,-45.9062497 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="opacity:0.28937731;fill:url(#linearGradient11095);fill-opacity:1;stroke:none;filter:url(#filter7348)" - inkscape:connector-curvature="0" /> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,33.868415,978.72071)" - id="g7260"> - <path - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256)" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7242" - inkscape:connector-curvature="0" /> - <path - id="path7188" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238)" - inkscape:connector-curvature="0" /> - <path - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7180" - inkscape:connector-curvature="0" /> - </g> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,32.340621,978.72071)" - id="g7265"> - <path - id="path7267" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256)" - inkscape:connector-curvature="0" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238)" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7269" - inkscape:connector-curvature="0" /> - <path - id="path7271" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <path - sodipodi:nodetypes="cccc" - id="path4351" - d="m 29,952.73011 0,56.99999 c 0.05534,2.4723 1.203156,4.3984 5,5 l 7,0" - style="fill:none;stroke:url(#linearGradient10953);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4405)" - inkscape:connector-curvature="0" /> - <rect - ry="1.6565403" - rx="1.7155496" - y="951.72955" - x="2.0005379" - height="16.551949" - width="39.996975" - id="rect7352" - style="fill:url(#linearGradient10950);fill-opacity:1;stroke:none" /> - <rect - ry="0" - rx="0" - y="951.7348" - x="18.964886" - height="74.995308" - width="3.0351143" - id="rect7392" - style="opacity:0.20879122;fill:url(#linearGradient10947);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.04732946,0,0,0.04570148,37.211866,1014.3973)" - id="g4652"> - <path - transform="matrix(0.950204,0,0,-0.9781022,-140.58731,145.38383)" - inkscape:r_cy="true" - inkscape:r_cx="true" - d="m 127.31551,65.540108 c 0,34.873682 -28.270709,63.144382 -63.14439,63.144382 -34.873682,0 -63.1443866,-28.2707 -63.1443866,-63.144382 0,-34.873682 28.2707046,-63.1443866 63.1443866,-63.1443866 34.873681,0 63.14439,28.2707046 63.14439,63.1443866 z" - sodipodi:ry="63.144386" - sodipodi:rx="63.144386" - sodipodi:cy="65.540108" - sodipodi:cx="64.17112" - id="path4887" - style="opacity:0.9157509;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4648)" - sodipodi:type="arc" /> - <g - id="g4542" - transform="translate(-142.96868,16.982986)"> - <g - transform="matrix(1.034003,0,0,1.034003,-3.571961,-1.953362)" - id="g3443"> - <path - sodipodi:type="arc" - style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path1315" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.727272" - sodipodi:ry="42.727272" - d="m 94.909092,44.909092 c 0,23.597621 -19.129651,42.727272 -42.727272,42.727272 -23.597621,0 -42.7272721,-19.129651 -42.7272721,-42.727272 0,-23.597621 19.1296511,-42.7272721 42.7272721,-42.7272721 23.597621,0 42.727272,19.1296511 42.727272,42.7272721 z" - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" /> - <path - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path2190" - style="opacity:0.11885244;fill:url(#radialGradient11011);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <g - id="g3357" - style="opacity:0.57786889"> - <path - id="path3138" - d="m 18.32319,89.008621 c 0.08929,0.161616 0.195172,0.304391 0.286126,0.464954 -0.09422,-0.152925 -0.19341,-0.311012 -0.286126,-0.464954 z m 91.41715,0 c -0.0927,0.153942 -0.1919,0.312029 -0.28612,0.464954 0.091,-0.160563 0.19683,-0.303338 0.28612,-0.464954 z m -90.987961,0.786846 c 9.012499,15.667623 25.919,26.216263 45.279382,26.216263 19.360383,0 36.266889,-10.54864 45.279399,-26.216263 -9.425234,15.074563 -26.202555,25.071753 -45.279399,25.071753 -19.076844,0 -35.854164,-9.99719 -45.279382,-25.071753 z" - style="fill:url(#linearGradient11013);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11015);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 21.546815,86.902153 c 0.08342,0.150981 0.182328,0.28436 0.267297,0.434357 -0.08802,-0.142862 -0.180682,-0.290546 -0.267297,-0.434357 z m 85.401185,0 c -0.0866,0.143811 -0.17929,0.291495 -0.2673,0.434357 0.085,-0.149997 0.18388,-0.283376 0.2673,-0.434357 z m -85.00024,0.735065 c 8.419408,14.636582 24.213332,24.491032 42.299653,24.491032 18.086322,0 33.880242,-9.85445 42.299647,-24.491032 -8.804957,14.082532 -24.478205,23.421842 -42.299647,23.421842 -17.821442,0 -33.494685,-9.33931 -42.299653,-23.421842 z" - id="path3143" - inkscape:connector-curvature="0" /> - <path - id="path3145" - d="m 24.78966,84.242991 c 0.07668,0.138787 0.167604,0.261396 0.245712,0.399281 -0.08091,-0.131326 -0.166091,-0.267083 -0.245712,-0.399281 z m 78.5047,0 c -0.0796,0.132198 -0.1648,0.267955 -0.24572,0.399281 0.0781,-0.137885 0.16904,-0.260494 0.24572,-0.399281 z m -78.136133,0.675706 c 7.739507,13.454618 22.258007,22.513283 38.883784,22.513283 16.625777,0 31.144276,-9.058666 38.883779,-22.513283 -8.093927,12.945319 -22.501492,21.530433 -38.883779,21.530433 -16.382289,0 -30.789854,-8.585114 -38.883784,-21.530433 z" - style="fill:url(#linearGradient11017);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11019);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 28.398565,82.501092 c 0.06954,0.125862 0.151993,0.23705 0.222826,0.362091 -0.07337,-0.119094 -0.150621,-0.242206 -0.222826,-0.362091 z m 71.192615,0 c -0.07221,0.119885 -0.14946,0.242997 -0.222835,0.362091 0.07084,-0.125041 0.153293,-0.236229 0.222835,-0.362091 z m -70.858377,0.612769 c 7.018633,12.201428 20.184848,20.416349 35.262068,20.416349 15.077217,0 28.243433,-8.214922 35.262067,-20.416349 -7.340046,11.739565 -20.405662,19.525049 -35.262067,19.525049 -14.856408,0 -27.922024,-7.785484 -35.262068,-19.525049 z" - id="path3147" - inkscape:connector-curvature="0" /> - <path - id="path3149" - d="m 32.581299,80.504353 c 0.06169,0.11165 0.134832,0.210283 0.197666,0.321206 -0.06509,-0.105646 -0.133615,-0.214858 -0.197666,-0.321206 z m 63.154077,0 c -0.06405,0.106348 -0.132583,0.21556 -0.197673,0.321206 0.06284,-0.110923 0.135981,-0.209556 0.197673,-0.321206 z m -62.857579,0.543579 c 6.226141,10.823734 17.905727,18.111084 31.280539,18.111084 13.37481,0 25.054396,-7.287351 31.280538,-18.111084 -6.511262,10.414022 -18.101606,17.320425 -31.280538,17.320425 -13.178933,0 -24.769278,-6.906403 -31.280539,-17.320425 z" - style="fill:url(#linearGradient11021);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11023);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 35.859703,78.248887 c 0.05528,0.09552 0.120825,0.179894 0.177132,0.274788 -0.05833,-0.09038 -0.119734,-0.183809 -0.177132,-0.274788 z m 56.593697,0 c -0.0574,0.09098 -0.11881,0.184409 -0.177139,0.274788 0.05631,-0.09489 0.121856,-0.179272 0.177139,-0.274788 z m -56.327998,0.465024 c 5.579375,9.259547 16.045697,15.493769 28.031148,15.493769 11.98545,0 22.451772,-6.234223 28.031148,-15.493769 -5.834879,8.909044 -16.221229,14.817372 -28.031148,14.817372 -11.809919,0 -22.196271,-5.908328 -28.031148,-14.817372 z" - id="path3151" - inkscape:connector-curvature="0" /> - <path - id="path3153" - d="m 39.510842,76.25898 c 0.04873,0.07843 0.106509,0.147722 0.156144,0.225645 -0.05141,-0.07422 -0.105548,-0.150937 -0.156144,-0.225645 z m 49.888034,0 c -0.0506,0.07471 -0.104733,0.151429 -0.15615,0.225645 0.04964,-0.07792 0.107418,-0.14721 0.15615,-0.225645 z m -49.653817,0.381861 c 4.918287,7.603605 14.144477,12.722922 24.709799,12.722922 10.56532,0 19.79151,-5.119317 24.709798,-12.722922 -5.143517,7.315785 -14.299211,12.16749 -24.709798,12.16749 -10.410587,0 -19.566283,-4.851705 -24.709799,-12.16749 z" - style="fill:url(#linearGradient11025);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11027);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 43.011934,73.358075 c 0.04189,0.07264 0.09156,0.1368 0.134228,0.208962 -0.0442,-0.06873 -0.09073,-0.139778 -0.134228,-0.208962 z m 42.88585,0 c -0.0435,0.06918 -0.09003,0.140234 -0.134233,0.208962 0.04267,-0.07216 0.09234,-0.136327 0.134233,-0.208962 z m -42.684507,0.353628 c 4.227966,7.041427 12.159186,11.782245 21.241581,11.782245 9.082393,0 17.013613,-4.740818 21.24158,-11.782245 -4.421583,6.774887 -12.292202,11.267879 -21.24158,11.267879 -8.949378,0 -16.819999,-4.492992 -21.241581,-11.267879 z" - id="path3157" - inkscape:connector-curvature="0" /> - <path - id="path3159" - d="m 46.613057,70.957326 c 0.03495,0.0624 0.0764,0.117528 0.111999,0.179523 -0.03688,-0.05904 -0.07571,-0.120085 -0.111999,-0.179523 z m 35.783635,0 c -0.03629,0.05944 -0.07512,0.120478 -0.112003,0.179523 0.0356,-0.06199 0.07705,-0.117121 0.112003,-0.179523 z m -35.615636,0.303809 c 3.527784,6.049434 10.145535,10.122367 17.723817,10.122367 7.578282,0 14.196033,-4.072933 17.723817,-10.122367 -3.689336,5.820444 -10.256522,9.680464 -17.723817,9.680464 -7.467294,0 -14.034482,-3.86002 -17.723817,-9.680464 z" - style="fill:url(#linearGradient11029);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11031);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 49.814056,68.456546 c 0.02792,0.05546 0.06102,0.104447 0.08946,0.159541 -0.02946,-0.05247 -0.06047,-0.106718 -0.08946,-0.159541 z m 28.581388,0 c -0.02899,0.05282 -0.06,0.107068 -0.08946,0.159541 0.02844,-0.05509 0.06154,-0.104085 0.08946,-0.159541 z M 49.948241,68.72654 c 2.81774,5.376095 8.103523,8.995687 14.156508,8.995687 6.052985,0 11.338768,-3.619592 14.156507,-8.995687 -2.946775,5.172593 -8.19217,8.602971 -14.156507,8.602971 -5.964336,0 -11.209733,-3.430378 -14.156508,-8.602971 z" - id="path3161" - inkscape:connector-curvature="0" /> - <path - id="path3163" - d="m 57.016302,64.055173 c 0.01453,0.02803 0.03176,0.05278 0.04656,0.08063 -0.01533,-0.02652 -0.03148,-0.05393 -0.04656,-0.08063 z m 14.877113,0 c -0.01509,0.02669 -0.03123,0.05411 -0.04657,0.08063 0.0148,-0.02784 0.03203,-0.0526 0.04657,-0.08063 z m -14.807268,0.136444 c 1.466683,2.716869 4.218026,4.54607 7.368711,4.54607 3.150685,0 5.902027,-1.829201 7.36871,-4.54607 -1.533848,2.614028 -4.264168,4.347606 -7.36871,4.347606 -3.104542,0 -5.834862,-1.733578 -7.368711,-4.347606 z" - style="fill:url(#linearGradient11033);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11035);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 53.315147,66.555953 c 0.02127,0.04103 0.0465,0.07727 0.06817,0.118032 -0.02245,-0.03882 -0.04608,-0.07895 -0.06817,-0.118032 z m 21.779266,0 c -0.02209,0.03908 -0.04572,0.07921 -0.06817,0.118032 0.02167,-0.04076 0.0469,-0.077 0.06817,-0.118032 z m -21.677017,0.199746 c 2.147143,3.977346 6.174956,6.655194 10.787383,6.655194 4.612428,0 8.64024,-2.677848 10.787382,-6.655194 -2.245468,3.826792 -6.242505,6.364654 -10.787382,6.364654 -4.544877,0 -8.541913,-2.537862 -10.787383,-6.364654 z" - id="path3165" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3293" - style="opacity:0.28688528"> - <path - style="opacity:0.73360656;fill:url(#linearGradient11037);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - id="path3197" - inkscape:connector-curvature="0" /> - <path - id="path3199" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - style="opacity:0.73360656;fill:url(#linearGradient11039);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11041);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - id="path3201" - inkscape:connector-curvature="0" /> - <path - id="path3203" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - style="opacity:0.73360656;fill:url(#linearGradient11043);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11045);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - id="path3205" - inkscape:connector-curvature="0" /> - <path - id="path3207" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - style="opacity:0.73360656;fill:url(#linearGradient11047);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11049);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - id="path3209" - inkscape:connector-curvature="0" /> - <path - id="path3211" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - style="opacity:0.73360656;fill:url(#linearGradient11051);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11053);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - id="path3213" - inkscape:connector-curvature="0" /> - <path - id="path3215" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - style="opacity:0.73360656;fill:url(#linearGradient11055);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11057);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - id="path3217" - inkscape:connector-curvature="0" /> - <path - id="path3219" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - style="opacity:0.73360656;fill:url(#linearGradient11059);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3307" - transform="translate(-0.565862,0.282931)" - style="opacity:0.28688528"> - <path - id="path3309" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - style="opacity:0.73360656;fill:url(#linearGradient11061);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11063);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - id="path3311" - inkscape:connector-curvature="0" /> - <path - id="path3313" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - style="opacity:0.73360656;fill:url(#linearGradient11065);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11067);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - id="path3315" - inkscape:connector-curvature="0" /> - <path - id="path3317" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - style="opacity:0.73360656;fill:url(#linearGradient11069);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11071);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - id="path3319" - inkscape:connector-curvature="0" /> - <path - id="path3321" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - style="opacity:0.73360656;fill:url(#linearGradient11073);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11075);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - id="path3323" - inkscape:connector-curvature="0" /> - <path - id="path3325" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - style="opacity:0.73360656;fill:url(#linearGradient11077);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11079);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - id="path3327" - inkscape:connector-curvature="0" /> - <path - id="path3329" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - style="opacity:0.73360656;fill:url(#linearGradient11081);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11083);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - id="path3331" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(1.400964,0,0,1.400964,-10.24782,-2.576398)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path3086" - style="opacity:0.15983605;fill:url(#radialGradient11085);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:0.19672134;fill:url(#radialGradient11087);fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path3100" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.988293" - sodipodi:ry="42.988293" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - transform="matrix(-1.400964,0,0,1.400964,135.9619,-2.576398)" /> - <path - id="path3570" - d="m 40.9375,19.34375 c -1.378982,0.08425 -2.721284,0.544956 -3.875,1.3125 -5.160376,3.349464 -9.759998,7.797045 -13.40625,13.1875 -7.292501,10.780907 -9.542508,23.591287 -7.25,35.46875 2.292507,11.877459 9.156596,22.92625 19.9375,30.21875 10.780909,7.2925 23.591285,9.54251 35.46875,7.25 11.877462,-2.29251 22.957499,-9.156596 30.25,-19.9375 7.2925,-10.780908 9.5425,-23.591289 7.25,-35.46875 C 107.01999,39.497538 100.1559,28.448751 89.375,21.15625 85.785149,18.722745 80.902255,19.660149 78.46875,23.25 c -2.433505,3.589851 -1.496101,8.472745 2.09375,10.90625 7.265039,4.914273 11.806943,12.22532 13.34375,20.1875 1.536801,7.962181 0.07052,16.45371 -4.84375,23.71875 C 84.148228,85.327539 76.80593,89.838193 68.84375,91.375 60.881568,92.911807 52.390041,91.445523 45.125,86.53125 37.859968,81.616982 33.349307,74.305937 31.8125,66.34375 30.275694,58.381572 31.741981,49.890035 36.65625,42.625 c 2.457137,-3.632522 5.528356,-6.579432 8.96875,-8.8125 2.968319,-1.884093 4.32342,-5.507692 3.3125,-8.875 -1.01092,-3.367307 -4.141021,-5.656122 -7.65625,-5.59375 -0.117417,0.0019 -0.226887,-0.0071 -0.34375,0 z m 21.4375,21 c -1.937828,0.12532 -3.767515,0.973547 -5.125,2.375 -1.447987,1.494885 -2.253965,3.512862 -2.21875,5.59375 -10e-7,1.266966 0,24.0625 0,24.0625 -0.137593,2.885743 1.33379,5.609689 3.8125,7.09375 2.478711,1.484059 5.55254,1.484061 8.03125,0 2.478713,-1.484063 3.950093,-4.208007 3.8125,-7.09375 0,0 -10e-7,-22.795621 0,-24.0625 0.0358,-2.118777 -0.785781,-4.154894 -2.28125,-5.65625 -1.495467,-1.501357 -3.537348,-2.339972 -5.65625,-2.3125 -0.13006,0.0019 -0.245811,-0.0084 -0.375,0 z" - style="fill:url(#radialGradient11089);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:4" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4855" - d="M 89.052758,110.33731 C 115.83808,95.818903 126.60843,63.173429 113.08007,36.784006 c -3.14854,-6.141789 -7.35212,-11.402152 -12.28011,-15.71269 4.52788,4.044347 8.37165,8.938861 11.28913,14.629954 13.10314,25.559983 2.28328,57.263399 -24.150142,70.76265 -26.43342,13.49924 -58.52431,3.70984 -71.62745,-21.850166 C 3.2083579,59.053773 14.028228,27.350338 40.461648,13.851101 52.955568,7.4706054 66.709008,6.3080926 79.127588,9.5390554 65.940318,5.9457846 51.268668,7.0675156 37.954728,13.86679 10.230318,28.025312 -1.1178821,61.276793 12.625218,88.085107 c 13.74309,26.808323 47.40094,37.075733 75.12534,22.917223 0.4332,-0.22125 0.87703,-0.43458 1.3022,-0.66502 z M 80.055218,9.7786728 c -0.30005,-0.087287 -0.59939,-0.1708794 -0.90105,-0.2531907 0.3006,0.07834 0.60207,0.1696947 0.90105,0.2531907 z" - style="fill:url(#linearGradient11091);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4868" - d="M 60.886675,3.5011061 C 30.994595,4.4513813 7.0114547,29.083452 7.0114647,59.284292 c 0,15.796568 6.5792803,30.076913 17.1118103,40.23189 C 60.218215,87.621632 71.214115,42.093571 109.07913,28.465026 99.107975,13.412218 82.025115,3.5011061 62.664525,3.5011061 c -0.60001,0 -1.18239,-0.018932 -1.77785,0 z" - style="opacity:0.57674417;fill:url(#radialGradient11093);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.7399)" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" - sodipodi:ry="17.67767" - sodipodi:rx="17.67767" - sodipodi:cy="65.774605" - sodipodi:cx="177.4838" - id="path7278" - style="opacity:0.54945056;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7312)" - sodipodi:type="arc" /> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.5922)" - sodipodi:type="arc" - style="fill:url(#radialGradient11009);fill-opacity:1;stroke:none" - id="path7280" - sodipodi:cx="177.4838" - sodipodi:cy="65.774605" - sodipodi:rx="17.67767" - sodipodi:ry="17.67767" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" /> - <rect - transform="scale(-1,1)" - style="opacity:0.29304026;fill:url(#linearGradient10892);fill-opacity:1;stroke:none" - id="rect7402" - width="2.6215534" - height="74.980072" - x="-25.621553" - y="951.75006" - rx="0" - ry="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - id="path3584" - d="m 62,112 -2,0 0,-96" - style="fill:none;stroke:url(#linearGradient11007);stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3598)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsscsc" - id="rect7363" - d="m 3.9884152,952.73011 36.3115848,0 c 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - style="opacity:0.56306308;fill:url(#linearGradient10888);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="0.16450633" - rx="0.25630134" - y="955.68286" - x="22.000366" - height="70.530472" - width="1.4270998" - id="rect3186" - style="fill:#000000;fill-opacity:1;stroke:none" /> - <rect - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3572" - width="1.4270998" - height="70.530472" - x="22.000366" - y="955.68286" - rx="0.25630134" - ry="0.16450633" /> - <rect - ry="0.16450633" - rx="0.11117215" - y="954.7301" - x="22.399998" - height="70.530472" - width="0.61901248" - id="rect3574" - style="opacity:0.71794876;fill:url(#linearGradient10883);fill-opacity:1;stroke:none" /> - <path - id="rect3394" - d="m 22.000285,962.77201 0,8.26816 1.427204,0 0,-8.26816 -1.427204,0 z" - style="fill:url(#radialGradient10880);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.4837111,0,0,0.1142406,-289.45421,930.01349)" - style="opacity:0.46520146;fill:url(#radialGradient11005);fill-opacity:1;stroke:none;filter:url(#filter3469)" - d="m 642.40625,286.75 0,72.375 5.90625,0 0,-72.375 -5.90625,0 z" - id="path3407" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient10876);fill-opacity:1;stroke:none" - d="m 22.000285,1020.5549 0,6.2712 1.427204,0 0,-6.2712 -1.427204,0 z" - id="path4287" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="ccccc" - id="path4787" - d="m 59.301763,96.79545 -4.52e-4,15.95387 3.500264,0 L 62.7,96.79545 l -3.398237,0 z" - style="opacity:0.54945056;fill:url(#radialGradient11003);fill-opacity:1;stroke:none;filter:url(#filter4927)" - inkscape:connector-curvature="0" /> - <rect - y="951.72955" - x="22.015116" - height="6.0287628" - width="0.54780781" - id="rect7273" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" /> - <path - style="opacity:0.47985349;fill:url(#radialGradient10871);fill-opacity:1;stroke:none" - d="m 4.1483093,1030.7925 35.7115847,0 c 0.692448,0 1.249906,-0.2307 1.249906,-0.5173 -11.979557,-4.1048 -26.09051,-3.5144 -38.2113962,0 0,0.2866 0.5574578,0.5173 1.2499055,0.5173 z" - id="path7406" - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" /> - <g - id="Livello_1" - transform="matrix(0.5,0,0,0.5,190,942.59711)" /> - <rect - ry="1.6761006" - rx="1.6761006" - y="951.7301" - x="2" - height="4" - width="40.000008" - id="rect4876" - style="opacity:0.65315312;fill:url(#linearGradient10867);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.6010762,0,0,0.6010762,374.33595,1083.6037)" - id="g5647"> - <path - style="opacity:0.481982;fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5346)" - d="m -498,-139.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.311808 -10.96875,3.718748 -11.9257,1.21541 -23.53125,7.587115 -23.53125,13.687495 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687495 -3.99292,-0.40694 -9.15288,-1.293738 -10.96875,-3.718748 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-139.31937 z" - id="path5328" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5184" - d="m -498,-141.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.215408 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.31937 z" - style="fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5214)" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient3381-7);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - id="path3435" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient3383-8);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -497.9851,-141.63165 -14.5625,5.4375 c 0.0823,0.2115 0.14371,0.53213 0.21875,0.90625 l 14.34375,-5.34375 14.28125,5.34375 c 0.0786,-0.3886 0.19552,-0.70835 0.28125,-0.90625 l -14.5625,-5.4375 z m -13.5625,21.21875 c -0.0808,6.89711 -0.65883,13.728 -2.0625,15.375 -1.9651,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.92571,1.21541 -23.53125,7.587123 -23.53125,13.687503 0,0.144795 0.0214,0.294549 0.0313,0.4375 0.692,-5.921036 11.94697,-11.947572 23.5,-13.125003 3.99292,-0.40694 9.00365,-1.413 10.96875,-3.71875 1.47226,-1.72748 2.02909,-9.1492 2.0625,-16.375 z m 27.125,2.0625 c 0.12575,6.40052 0.70665,12.54356 2.03125,14.3125 1.81587,2.42501 6.97582,3.31181 10.96875,3.71875 11.63062,1.18534 22.94516,7.039381 23.5,13.218753 0.0146,-0.173402 0.0625,-0.355119 0.0625,-0.53125 -1e-5,-6.350323 -11.6368,-12.472093 -23.5625,-13.687503 -3.99293,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -1.25624,-1.67765 -1.86615,-7.27675 -2.03125,-13.3125 z" - id="path5218" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - sodipodi:nodetypes="cscscscc" - id="path5281" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.41058,-0.396513 -21.97647,-1.083033 -39.53125,0 z" - style="opacity:0.11711713;fill:url(#linearGradient3386);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccc" - style="opacity:0.46846846;fill:url(#radialGradient3388);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257)" - d="m -511.82885,-112.6004 c -0.0609,5.48859 -0.3553,10.83813 -8.03125,11.25 -3.86166,0.69826 -4.19519,2.151173 -4.875,3.531253 9.03627,-1.36341 19.4666,-4.011823 26.94953,-2.786613 l 0.13258,-8.98705 c -4.24239,-1.08888 -9.97027,-1.89853 -14.17586,-3.00759 z" - id="path5235" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccccc" - style="opacity:0.4099099;fill:url(#radialGradient3390);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257)" - d="m -510.4226,-109.2254 c -0.35428,4.99035 -5.21804,8.28427 -9.96166,9.09727 5.05584,-0.89459 16.56776,-1.03031 22.5324,-1.04798 l 0.11048,-6.20554 c -3.46184,-0.52011 -8.29888,-0.68808 -12.68122,-1.84375 z" - id="path5261" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsccscc" - id="path5350" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 l 53.15625,0 c -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="fill:url(#linearGradient3392-6);fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5265" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="opacity:0.5495496;fill:none;stroke:url(#linearGradient3394-8);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.11711713;fill:url(#linearGradient3396);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600)" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.15799,-0.507294 -21.02253,-0.676229 -39.53125,0 z" - id="path3569" - sodipodi:nodetypes="cscscscc" - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.55405405;fill:#000000;fill-opacity:0.49729728;fill-rule:evenodd;stroke:url(#radialGradient3398);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter5402)" - d="m -484.9792,-110.89486 c -0.0309,6.01372 -3.42647,8.66713 -12.45647,8.86418 13.73668,-0.71873 21.51974,1.32042 27.66815,2.278495 -3.12515,-1.117485 -8.27754,-1.167505 -11.4047,-2.985595 -3.35231,-1.94899 -3.48432,-5.07232 -3.80698,-8.15708 z" - id="path5360" - sodipodi:nodetypes="cccsc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - style="opacity:0.43243247;fill:url(#radialGradient3400);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649)" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.5131,9.379008 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.75355,-6.234085 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - id="path3620" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - id="path5543" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.41916,9.028413 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.72354,-6.122102 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - style="fill:url(#radialGradient3402);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649)" - inkscape:connector-curvature="0" /> - <g - id="g5608" - mask="url(#mask5641)"> - <path - style="opacity:0.27027025;fill:url(#radialGradient3404);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178)" - d="m -221.76796,93.20625 c -9.66876,0.985393 -19.22404,5.312612 -22.36077,10.23165 -2.95517,4.63431 6.61982,3.87902 10.65303,2.25713 9.14413,-3.49527 22.59713,-3.45175 37.58274,-3.45175 17.89278,0 33.6687,0.89525 42.39208,5.61044 5.43293,2.93663 9.21476,-0.42103 8.02165,-3.09878 -2.41912,-5.429356 -12.55538,-10.470722 -23.13248,-11.54869 -30.70887,-2.692478 -35.76778,-1.861224 -53.15625,0 z" - id="path5283" - sodipodi:nodetypes="cscssscc" - transform="matrix(0.9478225,0,0,0.9234897,-313.03905,-186.89507)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9410153,0,0,0.9168573,-314.3667,-186.17274)" - sodipodi:nodetypes="cscscccc" - id="path3661" - d="m -221.76796,93.20625 c -9.8876,1.007694 -19.55436,5.201049 -22.5707,10.56315 -2.20296,3.91619 6.14869,3.79059 10.73888,1.97324 9.1757,-3.44127 22.65328,-3.63195 37.70682,-3.63195 17.80642,0 33.44474,0.99076 42.26424,5.67477 5.13681,3.01365 9.64454,-0.29612 8.02046,-3.33328 -2.45487,-5.409725 -12.61965,-10.187663 -23.00345,-11.24593 -29.41254,-2.955932 -35.37204,-1.884684 -53.15625,0 z" - style="opacity:0.27027025;fill:url(#radialGradient3406);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.14864867;fill:url(#linearGradient3408);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600)" - d="m -499.8125,-102.09375 c -4.83212,0.0399 -10.33985,0.16863 -16.84375,0.40625 1.68391,0.54236 3.18431,1.28749 4.03125,2.28125 1.26736,1.487077 1.80071,7.479387 1.90625,13.6875 l 11.25,0 c 0.91468,0 1.65625,-0.832157 1.65625,-1.84375 l 0,-14.53125 c -0.66994,0.002 -1.30348,-0.006 -2,0 z" - id="path5557" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - id="g3290" - transform="matrix(0.5,0,0,0.5,218,951.29176)" /> - <path - style="opacity:0.56306308;fill:url(#linearGradient10845);fill-opacity:1;stroke:none" - d="m 3.9884152,952.73011 c 11.9179838,-0.55763 23.8669268,-1.02239 36.3115848,0 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - id="path4347" - sodipodi:nodetypes="ccsscsc" - inkscape:connector-curvature="0" /> - <rect - y="936.7301" - x="26" - height="78" - width="101" - id="rect3383" - style="fill:url(#radialGradient10842);fill-opacity:1;stroke:none" - rx="5.1142359" - ry="5.1142359" /> - <rect - ry="4.9999995" - rx="4.9999995" - style="fill:url(#linearGradient10839);fill-opacity:1;stroke:none" - id="rect3311" - width="100" - height="77" - x="26.5" - y="937.2301" /> - <rect - y="938.7301" - x="28" - height="73" - width="96" - id="rect3271" - style="fill:url(#linearGradient10836);fill-opacity:1;stroke:none" - rx="2.5754218" - ry="2.5754218" /> - <path - sodipodi:nodetypes="ccccccccc" - id="rect3298" - d="m 30.568278,938.72476 c -1.426781,0 -2.573138,1.14636 -2.573138,2.57314 l 0,1.9149 c 0,-1.42679 1.146357,-3.21144 2.573138,-3.21144 l 91.858582,-0.0111 c 1.42679,0 2.57314,1.78465 2.57314,3.21143 l 0,-1.91489 c 0,-1.42678 -1.14635,-2.57314 -2.57314,-2.57314 l -91.858582,0.0111 z" - style="fill:url(#linearGradient10833);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.3000005" - rx="1.3000005" - style="opacity:0.70720712;fill:url(#radialGradient10830);fill-opacity:1;stroke:none" - id="rect3281" - width="87" - height="64.999992" - x="32.5" - y="942.2301" /> - <rect - y="942.2301" - x="32.5" - height="65" - width="87" - id="rect5414" - style="opacity:0.70720712;fill:url(#radialGradient10827);fill-opacity:1;stroke:none" - rx="1.3000005" - ry="1.3000005" /> - <rect - ry="0.64175582" - rx="0.64175582" - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3267" - width="86" - height="64.000023" - x="33" - y="942.7301" /> - <path - sodipodi:nodetypes="cccscccc" - id="path3420" - d="m 30.6,938.73011 c -1.426782,0 -2.573139,1.14636 -2.573139,2.57314 L 28,979.73011 c 15.082806,2.00954 22.213417,2.81832 39.622346,2.81832 24.127254,0 38.223634,-2.1432 57.377654,-5.84441 l -0.0252,-35.40077 c 4e-5,-1.42678 -1.14631,-2.57314 -2.5731,-2.57314 l -91.8017,0 z" - style="fill:url(#linearGradient10823);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - y="943.7301" - x="34" - height="62" - width="84" - id="rect2487" - style="fill:url(#linearGradient10820);fill-opacity:1;stroke:none" /> - <rect - style="fill:url(#radialGradient10817);fill-opacity:1;stroke:none" - id="rect4321" - width="82" - height="60" - x="35" - y="944.7301" /> - <path - sodipodi:nodetypes="cccc" - id="rect4373" - d="m 34.5,944.23011 82.5,0 -82.5,60.99999 0,-60.99999 z" - style="fill:url(#linearGradient10814);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(1.7320754,0,0,1.7320754,24.34579,838.31798)" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="107" - sodipodi:cx="-1" - id="path4419" - style="fill:url(#radialGradient11001);fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:url(#radialGradient10999);fill-opacity:1;stroke:none" - id="path4437" - sodipodi:cx="-1" - sodipodi:cy="107" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - transform="matrix(1.7320754,0,0,1.7320754,24.34579,780.95949)" /> - </g> - <g - transform="translate(351.53714,-430.72524)" - id="layer1-6-5" - inkscape:label="Camada 1"> - <rect - transform="matrix(0.7755201,0,0,1.4537453,-24.041606,856.9683)" - ry="0.51796591" - rx="0.26239562" - y="120" - x="38.73737" - height="4" - width="41.26263" - id="rect3800-5" - style="opacity:0.73260073;fill:url(#radialGradient11107-9);fill-opacity:1;stroke:none;filter:url(#filter3872-5)" /> - <path - sodipodi:nodetypes="ccccssccc" - id="rect3570-3" - d="m 10.196797,1029.5867 23.606406,0 c 0.109026,0 0.196797,0.086 0.196797,0.1923 l 0,5.7472 c 0,0.1066 -0.09002,0.1704 -0.196797,0.1924 -5.185241,1.0645 -18.154888,1.4166 -23.606406,0 C 10.091311,1035.6911 10,1035.6328 10,1035.5262 l 0,-5.7472 c 0,-0.1065 0.08777,-0.1923 0.196797,-0.1923 z" - style="fill:url(#linearGradient10996-4);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccc" - id="rect4022-8" - d="m 12.168776,1029.5867 c -0.09079,0 -0.168776,0.083 -0.168776,0.1898 l 0,5.7401 c 0,0.1066 0.07798,0.2135 0.168776,0.2135 l 3.888187,0 0,-6.1434 -3.888187,0 z m 13.84135,0 0,6.1434 5.821098,0 c 0.09079,0 0.168776,-0.1069 0.168776,-0.2135 l 0,-5.7401 c 0,-0.1066 -0.07798,-0.1898 -0.168776,-0.1898 l -5.821098,0 z" - style="fill:url(#linearGradient10993-9);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.7237271" - rx="1.7851298" - y="951.72955" - x="2.0005379" - height="80.001083" - width="39.996975" - id="rect2175-6" - style="fill:url(#linearGradient10990-7);fill-opacity:1;stroke:none" /> - <rect - style="opacity:0.70695974;fill:url(#radialGradient10987-3);fill-opacity:1;stroke:none" - id="rect3164-6" - width="39.996975" - height="80.001083" - x="2.0005379" - y="951.72955" - rx="1.7155496" - ry="1.6565403" /> - <rect - style="fill:url(#radialGradient10984-2);fill-opacity:1;stroke:none" - id="rect3174-3" - width="39.996975" - height="33.089149" - x="2.0005379" - y="998.62677" - rx="1.6431732" - ry="1.3948433" /> - <text - transform="scale(0.99108136,1.0089989)" - id="text3658-0" - y="1013.8896" - x="7.6162062" - style="font-size:1.91842496px;font-style:normal;font-weight:bold;fill:url(#linearGradient10981-8);fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" - xml:space="preserve"><tspan - style="fill:url(#linearGradient10981-8);fill-opacity:1" - y="1013.8896" - x="7.6162062" - id="tspan3660-0" - sodipodi:role="line">OXYGEN</tspan></text> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.3854" - x="13.428246" - height="0.6053918" - width="11.413166" - id="rect3870-5" - style="opacity:0.73260073;fill:url(#radialGradient10977-2);fill-opacity:1;stroke:none" /> - <rect - ry="1.6160318" - rx="1.6160318" - y="1011.7048" - x="2.0005379" - height="20.011065" - width="39.996975" - id="rect4018-6" - style="fill:url(#linearGradient10974-6);fill-opacity:1;stroke:none" /> - <rect - transform="matrix(0,1,-1,0,0,0)" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" - id="rect7275-8" - width="0.2382233" - height="18.519377" - x="1012.42" - y="-41.999535" /> - <path - transform="matrix(0.7968167,0,0,0.6896645,-35.37178,948.26401)" - id="path4947-7" - d="m 52,118.9 40,0" - style="opacity:0.63003666;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient11105-5);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4997-1)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="cccc" - id="path5021-4" - d="M 85.933333,5.8497359 C 85.266404,34.586754 87.338901,93.798793 83.459589,114.50486 69.128393,112.87262 68.975828,41.187138 72.111111,5.5042329 l 13.822222,0.345503 z" - style="opacity:0.60439561;fill:url(#linearGradient11103-0);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060-9)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(-0.7142317,0,0,0.6896645,65.083446,948.97091)" - style="opacity:0.76190479;fill:url(#linearGradient11101-9);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060-9)" - d="M 85.733333,5.7497359 C 85.066404,34.486754 84.984404,99.894031 82.459589,114.50486 66.698764,114.86601 77.87361,31.982082 71.111111,5.5042329 l 14.622222,0.245503 z" - id="path6072-1" - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" /> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.1423" - x="2.297204" - height="1.9007041" - width="10.992223" - id="rect3976-8" - style="opacity:0.73260073;fill:url(#radialGradient44601);fill-opacity:1;stroke:none" /> - <path - sodipodi:nodetypes="ccccccccc" - id="path3489-1" - d="m 2.0119272,957.29764 0,0.46099 L 13,957.73011 l 0,42.99999 -11,0 0.014258,0.3494 11.398186,0 0,-43.78186 -11.4005166,0 z" - style="fill:#3e3e3e;fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <use - x="0" - y="0" - xlink:href="#rect3976-8" - id="use7065-6" - transform="matrix(0,3.9486526,-0.5779271,0,593.11395,948.91009)" - width="128" - height="128" /> - <path - transform="matrix(0.686221,0,0,0.7025015,-89.189728,989.64483)" - mask="url(#mask7160-6)" - id="rect7115-1" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467362 -0.84375,1.03125 l 0,50.43749973 c 4.94936,0.59011697 10.01102,0.90624997 15.15625,0.90624997 12.91618,0 25.27421,-1.915556 36.71875,-5.4375 l 0,-45.9062497 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="opacity:0.28937731;fill:url(#linearGradient11095-8);fill-opacity:1;stroke:none;filter:url(#filter7348-8)" - inkscape:connector-curvature="0" /> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,33.868415,978.72071)" - id="g7260-6"> - <path - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256-4)" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7242-1" - inkscape:connector-curvature="0" /> - <path - id="path7188-5" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238-3)" - inkscape:connector-curvature="0" /> - <path - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7180-6" - inkscape:connector-curvature="0" /> - </g> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,32.340621,978.72071)" - id="g7265-6"> - <path - id="path7267-9" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256-4)" - inkscape:connector-curvature="0" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238-3)" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7269-3" - inkscape:connector-curvature="0" /> - <path - id="path7271-3" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <path - sodipodi:nodetypes="cccc" - id="path4351-9" - d="m 29,952.73011 0,56.99999 c 0.05534,2.4723 1.203156,4.3984 5,5 l 7,0" - style="fill:none;stroke:url(#linearGradient10953-6);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4405-5)" - inkscape:connector-curvature="0" /> - <rect - ry="1.6565403" - rx="1.7155496" - y="951.72955" - x="2.0005379" - height="16.551949" - width="39.996975" - id="rect7352-8" - style="fill:url(#linearGradient10950-7);fill-opacity:1;stroke:none" /> - <rect - ry="0" - rx="0" - y="951.7348" - x="18.964886" - height="74.995308" - width="3.0351143" - id="rect7392-6" - style="opacity:0.20879122;fill:url(#linearGradient10947-9);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.04732946,0,0,0.04570148,37.211866,1014.3973)" - id="g4652-6"> - <path - transform="matrix(0.950204,0,0,-0.9781022,-140.58731,145.38383)" - inkscape:r_cy="true" - inkscape:r_cx="true" - d="m 127.31551,65.540108 c 0,34.873682 -28.270709,63.144382 -63.14439,63.144382 -34.873682,0 -63.1443866,-28.2707 -63.1443866,-63.144382 0,-34.873682 28.2707046,-63.1443866 63.1443866,-63.1443866 34.873681,0 63.14439,28.2707046 63.14439,63.1443866 z" - sodipodi:ry="63.144386" - sodipodi:rx="63.144386" - sodipodi:cy="65.540108" - sodipodi:cx="64.17112" - id="path4887-5" - style="opacity:0.9157509;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4648-2)" - sodipodi:type="arc" /> - <g - id="g4542-3" - transform="translate(-142.96868,16.982986)"> - <g - transform="matrix(1.034003,0,0,1.034003,-3.571961,-1.953362)" - id="g3443-1"> - <path - sodipodi:type="arc" - style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path1315-4" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.727272" - sodipodi:ry="42.727272" - d="m 94.909092,44.909092 c 0,23.597621 -19.129651,42.727272 -42.727272,42.727272 -23.597621,0 -42.7272721,-19.129651 -42.7272721,-42.727272 0,-23.597621 19.1296511,-42.7272721 42.7272721,-42.7272721 23.597621,0 42.727272,19.1296511 42.727272,42.7272721 z" - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" /> - <path - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path2190-0" - style="opacity:0.11885244;fill:url(#radialGradient11011-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <g - id="g3357-7" - style="opacity:0.57786889"> - <path - id="path3138-9" - d="m 18.32319,89.008621 c 0.08929,0.161616 0.195172,0.304391 0.286126,0.464954 -0.09422,-0.152925 -0.19341,-0.311012 -0.286126,-0.464954 z m 91.41715,0 c -0.0927,0.153942 -0.1919,0.312029 -0.28612,0.464954 0.091,-0.160563 0.19683,-0.303338 0.28612,-0.464954 z m -90.987961,0.786846 c 9.012499,15.667623 25.919,26.216263 45.279382,26.216263 19.360383,0 36.266889,-10.54864 45.279399,-26.216263 -9.425234,15.074563 -26.202555,25.071753 -45.279399,25.071753 -19.076844,0 -35.854164,-9.99719 -45.279382,-25.071753 z" - style="fill:url(#linearGradient11013-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11015-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 21.546815,86.902153 c 0.08342,0.150981 0.182328,0.28436 0.267297,0.434357 -0.08802,-0.142862 -0.180682,-0.290546 -0.267297,-0.434357 z m 85.401185,0 c -0.0866,0.143811 -0.17929,0.291495 -0.2673,0.434357 0.085,-0.149997 0.18388,-0.283376 0.2673,-0.434357 z m -85.00024,0.735065 c 8.419408,14.636582 24.213332,24.491032 42.299653,24.491032 18.086322,0 33.880242,-9.85445 42.299647,-24.491032 -8.804957,14.082532 -24.478205,23.421842 -42.299647,23.421842 -17.821442,0 -33.494685,-9.33931 -42.299653,-23.421842 z" - id="path3143-2" - inkscape:connector-curvature="0" /> - <path - id="path3145-0" - d="m 24.78966,84.242991 c 0.07668,0.138787 0.167604,0.261396 0.245712,0.399281 -0.08091,-0.131326 -0.166091,-0.267083 -0.245712,-0.399281 z m 78.5047,0 c -0.0796,0.132198 -0.1648,0.267955 -0.24572,0.399281 0.0781,-0.137885 0.16904,-0.260494 0.24572,-0.399281 z m -78.136133,0.675706 c 7.739507,13.454618 22.258007,22.513283 38.883784,22.513283 16.625777,0 31.144276,-9.058666 38.883779,-22.513283 -8.093927,12.945319 -22.501492,21.530433 -38.883779,21.530433 -16.382289,0 -30.789854,-8.585114 -38.883784,-21.530433 z" - style="fill:url(#linearGradient11017-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11019-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 28.398565,82.501092 c 0.06954,0.125862 0.151993,0.23705 0.222826,0.362091 -0.07337,-0.119094 -0.150621,-0.242206 -0.222826,-0.362091 z m 71.192615,0 c -0.07221,0.119885 -0.14946,0.242997 -0.222835,0.362091 0.07084,-0.125041 0.153293,-0.236229 0.222835,-0.362091 z m -70.858377,0.612769 c 7.018633,12.201428 20.184848,20.416349 35.262068,20.416349 15.077217,0 28.243433,-8.214922 35.262067,-20.416349 -7.340046,11.739565 -20.405662,19.525049 -35.262067,19.525049 -14.856408,0 -27.922024,-7.785484 -35.262068,-19.525049 z" - id="path3147-4" - inkscape:connector-curvature="0" /> - <path - id="path3149-0" - d="m 32.581299,80.504353 c 0.06169,0.11165 0.134832,0.210283 0.197666,0.321206 -0.06509,-0.105646 -0.133615,-0.214858 -0.197666,-0.321206 z m 63.154077,0 c -0.06405,0.106348 -0.132583,0.21556 -0.197673,0.321206 0.06284,-0.110923 0.135981,-0.209556 0.197673,-0.321206 z m -62.857579,0.543579 c 6.226141,10.823734 17.905727,18.111084 31.280539,18.111084 13.37481,0 25.054396,-7.287351 31.280538,-18.111084 -6.511262,10.414022 -18.101606,17.320425 -31.280538,17.320425 -13.178933,0 -24.769278,-6.906403 -31.280539,-17.320425 z" - style="fill:url(#linearGradient11021-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11023-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 35.859703,78.248887 c 0.05528,0.09552 0.120825,0.179894 0.177132,0.274788 -0.05833,-0.09038 -0.119734,-0.183809 -0.177132,-0.274788 z m 56.593697,0 c -0.0574,0.09098 -0.11881,0.184409 -0.177139,0.274788 0.05631,-0.09489 0.121856,-0.179272 0.177139,-0.274788 z m -56.327998,0.465024 c 5.579375,9.259547 16.045697,15.493769 28.031148,15.493769 11.98545,0 22.451772,-6.234223 28.031148,-15.493769 -5.834879,8.909044 -16.221229,14.817372 -28.031148,14.817372 -11.809919,0 -22.196271,-5.908328 -28.031148,-14.817372 z" - id="path3151-0" - inkscape:connector-curvature="0" /> - <path - id="path3153-3" - d="m 39.510842,76.25898 c 0.04873,0.07843 0.106509,0.147722 0.156144,0.225645 -0.05141,-0.07422 -0.105548,-0.150937 -0.156144,-0.225645 z m 49.888034,0 c -0.0506,0.07471 -0.104733,0.151429 -0.15615,0.225645 0.04964,-0.07792 0.107418,-0.14721 0.15615,-0.225645 z m -49.653817,0.381861 c 4.918287,7.603605 14.144477,12.722922 24.709799,12.722922 10.56532,0 19.79151,-5.119317 24.709798,-12.722922 -5.143517,7.315785 -14.299211,12.16749 -24.709798,12.16749 -10.410587,0 -19.566283,-4.851705 -24.709799,-12.16749 z" - style="fill:url(#linearGradient11025-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11027-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 43.011934,73.358075 c 0.04189,0.07264 0.09156,0.1368 0.134228,0.208962 -0.0442,-0.06873 -0.09073,-0.139778 -0.134228,-0.208962 z m 42.88585,0 c -0.0435,0.06918 -0.09003,0.140234 -0.134233,0.208962 0.04267,-0.07216 0.09234,-0.136327 0.134233,-0.208962 z m -42.684507,0.353628 c 4.227966,7.041427 12.159186,11.782245 21.241581,11.782245 9.082393,0 17.013613,-4.740818 21.24158,-11.782245 -4.421583,6.774887 -12.292202,11.267879 -21.24158,11.267879 -8.949378,0 -16.819999,-4.492992 -21.241581,-11.267879 z" - id="path3157-7" - inkscape:connector-curvature="0" /> - <path - id="path3159-1" - d="m 46.613057,70.957326 c 0.03495,0.0624 0.0764,0.117528 0.111999,0.179523 -0.03688,-0.05904 -0.07571,-0.120085 -0.111999,-0.179523 z m 35.783635,0 c -0.03629,0.05944 -0.07512,0.120478 -0.112003,0.179523 0.0356,-0.06199 0.07705,-0.117121 0.112003,-0.179523 z m -35.615636,0.303809 c 3.527784,6.049434 10.145535,10.122367 17.723817,10.122367 7.578282,0 14.196033,-4.072933 17.723817,-10.122367 -3.689336,5.820444 -10.256522,9.680464 -17.723817,9.680464 -7.467294,0 -14.034482,-3.86002 -17.723817,-9.680464 z" - style="fill:url(#linearGradient11029-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11031-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 49.814056,68.456546 c 0.02792,0.05546 0.06102,0.104447 0.08946,0.159541 -0.02946,-0.05247 -0.06047,-0.106718 -0.08946,-0.159541 z m 28.581388,0 c -0.02899,0.05282 -0.06,0.107068 -0.08946,0.159541 0.02844,-0.05509 0.06154,-0.104085 0.08946,-0.159541 z M 49.948241,68.72654 c 2.81774,5.376095 8.103523,8.995687 14.156508,8.995687 6.052985,0 11.338768,-3.619592 14.156507,-8.995687 -2.946775,5.172593 -8.19217,8.602971 -14.156507,8.602971 -5.964336,0 -11.209733,-3.430378 -14.156508,-8.602971 z" - id="path3161-3" - inkscape:connector-curvature="0" /> - <path - id="path3163-0" - d="m 57.016302,64.055173 c 0.01453,0.02803 0.03176,0.05278 0.04656,0.08063 -0.01533,-0.02652 -0.03148,-0.05393 -0.04656,-0.08063 z m 14.877113,0 c -0.01509,0.02669 -0.03123,0.05411 -0.04657,0.08063 0.0148,-0.02784 0.03203,-0.0526 0.04657,-0.08063 z m -14.807268,0.136444 c 1.466683,2.716869 4.218026,4.54607 7.368711,4.54607 3.150685,0 5.902027,-1.829201 7.36871,-4.54607 -1.533848,2.614028 -4.264168,4.347606 -7.36871,4.347606 -3.104542,0 -5.834862,-1.733578 -7.368711,-4.347606 z" - style="fill:url(#linearGradient11033-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11035-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 53.315147,66.555953 c 0.02127,0.04103 0.0465,0.07727 0.06817,0.118032 -0.02245,-0.03882 -0.04608,-0.07895 -0.06817,-0.118032 z m 21.779266,0 c -0.02209,0.03908 -0.04572,0.07921 -0.06817,0.118032 0.02167,-0.04076 0.0469,-0.077 0.06817,-0.118032 z m -21.677017,0.199746 c 2.147143,3.977346 6.174956,6.655194 10.787383,6.655194 4.612428,0 8.64024,-2.677848 10.787382,-6.655194 -2.245468,3.826792 -6.242505,6.364654 -10.787382,6.364654 -4.544877,0 -8.541913,-2.537862 -10.787383,-6.364654 z" - id="path3165-7" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3293-4" - style="opacity:0.28688528"> - <path - style="opacity:0.73360656;fill:url(#linearGradient11037-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - id="path3197-6" - inkscape:connector-curvature="0" /> - <path - id="path3199-0" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - style="opacity:0.73360656;fill:url(#linearGradient11039-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11041-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - id="path3201-1" - inkscape:connector-curvature="0" /> - <path - id="path3203-4" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - style="opacity:0.73360656;fill:url(#linearGradient11043-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11045-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - id="path3205-6" - inkscape:connector-curvature="0" /> - <path - id="path3207-3" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - style="opacity:0.73360656;fill:url(#linearGradient11047-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11049-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - id="path3209-8" - inkscape:connector-curvature="0" /> - <path - id="path3211-1" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - style="opacity:0.73360656;fill:url(#linearGradient11051-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11053-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - id="path3213-4" - inkscape:connector-curvature="0" /> - <path - id="path3215-8" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - style="opacity:0.73360656;fill:url(#linearGradient11055-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11057-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - id="path3217-0" - inkscape:connector-curvature="0" /> - <path - id="path3219-2" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - style="opacity:0.73360656;fill:url(#linearGradient11059-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3307-3" - transform="translate(-0.565862,0.282931)" - style="opacity:0.28688528"> - <path - id="path3309-3" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - style="opacity:0.73360656;fill:url(#linearGradient11061-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11063-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - id="path3311-4" - inkscape:connector-curvature="0" /> - <path - id="path3313-9" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - style="opacity:0.73360656;fill:url(#linearGradient11065-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11067-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - id="path3315-5" - inkscape:connector-curvature="0" /> - <path - id="path3317-1" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - style="opacity:0.73360656;fill:url(#linearGradient11069-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11071-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - id="path3319-8" - inkscape:connector-curvature="0" /> - <path - id="path3321-0" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - style="opacity:0.73360656;fill:url(#linearGradient11073-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11075-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - id="path3323-3" - inkscape:connector-curvature="0" /> - <path - id="path3325-4" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - style="opacity:0.73360656;fill:url(#linearGradient11077-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11079-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - id="path3327-2" - inkscape:connector-curvature="0" /> - <path - id="path3329-4" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - style="opacity:0.73360656;fill:url(#linearGradient11081-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11083-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - id="path3331-9" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(1.400964,0,0,1.400964,-10.24782,-2.576398)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path3086-9" - style="opacity:0.15983605;fill:url(#radialGradient11085-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:0.19672134;fill:url(#radialGradient11087-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path3100-5" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.988293" - sodipodi:ry="42.988293" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - transform="matrix(-1.400964,0,0,1.400964,135.9619,-2.576398)" /> - <path - id="path3570-2" - d="m 40.9375,19.34375 c -1.378982,0.08425 -2.721284,0.544956 -3.875,1.3125 -5.160376,3.349464 -9.759998,7.797045 -13.40625,13.1875 -7.292501,10.780907 -9.542508,23.591287 -7.25,35.46875 2.292507,11.877459 9.156596,22.92625 19.9375,30.21875 10.780909,7.2925 23.591285,9.54251 35.46875,7.25 11.877462,-2.29251 22.957499,-9.156596 30.25,-19.9375 7.2925,-10.780908 9.5425,-23.591289 7.25,-35.46875 C 107.01999,39.497538 100.1559,28.448751 89.375,21.15625 85.785149,18.722745 80.902255,19.660149 78.46875,23.25 c -2.433505,3.589851 -1.496101,8.472745 2.09375,10.90625 7.265039,4.914273 11.806943,12.22532 13.34375,20.1875 1.536801,7.962181 0.07052,16.45371 -4.84375,23.71875 C 84.148228,85.327539 76.80593,89.838193 68.84375,91.375 60.881568,92.911807 52.390041,91.445523 45.125,86.53125 37.859968,81.616982 33.349307,74.305937 31.8125,66.34375 30.275694,58.381572 31.741981,49.890035 36.65625,42.625 c 2.457137,-3.632522 5.528356,-6.579432 8.96875,-8.8125 2.968319,-1.884093 4.32342,-5.507692 3.3125,-8.875 -1.01092,-3.367307 -4.141021,-5.656122 -7.65625,-5.59375 -0.117417,0.0019 -0.226887,-0.0071 -0.34375,0 z m 21.4375,21 c -1.937828,0.12532 -3.767515,0.973547 -5.125,2.375 -1.447987,1.494885 -2.253965,3.512862 -2.21875,5.59375 -10e-7,1.266966 0,24.0625 0,24.0625 -0.137593,2.885743 1.33379,5.609689 3.8125,7.09375 2.478711,1.484059 5.55254,1.484061 8.03125,0 2.478713,-1.484063 3.950093,-4.208007 3.8125,-7.09375 0,0 -10e-7,-22.795621 0,-24.0625 0.0358,-2.118777 -0.785781,-4.154894 -2.28125,-5.65625 -1.495467,-1.501357 -3.537348,-2.339972 -5.65625,-2.3125 -0.13006,0.0019 -0.245811,-0.0084 -0.375,0 z" - style="fill:url(#radialGradient11089-4);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:4" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4855-9" - d="M 89.052758,110.33731 C 115.83808,95.818903 126.60843,63.173429 113.08007,36.784006 c -3.14854,-6.141789 -7.35212,-11.402152 -12.28011,-15.71269 4.52788,4.044347 8.37165,8.938861 11.28913,14.629954 13.10314,25.559983 2.28328,57.263399 -24.150142,70.76265 -26.43342,13.49924 -58.52431,3.70984 -71.62745,-21.850166 C 3.2083579,59.053773 14.028228,27.350338 40.461648,13.851101 52.955568,7.4706054 66.709008,6.3080926 79.127588,9.5390554 65.940318,5.9457846 51.268668,7.0675156 37.954728,13.86679 10.230318,28.025312 -1.1178821,61.276793 12.625218,88.085107 c 13.74309,26.808323 47.40094,37.075733 75.12534,22.917223 0.4332,-0.22125 0.87703,-0.43458 1.3022,-0.66502 z M 80.055218,9.7786728 c -0.30005,-0.087287 -0.59939,-0.1708794 -0.90105,-0.2531907 0.3006,0.07834 0.60207,0.1696947 0.90105,0.2531907 z" - style="fill:url(#linearGradient11091-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4868-5" - d="M 60.886675,3.5011061 C 30.994595,4.4513813 7.0114547,29.083452 7.0114647,59.284292 c 0,15.796568 6.5792803,30.076913 17.1118103,40.23189 C 60.218215,87.621632 71.214115,42.093571 109.07913,28.465026 99.107975,13.412218 82.025115,3.5011061 62.664525,3.5011061 c -0.60001,0 -1.18239,-0.018932 -1.77785,0 z" - style="opacity:0.57674417;fill:url(#radialGradient11093-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.7399)" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" - sodipodi:ry="17.67767" - sodipodi:rx="17.67767" - sodipodi:cy="65.774605" - sodipodi:cx="177.4838" - id="path7278-9" - style="opacity:0.54945056;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7312-0)" - sodipodi:type="arc" /> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.5922)" - sodipodi:type="arc" - style="fill:url(#radialGradient11009-5);fill-opacity:1;stroke:none" - id="path7280-8" - sodipodi:cx="177.4838" - sodipodi:cy="65.774605" - sodipodi:rx="17.67767" - sodipodi:ry="17.67767" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" /> - <rect - transform="scale(-1,1)" - style="opacity:0.29304026;fill:url(#linearGradient10892-0);fill-opacity:1;stroke:none" - id="rect7402-5" - width="2.6215534" - height="74.980072" - x="-25.621553" - y="951.75006" - rx="0" - ry="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - id="path3584-2" - d="m 62,112 -2,0 0,-96" - style="fill:none;stroke:url(#linearGradient11007-3);stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3598-2)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsscsc" - id="rect7363-2" - d="m 3.9884152,952.73011 36.3115848,0 c 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - style="opacity:0.56306308;fill:url(#linearGradient10888-2);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="0.16450633" - rx="0.25630134" - y="955.68286" - x="22.000366" - height="70.530472" - width="1.4270998" - id="rect3186-4" - style="fill:#000000;fill-opacity:1;stroke:none" /> - <rect - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3572-7" - width="1.4270998" - height="70.530472" - x="22.000366" - y="955.68286" - rx="0.25630134" - ry="0.16450633" /> - <rect - ry="0.16450633" - rx="0.11117215" - y="954.7301" - x="22.399998" - height="70.530472" - width="0.61901248" - id="rect3574-2" - style="opacity:0.71794876;fill:url(#linearGradient10883-0);fill-opacity:1;stroke:none" /> - <path - id="rect3394-5" - d="m 22.000285,962.77201 0,8.26816 1.427204,0 0,-8.26816 -1.427204,0 z" - style="fill:url(#radialGradient10880-7);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.4837111,0,0,0.1142406,-289.45421,930.01349)" - style="opacity:0.46520146;fill:url(#radialGradient11005-5);fill-opacity:1;stroke:none;filter:url(#filter3469-7)" - d="m 642.40625,286.75 0,72.375 5.90625,0 0,-72.375 -5.90625,0 z" - id="path3407-1" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient10876-0);fill-opacity:1;stroke:none" - d="m 22.000285,1020.5549 0,6.2712 1.427204,0 0,-6.2712 -1.427204,0 z" - id="path4287-0" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="ccccc" - id="path4787-7" - d="m 59.301763,96.79545 -4.52e-4,15.95387 3.500264,0 L 62.7,96.79545 l -3.398237,0 z" - style="opacity:0.54945056;fill:url(#radialGradient11003-8);fill-opacity:1;stroke:none;filter:url(#filter4927-3)" - inkscape:connector-curvature="0" /> - <rect - y="951.72955" - x="22.015116" - height="6.0287628" - width="0.54780781" - id="rect7273-4" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" /> - <path - style="opacity:0.47985349;fill:url(#radialGradient10871-6);fill-opacity:1;stroke:none" - d="m 4.1483093,1030.7925 35.7115847,0 c 0.692448,0 1.249906,-0.2307 1.249906,-0.5173 -11.979557,-4.1048 -26.09051,-3.5144 -38.2113962,0 0,0.2866 0.5574578,0.5173 1.2499055,0.5173 z" - id="path7406-4" - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" /> - <g - id="Livello_1-3" - transform="matrix(0.5,0,0,0.5,190,942.59711)" /> - <rect - ry="1.6761006" - rx="1.6761006" - y="951.7301" - x="2" - height="4" - width="40.000008" - id="rect4876-8" - style="opacity:0.65315312;fill:url(#linearGradient10867-7);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.6010762,0,0,0.6010762,374.33595,1083.6037)" - id="g5647-3"> - <path - style="opacity:0.481982;fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5346-0)" - d="m -498,-139.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.311808 -10.96875,3.718748 -11.9257,1.21541 -23.53125,7.587115 -23.53125,13.687495 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687495 -3.99292,-0.40694 -9.15288,-1.293738 -10.96875,-3.718748 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-139.31937 z" - id="path5328-0" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5184-1" - d="m -498,-141.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.215408 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.31937 z" - style="fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5214-8)" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient3381-7-4);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - id="path3435-4" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient3383-8-4);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -497.9851,-141.63165 -14.5625,5.4375 c 0.0823,0.2115 0.14371,0.53213 0.21875,0.90625 l 14.34375,-5.34375 14.28125,5.34375 c 0.0786,-0.3886 0.19552,-0.70835 0.28125,-0.90625 l -14.5625,-5.4375 z m -13.5625,21.21875 c -0.0808,6.89711 -0.65883,13.728 -2.0625,15.375 -1.9651,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.92571,1.21541 -23.53125,7.587123 -23.53125,13.687503 0,0.144795 0.0214,0.294549 0.0313,0.4375 0.692,-5.921036 11.94697,-11.947572 23.5,-13.125003 3.99292,-0.40694 9.00365,-1.413 10.96875,-3.71875 1.47226,-1.72748 2.02909,-9.1492 2.0625,-16.375 z m 27.125,2.0625 c 0.12575,6.40052 0.70665,12.54356 2.03125,14.3125 1.81587,2.42501 6.97582,3.31181 10.96875,3.71875 11.63062,1.18534 22.94516,7.039381 23.5,13.218753 0.0146,-0.173402 0.0625,-0.355119 0.0625,-0.53125 -1e-5,-6.350323 -11.6368,-12.472093 -23.5625,-13.687503 -3.99293,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -1.25624,-1.67765 -1.86615,-7.27675 -2.03125,-13.3125 z" - id="path5218-0" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - sodipodi:nodetypes="cscscscc" - id="path5281-5" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.41058,-0.396513 -21.97647,-1.083033 -39.53125,0 z" - style="opacity:0.11711713;fill:url(#linearGradient3386-4);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-6)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccc" - style="opacity:0.46846846;fill:url(#radialGradient3388-1);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257-2)" - d="m -511.82885,-112.6004 c -0.0609,5.48859 -0.3553,10.83813 -8.03125,11.25 -3.86166,0.69826 -4.19519,2.151173 -4.875,3.531253 9.03627,-1.36341 19.4666,-4.011823 26.94953,-2.786613 l 0.13258,-8.98705 c -4.24239,-1.08888 -9.97027,-1.89853 -14.17586,-3.00759 z" - id="path5235-0" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccccc" - style="opacity:0.4099099;fill:url(#radialGradient3390-0);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257-2)" - d="m -510.4226,-109.2254 c -0.35428,4.99035 -5.21804,8.28427 -9.96166,9.09727 5.05584,-0.89459 16.56776,-1.03031 22.5324,-1.04798 l 0.11048,-6.20554 c -3.46184,-0.52011 -8.29888,-0.68808 -12.68122,-1.84375 z" - id="path5261-5" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsccscc" - id="path5350-1" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 l 53.15625,0 c -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="fill:url(#linearGradient3392-6-1);fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5265-0" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="opacity:0.5495496;fill:none;stroke:url(#linearGradient3394-8-0);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.11711713;fill:url(#linearGradient3396-0);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-6)" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.15799,-0.507294 -21.02253,-0.676229 -39.53125,0 z" - id="path3569-4" - sodipodi:nodetypes="cscscscc" - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.55405405;fill:#000000;fill-opacity:0.49729728;fill-rule:evenodd;stroke:url(#radialGradient3398-1);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter5402-0)" - d="m -484.9792,-110.89486 c -0.0309,6.01372 -3.42647,8.66713 -12.45647,8.86418 13.73668,-0.71873 21.51974,1.32042 27.66815,2.278495 -3.12515,-1.117485 -8.27754,-1.167505 -11.4047,-2.985595 -3.35231,-1.94899 -3.48432,-5.07232 -3.80698,-8.15708 z" - id="path5360-8" - sodipodi:nodetypes="cccsc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - style="opacity:0.43243247;fill:url(#radialGradient3400-9);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649-2)" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.5131,9.379008 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.75355,-6.234085 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - id="path3620-4" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - id="path5543-6" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.41916,9.028413 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.72354,-6.122102 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - style="fill:url(#radialGradient3402-4);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649-2)" - inkscape:connector-curvature="0" /> - <g - id="g5608-3" - mask="url(#mask5641-0)"> - <path - style="opacity:0.27027025;fill:url(#radialGradient3404-2);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178-9)" - d="m -221.76796,93.20625 c -9.66876,0.985393 -19.22404,5.312612 -22.36077,10.23165 -2.95517,4.63431 6.61982,3.87902 10.65303,2.25713 9.14413,-3.49527 22.59713,-3.45175 37.58274,-3.45175 17.89278,0 33.6687,0.89525 42.39208,5.61044 5.43293,2.93663 9.21476,-0.42103 8.02165,-3.09878 -2.41912,-5.429356 -12.55538,-10.470722 -23.13248,-11.54869 -30.70887,-2.692478 -35.76778,-1.861224 -53.15625,0 z" - id="path5283-3" - sodipodi:nodetypes="cscssscc" - transform="matrix(0.9478225,0,0,0.9234897,-313.03905,-186.89507)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9410153,0,0,0.9168573,-314.3667,-186.17274)" - sodipodi:nodetypes="cscscccc" - id="path3661-4" - d="m -221.76796,93.20625 c -9.8876,1.007694 -19.55436,5.201049 -22.5707,10.56315 -2.20296,3.91619 6.14869,3.79059 10.73888,1.97324 9.1757,-3.44127 22.65328,-3.63195 37.70682,-3.63195 17.80642,0 33.44474,0.99076 42.26424,5.67477 5.13681,3.01365 9.64454,-0.29612 8.02046,-3.33328 -2.45487,-5.409725 -12.61965,-10.187663 -23.00345,-11.24593 -29.41254,-2.955932 -35.37204,-1.884684 -53.15625,0 z" - style="opacity:0.27027025;fill:url(#radialGradient3406-9);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178-9)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.14864867;fill:url(#linearGradient3408-7);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-6)" - d="m -499.8125,-102.09375 c -4.83212,0.0399 -10.33985,0.16863 -16.84375,0.40625 1.68391,0.54236 3.18431,1.28749 4.03125,2.28125 1.26736,1.487077 1.80071,7.479387 1.90625,13.6875 l 11.25,0 c 0.91468,0 1.65625,-0.832157 1.65625,-1.84375 l 0,-14.53125 c -0.66994,0.002 -1.30348,-0.006 -2,0 z" - id="path5557-1" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - id="g3290-8" - transform="matrix(0.5,0,0,0.5,218,951.29176)" /> - <path - style="opacity:0.56306308;fill:url(#linearGradient10845-7);fill-opacity:1;stroke:none" - d="m 3.9884152,952.73011 c 11.9179838,-0.55763 23.8669268,-1.02239 36.3115848,0 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - id="path4347-8" - sodipodi:nodetypes="ccsscsc" - inkscape:connector-curvature="0" /> - <rect - y="936.7301" - x="26" - height="78" - width="101" - id="rect3383-5" - style="fill:url(#radialGradient10842-8);fill-opacity:1;stroke:none" - rx="5.1142359" - ry="5.1142359" /> - <rect - ry="4.9999995" - rx="4.9999995" - style="fill:url(#linearGradient10839-9);fill-opacity:1;stroke:none" - id="rect3311-5" - width="100" - height="77" - x="26.5" - y="937.2301" /> - <rect - y="938.7301" - x="28" - height="73" - width="96" - id="rect3271-1" - style="fill:url(#linearGradient10836-7);fill-opacity:1;stroke:none" - rx="2.5754218" - ry="2.5754218" /> - <path - sodipodi:nodetypes="ccccccccc" - id="rect3298-2" - d="m 30.568278,938.72476 c -1.426781,0 -2.573138,1.14636 -2.573138,2.57314 l 0,1.9149 c 0,-1.42679 1.146357,-3.21144 2.573138,-3.21144 l 91.858582,-0.0111 c 1.42679,0 2.57314,1.78465 2.57314,3.21143 l 0,-1.91489 c 0,-1.42678 -1.14635,-2.57314 -2.57314,-2.57314 l -91.858582,0.0111 z" - style="fill:url(#linearGradient10833-1);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.3000005" - rx="1.3000005" - style="opacity:0.70720712;fill:url(#radialGradient10830-3);fill-opacity:1;stroke:none" - id="rect3281-7" - width="87" - height="64.999992" - x="32.5" - y="942.2301" /> - <rect - y="942.2301" - x="32.5" - height="65" - width="87" - id="rect5414-1" - style="opacity:0.70720712;fill:url(#radialGradient10827-2);fill-opacity:1;stroke:none" - rx="1.3000005" - ry="1.3000005" /> - <rect - ry="0.64175582" - rx="0.64175582" - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3267-2" - width="86" - height="64.000023" - x="33" - y="942.7301" /> - <path - sodipodi:nodetypes="cccscccc" - id="path3420-3" - d="m 30.6,938.73011 c -1.426782,0 -2.573139,1.14636 -2.573139,2.57314 L 28,979.73011 c 15.082806,2.00954 22.213417,2.81832 39.622346,2.81832 24.127254,0 38.223634,-2.1432 57.377654,-5.84441 l -0.0252,-35.40077 c 4e-5,-1.42678 -1.14631,-2.57314 -2.5731,-2.57314 l -91.8017,0 z" - style="fill:url(#linearGradient10823-3);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - y="943.7301" - x="34" - height="62" - width="84" - id="rect2487-7" - style="fill:url(#linearGradient10820-0);fill-opacity:1;stroke:none" /> - <rect - style="fill:url(#radialGradient10817-1);fill-opacity:1;stroke:none" - id="rect4321-5" - width="82" - height="60" - x="35" - y="944.7301" /> - <path - sodipodi:nodetypes="cccc" - id="rect4373-1" - d="m 34.5,944.23011 82.5,0 -82.5,60.99999 0,-60.99999 z" - style="fill:url(#linearGradient10814-3);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(1.7320754,0,0,1.7320754,24.34579,838.31798)" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="107" - sodipodi:cx="-1" - id="path4419-3" - style="fill:url(#radialGradient11001-5);fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:url(#radialGradient8482);fill-opacity:1;stroke:none" - id="path4437-5" - sodipodi:cx="-1" - sodipodi:cy="107" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - transform="matrix(1.7320754,0,0,1.7320754,24.34579,780.95949)" /> - </g> - <g - transform="translate(650.39572,-395.60948)" - id="layer1-6-8" - inkscape:label="Camada 1"> - <rect - transform="matrix(0.7755201,0,0,1.4537453,-24.041606,856.9683)" - ry="0.51796591" - rx="0.26239562" - y="120" - x="38.73737" - height="4" - width="41.26263" - id="rect3800-7" - style="opacity:0.73260073;fill:url(#radialGradient11107-3);fill-opacity:1;stroke:none;filter:url(#filter3872-8)" /> - <path - sodipodi:nodetypes="ccccssccc" - id="rect3570-6" - d="m 10.196797,1029.5867 23.606406,0 c 0.109026,0 0.196797,0.086 0.196797,0.1923 l 0,5.7472 c 0,0.1066 -0.09002,0.1704 -0.196797,0.1924 -5.185241,1.0645 -18.154888,1.4166 -23.606406,0 C 10.091311,1035.6911 10,1035.6328 10,1035.5262 l 0,-5.7472 c 0,-0.1065 0.08777,-0.1923 0.196797,-0.1923 z" - style="fill:url(#linearGradient10996-26);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccc" - id="rect4022-1" - d="m 12.168776,1029.5867 c -0.09079,0 -0.168776,0.083 -0.168776,0.1898 l 0,5.7401 c 0,0.1066 0.07798,0.2135 0.168776,0.2135 l 3.888187,0 0,-6.1434 -3.888187,0 z m 13.84135,0 0,6.1434 5.821098,0 c 0.09079,0 0.168776,-0.1069 0.168776,-0.2135 l 0,-5.7401 c 0,-0.1066 -0.07798,-0.1898 -0.168776,-0.1898 l -5.821098,0 z" - style="fill:url(#linearGradient10993-4);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.7237271" - rx="1.7851298" - y="951.72955" - x="2.0005379" - height="80.001083" - width="39.996975" - id="rect2175-5" - style="fill:url(#linearGradient10990-3);fill-opacity:1;stroke:none" /> - <rect - style="opacity:0.70695974;fill:url(#radialGradient10987-51);fill-opacity:1;stroke:none" - id="rect3164-5" - width="39.996975" - height="80.001083" - x="2.0005379" - y="951.72955" - rx="1.7155496" - ry="1.6565403" /> - <rect - style="fill:url(#radialGradient10984-6);fill-opacity:1;stroke:none" - id="rect3174-04" - width="39.996975" - height="33.089149" - x="2.0005379" - y="998.62677" - rx="1.6431732" - ry="1.3948433" /> - <text - transform="scale(0.99108136,1.0089989)" - id="text3658-70" - y="1013.8896" - x="7.6162062" - style="font-size:1.91842496px;font-style:normal;font-weight:bold;fill:url(#linearGradient10981-69);fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" - xml:space="preserve"><tspan - style="fill:url(#linearGradient10981-69);fill-opacity:1" - y="1013.8896" - x="7.6162062" - id="tspan3660-6" - sodipodi:role="line">OXYGEN</tspan></text> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.3854" - x="13.428246" - height="0.6053918" - width="11.413166" - id="rect3870-4" - style="opacity:0.73260073;fill:url(#radialGradient10977-3);fill-opacity:1;stroke:none" /> - <rect - ry="1.6160318" - rx="1.6160318" - y="1011.7048" - x="2.0005379" - height="20.011065" - width="39.996975" - id="rect4018-32" - style="fill:url(#linearGradient10974-58);fill-opacity:1;stroke:none" /> - <rect - transform="matrix(0,1,-1,0,0,0)" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" - id="rect7275-0" - width="0.2382233" - height="18.519377" - x="1012.42" - y="-41.999535" /> - <path - transform="matrix(0.7968167,0,0,0.6896645,-35.37178,948.26401)" - id="path4947-54" - d="m 52,118.9 40,0" - style="opacity:0.63003666;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient11105-7);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4997-9)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="cccc" - id="path5021-1" - d="M 85.933333,5.8497359 C 85.266404,34.586754 87.338901,93.798793 83.459589,114.50486 69.128393,112.87262 68.975828,41.187138 72.111111,5.5042329 l 13.822222,0.345503 z" - style="opacity:0.60439561;fill:url(#linearGradient11103-9);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060-7)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(-0.7142317,0,0,0.6896645,65.083446,948.97091)" - style="opacity:0.76190479;fill:url(#linearGradient11101-1);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060-7)" - d="M 85.733333,5.7497359 C 85.066404,34.486754 84.984404,99.894031 82.459589,114.50486 66.698764,114.86601 77.87361,31.982082 71.111111,5.5042329 l 14.622222,0.245503 z" - id="path6072-6" - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" /> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.1423" - x="2.297204" - height="1.9007041" - width="10.992223" - id="rect3976-6" - style="opacity:0.73260073;fill:url(#radialGradient44599);fill-opacity:1;stroke:none" /> - <path - sodipodi:nodetypes="ccccccccc" - id="path3489-11" - d="m 2.0119272,957.29764 0,0.46099 L 13,957.73011 l 0,42.99999 -11,0 0.014258,0.3494 11.398186,0 0,-43.78186 -11.4005166,0 z" - style="fill:#3e3e3e;fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <use - x="0" - y="0" - xlink:href="#rect3976-6" - id="use7065-90" - transform="matrix(0,3.9486526,-0.5779271,0,593.11395,948.91009)" - width="128" - height="128" /> - <path - transform="matrix(0.686221,0,0,0.7025015,-89.189728,989.64483)" - mask="url(#mask7160-61)" - id="rect7115-5" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467362 -0.84375,1.03125 l 0,50.43749973 c 4.94936,0.59011697 10.01102,0.90624997 15.15625,0.90624997 12.91618,0 25.27421,-1.915556 36.71875,-5.4375 l 0,-45.9062497 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="opacity:0.28937731;fill:url(#linearGradient11095-7);fill-opacity:1;stroke:none;filter:url(#filter7348-78)" - inkscape:connector-curvature="0" /> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,33.868415,978.72071)" - id="g7260-5"> - <path - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256-9)" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7242-6" - inkscape:connector-curvature="0" /> - <path - id="path7188-0" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238-7)" - inkscape:connector-curvature="0" /> - <path - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7180-61" - inkscape:connector-curvature="0" /> - </g> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,32.340621,978.72071)" - id="g7265-1"> - <path - id="path7267-6" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256-9)" - inkscape:connector-curvature="0" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238-7)" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7269-8" - inkscape:connector-curvature="0" /> - <path - id="path7271-7" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <path - sodipodi:nodetypes="cccc" - id="path4351-7" - d="m 29,952.73011 0,56.99999 c 0.05534,2.4723 1.203156,4.3984 5,5 l 7,0" - style="fill:none;stroke:url(#linearGradient10953-61);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4405-7)" - inkscape:connector-curvature="0" /> - <rect - ry="1.6565403" - rx="1.7155496" - y="951.72955" - x="2.0005379" - height="16.551949" - width="39.996975" - id="rect7352-6" - style="fill:url(#linearGradient10950-5);fill-opacity:1;stroke:none" /> - <rect - ry="0" - rx="0" - y="951.7348" - x="18.964886" - height="74.995308" - width="3.0351143" - id="rect7392-2" - style="opacity:0.20879122;fill:url(#linearGradient10947-6);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.04732946,0,0,0.04570148,37.211866,1014.3973)" - id="g4652-7"> - <path - transform="matrix(0.950204,0,0,-0.9781022,-140.58731,145.38383)" - inkscape:r_cy="true" - inkscape:r_cx="true" - d="m 127.31551,65.540108 c 0,34.873682 -28.270709,63.144382 -63.14439,63.144382 -34.873682,0 -63.1443866,-28.2707 -63.1443866,-63.144382 0,-34.873682 28.2707046,-63.1443866 63.1443866,-63.1443866 34.873681,0 63.14439,28.2707046 63.14439,63.1443866 z" - sodipodi:ry="63.144386" - sodipodi:rx="63.144386" - sodipodi:cy="65.540108" - sodipodi:cx="64.17112" - id="path4887-2" - style="opacity:0.9157509;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4648-7)" - sodipodi:type="arc" /> - <g - id="g4542-9" - transform="translate(-142.96868,16.982986)"> - <g - transform="matrix(1.034003,0,0,1.034003,-3.571961,-1.953362)" - id="g3443-7"> - <path - sodipodi:type="arc" - style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path1315-0" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.727272" - sodipodi:ry="42.727272" - d="m 94.909092,44.909092 c 0,23.597621 -19.129651,42.727272 -42.727272,42.727272 -23.597621,0 -42.7272721,-19.129651 -42.7272721,-42.727272 0,-23.597621 19.1296511,-42.7272721 42.7272721,-42.7272721 23.597621,0 42.727272,19.1296511 42.727272,42.7272721 z" - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" /> - <path - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path2190-50" - style="opacity:0.11885244;fill:url(#radialGradient11011-44);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <g - id="g3357-2" - style="opacity:0.57786889"> - <path - id="path3138-65" - d="m 18.32319,89.008621 c 0.08929,0.161616 0.195172,0.304391 0.286126,0.464954 -0.09422,-0.152925 -0.19341,-0.311012 -0.286126,-0.464954 z m 91.41715,0 c -0.0927,0.153942 -0.1919,0.312029 -0.28612,0.464954 0.091,-0.160563 0.19683,-0.303338 0.28612,-0.464954 z m -90.987961,0.786846 c 9.012499,15.667623 25.919,26.216263 45.279382,26.216263 19.360383,0 36.266889,-10.54864 45.279399,-26.216263 -9.425234,15.074563 -26.202555,25.071753 -45.279399,25.071753 -19.076844,0 -35.854164,-9.99719 -45.279382,-25.071753 z" - style="fill:url(#linearGradient11013-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11015-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 21.546815,86.902153 c 0.08342,0.150981 0.182328,0.28436 0.267297,0.434357 -0.08802,-0.142862 -0.180682,-0.290546 -0.267297,-0.434357 z m 85.401185,0 c -0.0866,0.143811 -0.17929,0.291495 -0.2673,0.434357 0.085,-0.149997 0.18388,-0.283376 0.2673,-0.434357 z m -85.00024,0.735065 c 8.419408,14.636582 24.213332,24.491032 42.299653,24.491032 18.086322,0 33.880242,-9.85445 42.299647,-24.491032 -8.804957,14.082532 -24.478205,23.421842 -42.299647,23.421842 -17.821442,0 -33.494685,-9.33931 -42.299653,-23.421842 z" - id="path3143-77" - inkscape:connector-curvature="0" /> - <path - id="path3145-3" - d="m 24.78966,84.242991 c 0.07668,0.138787 0.167604,0.261396 0.245712,0.399281 -0.08091,-0.131326 -0.166091,-0.267083 -0.245712,-0.399281 z m 78.5047,0 c -0.0796,0.132198 -0.1648,0.267955 -0.24572,0.399281 0.0781,-0.137885 0.16904,-0.260494 0.24572,-0.399281 z m -78.136133,0.675706 c 7.739507,13.454618 22.258007,22.513283 38.883784,22.513283 16.625777,0 31.144276,-9.058666 38.883779,-22.513283 -8.093927,12.945319 -22.501492,21.530433 -38.883779,21.530433 -16.382289,0 -30.789854,-8.585114 -38.883784,-21.530433 z" - style="fill:url(#linearGradient11017-55);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11019-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 28.398565,82.501092 c 0.06954,0.125862 0.151993,0.23705 0.222826,0.362091 -0.07337,-0.119094 -0.150621,-0.242206 -0.222826,-0.362091 z m 71.192615,0 c -0.07221,0.119885 -0.14946,0.242997 -0.222835,0.362091 0.07084,-0.125041 0.153293,-0.236229 0.222835,-0.362091 z m -70.858377,0.612769 c 7.018633,12.201428 20.184848,20.416349 35.262068,20.416349 15.077217,0 28.243433,-8.214922 35.262067,-20.416349 -7.340046,11.739565 -20.405662,19.525049 -35.262067,19.525049 -14.856408,0 -27.922024,-7.785484 -35.262068,-19.525049 z" - id="path3147-5" - inkscape:connector-curvature="0" /> - <path - id="path3149-06" - d="m 32.581299,80.504353 c 0.06169,0.11165 0.134832,0.210283 0.197666,0.321206 -0.06509,-0.105646 -0.133615,-0.214858 -0.197666,-0.321206 z m 63.154077,0 c -0.06405,0.106348 -0.132583,0.21556 -0.197673,0.321206 0.06284,-0.110923 0.135981,-0.209556 0.197673,-0.321206 z m -62.857579,0.543579 c 6.226141,10.823734 17.905727,18.111084 31.280539,18.111084 13.37481,0 25.054396,-7.287351 31.280538,-18.111084 -6.511262,10.414022 -18.101606,17.320425 -31.280538,17.320425 -13.178933,0 -24.769278,-6.906403 -31.280539,-17.320425 z" - style="fill:url(#linearGradient11021-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11023-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 35.859703,78.248887 c 0.05528,0.09552 0.120825,0.179894 0.177132,0.274788 -0.05833,-0.09038 -0.119734,-0.183809 -0.177132,-0.274788 z m 56.593697,0 c -0.0574,0.09098 -0.11881,0.184409 -0.177139,0.274788 0.05631,-0.09489 0.121856,-0.179272 0.177139,-0.274788 z m -56.327998,0.465024 c 5.579375,9.259547 16.045697,15.493769 28.031148,15.493769 11.98545,0 22.451772,-6.234223 28.031148,-15.493769 -5.834879,8.909044 -16.221229,14.817372 -28.031148,14.817372 -11.809919,0 -22.196271,-5.908328 -28.031148,-14.817372 z" - id="path3151-5" - inkscape:connector-curvature="0" /> - <path - id="path3153-0" - d="m 39.510842,76.25898 c 0.04873,0.07843 0.106509,0.147722 0.156144,0.225645 -0.05141,-0.07422 -0.105548,-0.150937 -0.156144,-0.225645 z m 49.888034,0 c -0.0506,0.07471 -0.104733,0.151429 -0.15615,0.225645 0.04964,-0.07792 0.107418,-0.14721 0.15615,-0.225645 z m -49.653817,0.381861 c 4.918287,7.603605 14.144477,12.722922 24.709799,12.722922 10.56532,0 19.79151,-5.119317 24.709798,-12.722922 -5.143517,7.315785 -14.299211,12.16749 -24.709798,12.16749 -10.410587,0 -19.566283,-4.851705 -24.709799,-12.16749 z" - style="fill:url(#linearGradient11025-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11027-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 43.011934,73.358075 c 0.04189,0.07264 0.09156,0.1368 0.134228,0.208962 -0.0442,-0.06873 -0.09073,-0.139778 -0.134228,-0.208962 z m 42.88585,0 c -0.0435,0.06918 -0.09003,0.140234 -0.134233,0.208962 0.04267,-0.07216 0.09234,-0.136327 0.134233,-0.208962 z m -42.684507,0.353628 c 4.227966,7.041427 12.159186,11.782245 21.241581,11.782245 9.082393,0 17.013613,-4.740818 21.24158,-11.782245 -4.421583,6.774887 -12.292202,11.267879 -21.24158,11.267879 -8.949378,0 -16.819999,-4.492992 -21.241581,-11.267879 z" - id="path3157-1" - inkscape:connector-curvature="0" /> - <path - id="path3159-2" - d="m 46.613057,70.957326 c 0.03495,0.0624 0.0764,0.117528 0.111999,0.179523 -0.03688,-0.05904 -0.07571,-0.120085 -0.111999,-0.179523 z m 35.783635,0 c -0.03629,0.05944 -0.07512,0.120478 -0.112003,0.179523 0.0356,-0.06199 0.07705,-0.117121 0.112003,-0.179523 z m -35.615636,0.303809 c 3.527784,6.049434 10.145535,10.122367 17.723817,10.122367 7.578282,0 14.196033,-4.072933 17.723817,-10.122367 -3.689336,5.820444 -10.256522,9.680464 -17.723817,9.680464 -7.467294,0 -14.034482,-3.86002 -17.723817,-9.680464 z" - style="fill:url(#linearGradient11029-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11031-08);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 49.814056,68.456546 c 0.02792,0.05546 0.06102,0.104447 0.08946,0.159541 -0.02946,-0.05247 -0.06047,-0.106718 -0.08946,-0.159541 z m 28.581388,0 c -0.02899,0.05282 -0.06,0.107068 -0.08946,0.159541 0.02844,-0.05509 0.06154,-0.104085 0.08946,-0.159541 z M 49.948241,68.72654 c 2.81774,5.376095 8.103523,8.995687 14.156508,8.995687 6.052985,0 11.338768,-3.619592 14.156507,-8.995687 -2.946775,5.172593 -8.19217,8.602971 -14.156507,8.602971 -5.964336,0 -11.209733,-3.430378 -14.156508,-8.602971 z" - id="path3161-8" - inkscape:connector-curvature="0" /> - <path - id="path3163-3" - d="m 57.016302,64.055173 c 0.01453,0.02803 0.03176,0.05278 0.04656,0.08063 -0.01533,-0.02652 -0.03148,-0.05393 -0.04656,-0.08063 z m 14.877113,0 c -0.01509,0.02669 -0.03123,0.05411 -0.04657,0.08063 0.0148,-0.02784 0.03203,-0.0526 0.04657,-0.08063 z m -14.807268,0.136444 c 1.466683,2.716869 4.218026,4.54607 7.368711,4.54607 3.150685,0 5.902027,-1.829201 7.36871,-4.54607 -1.533848,2.614028 -4.264168,4.347606 -7.36871,4.347606 -3.104542,0 -5.834862,-1.733578 -7.368711,-4.347606 z" - style="fill:url(#linearGradient11033-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11035-33);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 53.315147,66.555953 c 0.02127,0.04103 0.0465,0.07727 0.06817,0.118032 -0.02245,-0.03882 -0.04608,-0.07895 -0.06817,-0.118032 z m 21.779266,0 c -0.02209,0.03908 -0.04572,0.07921 -0.06817,0.118032 0.02167,-0.04076 0.0469,-0.077 0.06817,-0.118032 z m -21.677017,0.199746 c 2.147143,3.977346 6.174956,6.655194 10.787383,6.655194 4.612428,0 8.64024,-2.677848 10.787382,-6.655194 -2.245468,3.826792 -6.242505,6.364654 -10.787382,6.364654 -4.544877,0 -8.541913,-2.537862 -10.787383,-6.364654 z" - id="path3165-0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3293-0" - style="opacity:0.28688528"> - <path - style="opacity:0.73360656;fill:url(#linearGradient11037-70);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - id="path3197-4" - inkscape:connector-curvature="0" /> - <path - id="path3199-6" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - style="opacity:0.73360656;fill:url(#linearGradient11039-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11041-34);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - id="path3201-0" - inkscape:connector-curvature="0" /> - <path - id="path3203-3" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - style="opacity:0.73360656;fill:url(#linearGradient11043-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11045-68);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - id="path3205-38" - inkscape:connector-curvature="0" /> - <path - id="path3207-5" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - style="opacity:0.73360656;fill:url(#linearGradient11047-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11049-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - id="path3209-2" - inkscape:connector-curvature="0" /> - <path - id="path3211-26" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - style="opacity:0.73360656;fill:url(#linearGradient11051-03);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11053-11);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - id="path3213-93" - inkscape:connector-curvature="0" /> - <path - id="path3215-21" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - style="opacity:0.73360656;fill:url(#linearGradient11055-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11057-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - id="path3217-50" - inkscape:connector-curvature="0" /> - <path - id="path3219-8" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - style="opacity:0.73360656;fill:url(#linearGradient11059-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3307-4" - transform="translate(-0.565862,0.282931)" - style="opacity:0.28688528"> - <path - id="path3309-9" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - style="opacity:0.73360656;fill:url(#linearGradient11061-53);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11063-60);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - id="path3311-3" - inkscape:connector-curvature="0" /> - <path - id="path3313-0" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - style="opacity:0.73360656;fill:url(#linearGradient11065-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11067-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - id="path3315-0" - inkscape:connector-curvature="0" /> - <path - id="path3317-97" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - style="opacity:0.73360656;fill:url(#linearGradient11069-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11071-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - id="path3319-2" - inkscape:connector-curvature="0" /> - <path - id="path3321-1" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - style="opacity:0.73360656;fill:url(#linearGradient11073-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11075-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - id="path3323-1" - inkscape:connector-curvature="0" /> - <path - id="path3325-1" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - style="opacity:0.73360656;fill:url(#linearGradient11077-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11079-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - id="path3327-4" - inkscape:connector-curvature="0" /> - <path - id="path3329-1" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - style="opacity:0.73360656;fill:url(#linearGradient11081-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11083-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - id="path3331-3" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(1.400964,0,0,1.400964,-10.24782,-2.576398)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path3086-1" - style="opacity:0.15983605;fill:url(#radialGradient11085-51);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:0.19672134;fill:url(#radialGradient11087-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path3100-93" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.988293" - sodipodi:ry="42.988293" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - transform="matrix(-1.400964,0,0,1.400964,135.9619,-2.576398)" /> - <path - id="path3570-4" - d="m 40.9375,19.34375 c -1.378982,0.08425 -2.721284,0.544956 -3.875,1.3125 -5.160376,3.349464 -9.759998,7.797045 -13.40625,13.1875 -7.292501,10.780907 -9.542508,23.591287 -7.25,35.46875 2.292507,11.877459 9.156596,22.92625 19.9375,30.21875 10.780909,7.2925 23.591285,9.54251 35.46875,7.25 11.877462,-2.29251 22.957499,-9.156596 30.25,-19.9375 7.2925,-10.780908 9.5425,-23.591289 7.25,-35.46875 C 107.01999,39.497538 100.1559,28.448751 89.375,21.15625 85.785149,18.722745 80.902255,19.660149 78.46875,23.25 c -2.433505,3.589851 -1.496101,8.472745 2.09375,10.90625 7.265039,4.914273 11.806943,12.22532 13.34375,20.1875 1.536801,7.962181 0.07052,16.45371 -4.84375,23.71875 C 84.148228,85.327539 76.80593,89.838193 68.84375,91.375 60.881568,92.911807 52.390041,91.445523 45.125,86.53125 37.859968,81.616982 33.349307,74.305937 31.8125,66.34375 30.275694,58.381572 31.741981,49.890035 36.65625,42.625 c 2.457137,-3.632522 5.528356,-6.579432 8.96875,-8.8125 2.968319,-1.884093 4.32342,-5.507692 3.3125,-8.875 -1.01092,-3.367307 -4.141021,-5.656122 -7.65625,-5.59375 -0.117417,0.0019 -0.226887,-0.0071 -0.34375,0 z m 21.4375,21 c -1.937828,0.12532 -3.767515,0.973547 -5.125,2.375 -1.447987,1.494885 -2.253965,3.512862 -2.21875,5.59375 -10e-7,1.266966 0,24.0625 0,24.0625 -0.137593,2.885743 1.33379,5.609689 3.8125,7.09375 2.478711,1.484059 5.55254,1.484061 8.03125,0 2.478713,-1.484063 3.950093,-4.208007 3.8125,-7.09375 0,0 -10e-7,-22.795621 0,-24.0625 0.0358,-2.118777 -0.785781,-4.154894 -2.28125,-5.65625 -1.495467,-1.501357 -3.537348,-2.339972 -5.65625,-2.3125 -0.13006,0.0019 -0.245811,-0.0084 -0.375,0 z" - style="fill:url(#radialGradient11089-09);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:4" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4855-2" - d="M 89.052758,110.33731 C 115.83808,95.818903 126.60843,63.173429 113.08007,36.784006 c -3.14854,-6.141789 -7.35212,-11.402152 -12.28011,-15.71269 4.52788,4.044347 8.37165,8.938861 11.28913,14.629954 13.10314,25.559983 2.28328,57.263399 -24.150142,70.76265 -26.43342,13.49924 -58.52431,3.70984 -71.62745,-21.850166 C 3.2083579,59.053773 14.028228,27.350338 40.461648,13.851101 52.955568,7.4706054 66.709008,6.3080926 79.127588,9.5390554 65.940318,5.9457846 51.268668,7.0675156 37.954728,13.86679 10.230318,28.025312 -1.1178821,61.276793 12.625218,88.085107 c 13.74309,26.808323 47.40094,37.075733 75.12534,22.917223 0.4332,-0.22125 0.87703,-0.43458 1.3022,-0.66502 z M 80.055218,9.7786728 c -0.30005,-0.087287 -0.59939,-0.1708794 -0.90105,-0.2531907 0.3006,0.07834 0.60207,0.1696947 0.90105,0.2531907 z" - style="fill:url(#linearGradient11091-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4868-42" - d="M 60.886675,3.5011061 C 30.994595,4.4513813 7.0114547,29.083452 7.0114647,59.284292 c 0,15.796568 6.5792803,30.076913 17.1118103,40.23189 C 60.218215,87.621632 71.214115,42.093571 109.07913,28.465026 99.107975,13.412218 82.025115,3.5011061 62.664525,3.5011061 c -0.60001,0 -1.18239,-0.018932 -1.77785,0 z" - style="opacity:0.57674417;fill:url(#radialGradient11093-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.7399)" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" - sodipodi:ry="17.67767" - sodipodi:rx="17.67767" - sodipodi:cy="65.774605" - sodipodi:cx="177.4838" - id="path7278-6" - style="opacity:0.54945056;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7312-8)" - sodipodi:type="arc" /> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.5922)" - sodipodi:type="arc" - style="fill:url(#radialGradient11009-4);fill-opacity:1;stroke:none" - id="path7280-68" - sodipodi:cx="177.4838" - sodipodi:cy="65.774605" - sodipodi:rx="17.67767" - sodipodi:ry="17.67767" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" /> - <rect - transform="scale(-1,1)" - style="opacity:0.29304026;fill:url(#linearGradient10892-7);fill-opacity:1;stroke:none" - id="rect7402-51" - width="2.6215534" - height="74.980072" - x="-25.621553" - y="951.75006" - rx="0" - ry="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - id="path3584-28" - d="m 62,112 -2,0 0,-96" - style="fill:none;stroke:url(#linearGradient11007-33);stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3598-261)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsscsc" - id="rect7363-7" - d="m 3.9884152,952.73011 36.3115848,0 c 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - style="opacity:0.56306308;fill:url(#linearGradient10888-6);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="0.16450633" - rx="0.25630134" - y="955.68286" - x="22.000366" - height="70.530472" - width="1.4270998" - id="rect3186-28" - style="fill:#000000;fill-opacity:1;stroke:none" /> - <rect - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3572-3" - width="1.4270998" - height="70.530472" - x="22.000366" - y="955.68286" - rx="0.25630134" - ry="0.16450633" /> - <rect - ry="0.16450633" - rx="0.11117215" - y="954.7301" - x="22.399998" - height="70.530472" - width="0.61901248" - id="rect3574-21" - style="opacity:0.71794876;fill:url(#linearGradient10883-1);fill-opacity:1;stroke:none" /> - <path - id="rect3394-3" - d="m 22.000285,962.77201 0,8.26816 1.427204,0 0,-8.26816 -1.427204,0 z" - style="fill:url(#radialGradient10880-3);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.4837111,0,0,0.1142406,-289.45421,930.01349)" - style="opacity:0.46520146;fill:url(#radialGradient11005-70);fill-opacity:1;stroke:none;filter:url(#filter3469-0)" - d="m 642.40625,286.75 0,72.375 5.90625,0 0,-72.375 -5.90625,0 z" - id="path3407-20" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient10876-8);fill-opacity:1;stroke:none" - d="m 22.000285,1020.5549 0,6.2712 1.427204,0 0,-6.2712 -1.427204,0 z" - id="path4287-26" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="ccccc" - id="path4787-1" - d="m 59.301763,96.79545 -4.52e-4,15.95387 3.500264,0 L 62.7,96.79545 l -3.398237,0 z" - style="opacity:0.54945056;fill:url(#radialGradient11003-9);fill-opacity:1;stroke:none;filter:url(#filter4927-9)" - inkscape:connector-curvature="0" /> - <rect - y="951.72955" - x="22.015116" - height="6.0287628" - width="0.54780781" - id="rect7273-37" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" /> - <path - style="opacity:0.47985349;fill:url(#radialGradient10871-5);fill-opacity:1;stroke:none" - d="m 4.1483093,1030.7925 35.7115847,0 c 0.692448,0 1.249906,-0.2307 1.249906,-0.5173 -11.979557,-4.1048 -26.09051,-3.5144 -38.2113962,0 0,0.2866 0.5574578,0.5173 1.2499055,0.5173 z" - id="path7406-8" - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" /> - <g - id="Livello_1-40" - transform="matrix(0.5,0,0,0.5,190,942.59711)" /> - <rect - ry="1.6761006" - rx="1.6761006" - y="951.7301" - x="2" - height="4" - width="40.000008" - id="rect4876-1" - style="opacity:0.65315312;fill:url(#linearGradient10867-15);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.6010762,0,0,0.6010762,374.33595,1083.6037)" - id="g5647-36"> - <path - style="opacity:0.481982;fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5346-81)" - d="m -498,-139.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.311808 -10.96875,3.718748 -11.9257,1.21541 -23.53125,7.587115 -23.53125,13.687495 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687495 -3.99292,-0.40694 -9.15288,-1.293738 -10.96875,-3.718748 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-139.31937 z" - id="path5328-5" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5184-7" - d="m -498,-141.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.215408 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.31937 z" - style="fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5214-1)" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient3381-7-3);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - id="path3435-0" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient3383-8-3);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -497.9851,-141.63165 -14.5625,5.4375 c 0.0823,0.2115 0.14371,0.53213 0.21875,0.90625 l 14.34375,-5.34375 14.28125,5.34375 c 0.0786,-0.3886 0.19552,-0.70835 0.28125,-0.90625 l -14.5625,-5.4375 z m -13.5625,21.21875 c -0.0808,6.89711 -0.65883,13.728 -2.0625,15.375 -1.9651,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.92571,1.21541 -23.53125,7.587123 -23.53125,13.687503 0,0.144795 0.0214,0.294549 0.0313,0.4375 0.692,-5.921036 11.94697,-11.947572 23.5,-13.125003 3.99292,-0.40694 9.00365,-1.413 10.96875,-3.71875 1.47226,-1.72748 2.02909,-9.1492 2.0625,-16.375 z m 27.125,2.0625 c 0.12575,6.40052 0.70665,12.54356 2.03125,14.3125 1.81587,2.42501 6.97582,3.31181 10.96875,3.71875 11.63062,1.18534 22.94516,7.039381 23.5,13.218753 0.0146,-0.173402 0.0625,-0.355119 0.0625,-0.53125 -1e-5,-6.350323 -11.6368,-12.472093 -23.5625,-13.687503 -3.99293,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -1.25624,-1.67765 -1.86615,-7.27675 -2.03125,-13.3125 z" - id="path5218-9" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - sodipodi:nodetypes="cscscscc" - id="path5281-38" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.41058,-0.396513 -21.97647,-1.083033 -39.53125,0 z" - style="opacity:0.11711713;fill:url(#linearGradient3386-41);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-3)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccc" - style="opacity:0.46846846;fill:url(#radialGradient3388-54);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257-87)" - d="m -511.82885,-112.6004 c -0.0609,5.48859 -0.3553,10.83813 -8.03125,11.25 -3.86166,0.69826 -4.19519,2.151173 -4.875,3.531253 9.03627,-1.36341 19.4666,-4.011823 26.94953,-2.786613 l 0.13258,-8.98705 c -4.24239,-1.08888 -9.97027,-1.89853 -14.17586,-3.00759 z" - id="path5235-80" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccccc" - style="opacity:0.4099099;fill:url(#radialGradient3390-7);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257-87)" - d="m -510.4226,-109.2254 c -0.35428,4.99035 -5.21804,8.28427 -9.96166,9.09727 5.05584,-0.89459 16.56776,-1.03031 22.5324,-1.04798 l 0.11048,-6.20554 c -3.46184,-0.52011 -8.29888,-0.68808 -12.68122,-1.84375 z" - id="path5261-0" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsccscc" - id="path5350-0" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 l 53.15625,0 c -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="fill:url(#linearGradient3392-6-12);fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5265-09" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="opacity:0.5495496;fill:none;stroke:url(#linearGradient3394-8-3);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.11711713;fill:url(#linearGradient3396-3);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-3)" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.15799,-0.507294 -21.02253,-0.676229 -39.53125,0 z" - id="path3569-5" - sodipodi:nodetypes="cscscscc" - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.55405405;fill:#000000;fill-opacity:0.49729728;fill-rule:evenodd;stroke:url(#radialGradient3398-5);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter5402-4)" - d="m -484.9792,-110.89486 c -0.0309,6.01372 -3.42647,8.66713 -12.45647,8.86418 13.73668,-0.71873 21.51974,1.32042 27.66815,2.278495 -3.12515,-1.117485 -8.27754,-1.167505 -11.4047,-2.985595 -3.35231,-1.94899 -3.48432,-5.07232 -3.80698,-8.15708 z" - id="path5360-82" - sodipodi:nodetypes="cccsc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - style="opacity:0.43243247;fill:url(#radialGradient3400-99);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649-6)" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.5131,9.379008 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.75355,-6.234085 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - id="path3620-79" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - id="path5543-8" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.41916,9.028413 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.72354,-6.122102 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - style="fill:url(#radialGradient3402-7);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649-6)" - inkscape:connector-curvature="0" /> - <g - id="g5608-1" - mask="url(#mask5641-70)"> - <path - style="opacity:0.27027025;fill:url(#radialGradient3404-20);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178-0)" - d="m -221.76796,93.20625 c -9.66876,0.985393 -19.22404,5.312612 -22.36077,10.23165 -2.95517,4.63431 6.61982,3.87902 10.65303,2.25713 9.14413,-3.49527 22.59713,-3.45175 37.58274,-3.45175 17.89278,0 33.6687,0.89525 42.39208,5.61044 5.43293,2.93663 9.21476,-0.42103 8.02165,-3.09878 -2.41912,-5.429356 -12.55538,-10.470722 -23.13248,-11.54869 -30.70887,-2.692478 -35.76778,-1.861224 -53.15625,0 z" - id="path5283-02" - sodipodi:nodetypes="cscssscc" - transform="matrix(0.9478225,0,0,0.9234897,-313.03905,-186.89507)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9410153,0,0,0.9168573,-314.3667,-186.17274)" - sodipodi:nodetypes="cscscccc" - id="path3661-73" - d="m -221.76796,93.20625 c -9.8876,1.007694 -19.55436,5.201049 -22.5707,10.56315 -2.20296,3.91619 6.14869,3.79059 10.73888,1.97324 9.1757,-3.44127 22.65328,-3.63195 37.70682,-3.63195 17.80642,0 33.44474,0.99076 42.26424,5.67477 5.13681,3.01365 9.64454,-0.29612 8.02046,-3.33328 -2.45487,-5.409725 -12.61965,-10.187663 -23.00345,-11.24593 -29.41254,-2.955932 -35.37204,-1.884684 -53.15625,0 z" - style="opacity:0.27027025;fill:url(#radialGradient3406-5);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178-0)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.14864867;fill:url(#linearGradient3408-3);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-3)" - d="m -499.8125,-102.09375 c -4.83212,0.0399 -10.33985,0.16863 -16.84375,0.40625 1.68391,0.54236 3.18431,1.28749 4.03125,2.28125 1.26736,1.487077 1.80071,7.479387 1.90625,13.6875 l 11.25,0 c 0.91468,0 1.65625,-0.832157 1.65625,-1.84375 l 0,-14.53125 c -0.66994,0.002 -1.30348,-0.006 -2,0 z" - id="path5557-6" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - id="g3290-73" - transform="matrix(0.5,0,0,0.5,218,951.29176)" /> - <path - style="opacity:0.56306308;fill:url(#linearGradient10845-3);fill-opacity:1;stroke:none" - d="m 3.9884152,952.73011 c 11.9179838,-0.55763 23.8669268,-1.02239 36.3115848,0 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - id="path4347-2" - sodipodi:nodetypes="ccsscsc" - inkscape:connector-curvature="0" /> - <rect - y="936.7301" - x="26" - height="78" - width="101" - id="rect3383-74" - style="fill:url(#radialGradient10842-0);fill-opacity:1;stroke:none" - rx="5.1142359" - ry="5.1142359" /> - <rect - ry="4.9999995" - rx="4.9999995" - style="fill:url(#linearGradient10839-81);fill-opacity:1;stroke:none" - id="rect3311-8" - width="100" - height="77" - x="26.5" - y="937.2301" /> - <rect - y="938.7301" - x="28" - height="73" - width="96" - id="rect3271-3" - style="fill:url(#linearGradient10836-16);fill-opacity:1;stroke:none" - rx="2.5754218" - ry="2.5754218" /> - <path - sodipodi:nodetypes="ccccccccc" - id="rect3298-25" - d="m 30.568278,938.72476 c -1.426781,0 -2.573138,1.14636 -2.573138,2.57314 l 0,1.9149 c 0,-1.42679 1.146357,-3.21144 2.573138,-3.21144 l 91.858582,-0.0111 c 1.42679,0 2.57314,1.78465 2.57314,3.21143 l 0,-1.91489 c 0,-1.42678 -1.14635,-2.57314 -2.57314,-2.57314 l -91.858582,0.0111 z" - style="fill:url(#linearGradient10833-0);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.3000005" - rx="1.3000005" - style="opacity:0.70720712;fill:url(#radialGradient10830-1);fill-opacity:1;stroke:none" - id="rect3281-5" - width="87" - height="64.999992" - x="32.5" - y="942.2301" /> - <rect - y="942.2301" - x="32.5" - height="65" - width="87" - id="rect5414-11" - style="opacity:0.70720712;fill:url(#radialGradient10827-9);fill-opacity:1;stroke:none" - rx="1.3000005" - ry="1.3000005" /> - <rect - ry="0.64175582" - rx="0.64175582" - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3267-6" - width="86" - height="64.000023" - x="33" - y="942.7301" /> - <path - sodipodi:nodetypes="cccscccc" - id="path3420-1" - d="m 30.6,938.73011 c -1.426782,0 -2.573139,1.14636 -2.573139,2.57314 L 28,979.73011 c 15.082806,2.00954 22.213417,2.81832 39.622346,2.81832 24.127254,0 38.223634,-2.1432 57.377654,-5.84441 l -0.0252,-35.40077 c 4e-5,-1.42678 -1.14631,-2.57314 -2.5731,-2.57314 l -91.8017,0 z" - style="fill:url(#linearGradient10823-5);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - y="943.7301" - x="34" - height="62" - width="84" - id="rect2487-3" - style="fill:url(#linearGradient10820-9);fill-opacity:1;stroke:none" /> - <rect - style="fill:url(#radialGradient10817-27);fill-opacity:1;stroke:none" - id="rect4321-8" - width="82" - height="60" - x="35" - y="944.7301" /> - <path - sodipodi:nodetypes="cccc" - id="rect4373-24" - d="m 34.5,944.23011 82.5,0 -82.5,60.99999 0,-60.99999 z" - style="fill:url(#linearGradient10814-02);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(1.7320754,0,0,1.7320754,24.34579,838.31798)" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="107" - sodipodi:cx="-1" - id="path4419-7" - style="fill:url(#radialGradient11001-9);fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:url(#radialGradient8482-59);fill-opacity:1;stroke:none" - id="path4437-9" - sodipodi:cx="-1" - sodipodi:cy="107" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - transform="matrix(1.7320754,0,0,1.7320754,24.34579,780.95949)" /> - </g> - <rect - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3, 1;stroke-dashoffset:0" - id="rect13400-2" - width="240" - height="325.71429" - x="306.4772" - y="326.34631" - ry="31.428572" /> - <text - xml:space="preserve" - style="font-size:32px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans" - x="339.33435" - y="359.20346" - id="text14188" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan14190" - x="339.33435" - y="359.20346">STUDENT 1</tspan></text> - <path - style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 353.53768,560.62461 c -12.28495,-0.0689 -24.5699,-0.13781 -36.60051,-0.0523 0.1353,-41.75039 0.0163,-83.65516 -0.28137,-125.55992 12.17491,0.12938 24.52839,0.25876 36.88188,0.38814" - id="path14220" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="fill:none;stroke:#ff0000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 581.47723,332.21138 0,655.30097 2.14286,0 0,0" - id="path14272" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="fill:none;stroke:#ff0000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 478.53714,560.35771 99.27012,-0.94998" - id="path14276" - inkscape:connector-type="polyline" - inkscape:connector-curvature="0" - inkscape:connection-start="#layer1-6-5" - inkscape:connection-start-point="d4" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;stroke:#ff0000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 478.42219,433.61364 100.78535,0.0602" - id="path14276-1" - inkscape:connector-type="polyline" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;stroke:#ff0000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 582.97298,595.74313 100.78535,0.0602" - id="path14276-1-9" - inkscape:connector-type="polyline" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <g - transform="translate(351.5968,-170.27969)" - id="layer1-6-7" - inkscape:label="Camada 1"> - <rect - transform="matrix(0.7755201,0,0,1.4537453,-24.041606,856.9683)" - ry="0.51796591" - rx="0.26239562" - y="120" - x="38.73737" - height="4" - width="41.26263" - id="rect3800-8" - style="opacity:0.73260073;fill:url(#radialGradient11107-0);fill-opacity:1;stroke:none;filter:url(#filter3872-82)" /> - <path - sodipodi:nodetypes="ccccssccc" - id="rect3570-0" - d="m 10.196797,1029.5867 23.606406,0 c 0.109026,0 0.196797,0.086 0.196797,0.1923 l 0,5.7472 c 0,0.1066 -0.09002,0.1704 -0.196797,0.1924 -5.185241,1.0645 -18.154888,1.4166 -23.606406,0 C 10.091311,1035.6911 10,1035.6328 10,1035.5262 l 0,-5.7472 c 0,-0.1065 0.08777,-0.1923 0.196797,-0.1923 z" - style="fill:url(#linearGradient10996-9);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccc" - id="rect4022-0" - d="m 12.168776,1029.5867 c -0.09079,0 -0.168776,0.083 -0.168776,0.1898 l 0,5.7401 c 0,0.1066 0.07798,0.2135 0.168776,0.2135 l 3.888187,0 0,-6.1434 -3.888187,0 z m 13.84135,0 0,6.1434 5.821098,0 c 0.09079,0 0.168776,-0.1069 0.168776,-0.2135 l 0,-5.7401 c 0,-0.1066 -0.07798,-0.1898 -0.168776,-0.1898 l -5.821098,0 z" - style="fill:url(#linearGradient10993-42);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.7237271" - rx="1.7851298" - y="951.72955" - x="2.0005379" - height="80.001083" - width="39.996975" - id="rect2175-8" - style="fill:url(#linearGradient10990-38);fill-opacity:1;stroke:none" /> - <rect - style="opacity:0.70695974;fill:url(#radialGradient10987-8);fill-opacity:1;stroke:none" - id="rect3164-0" - width="39.996975" - height="80.001083" - x="2.0005379" - y="951.72955" - rx="1.7155496" - ry="1.6565403" /> - <rect - style="fill:url(#radialGradient10984-62);fill-opacity:1;stroke:none" - id="rect3174-5" - width="39.996975" - height="33.089149" - x="2.0005379" - y="998.62677" - rx="1.6431732" - ry="1.3948433" /> - <text - transform="scale(0.99108136,1.0089989)" - id="text3658-2" - y="1013.8896" - x="7.6162062" - style="font-size:1.91842496px;font-style:normal;font-weight:bold;fill:url(#linearGradient10981-9);fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" - xml:space="preserve"><tspan - style="fill:url(#linearGradient10981-9);fill-opacity:1" - y="1013.8896" - x="7.6162062" - id="tspan3660-5" - sodipodi:role="line">OXYGEN</tspan></text> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.3854" - x="13.428246" - height="0.6053918" - width="11.413166" - id="rect3870-8" - style="opacity:0.73260073;fill:url(#radialGradient10977-73);fill-opacity:1;stroke:none" /> - <rect - ry="1.6160318" - rx="1.6160318" - y="1011.7048" - x="2.0005379" - height="20.011065" - width="39.996975" - id="rect4018-8" - style="fill:url(#linearGradient10974-21);fill-opacity:1;stroke:none" /> - <rect - transform="matrix(0,1,-1,0,0,0)" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" - id="rect7275-7" - width="0.2382233" - height="18.519377" - x="1012.42" - y="-41.999535" /> - <path - transform="matrix(0.7968167,0,0,0.6896645,-35.37178,948.26401)" - id="path4947-9" - d="m 52,118.9 40,0" - style="opacity:0.63003666;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient11105-6);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4997-0)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="cccc" - id="path5021-2" - d="M 85.933333,5.8497359 C 85.266404,34.586754 87.338901,93.798793 83.459589,114.50486 69.128393,112.87262 68.975828,41.187138 72.111111,5.5042329 l 13.822222,0.345503 z" - style="opacity:0.60439561;fill:url(#linearGradient11103-7);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060-79)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(-0.7142317,0,0,0.6896645,65.083446,948.97091)" - style="opacity:0.76190479;fill:url(#linearGradient11101-6);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060-79)" - d="M 85.733333,5.7497359 C 85.066404,34.486754 84.984404,99.894031 82.459589,114.50486 66.698764,114.86601 77.87361,31.982082 71.111111,5.5042329 l 14.622222,0.245503 z" - id="path6072-0" - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" /> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.1423" - x="2.297204" - height="1.9007041" - width="10.992223" - id="rect3976-9" - style="opacity:0.73260073;fill:url(#radialGradient44597);fill-opacity:1;stroke:none" /> - <path - sodipodi:nodetypes="ccccccccc" - id="path3489-5" - d="m 2.0119272,957.29764 0,0.46099 L 13,957.73011 l 0,42.99999 -11,0 0.014258,0.3494 11.398186,0 0,-43.78186 -11.4005166,0 z" - style="fill:#3e3e3e;fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <use - x="0" - y="0" - xlink:href="#rect3976-9" - id="use7065-1" - transform="matrix(0,3.9486526,-0.5779271,0,593.11395,948.91009)" - width="128" - height="128" /> - <path - transform="matrix(0.686221,0,0,0.7025015,-89.189728,989.64483)" - mask="url(#mask7160-85)" - id="rect7115-6" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467362 -0.84375,1.03125 l 0,50.43749973 c 4.94936,0.59011697 10.01102,0.90624997 15.15625,0.90624997 12.91618,0 25.27421,-1.915556 36.71875,-5.4375 l 0,-45.9062497 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="opacity:0.28937731;fill:url(#linearGradient11095-0);fill-opacity:1;stroke:none;filter:url(#filter7348-9)" - inkscape:connector-curvature="0" /> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,33.868415,978.72071)" - id="g7260-2"> - <path - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256-1)" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7242-18" - inkscape:connector-curvature="0" /> - <path - id="path7188-1" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238-4)" - inkscape:connector-curvature="0" /> - <path - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7180-7" - inkscape:connector-curvature="0" /> - </g> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,32.340621,978.72071)" - id="g7265-8"> - <path - id="path7267-2" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256-1)" - inkscape:connector-curvature="0" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238-4)" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7269-36" - inkscape:connector-curvature="0" /> - <path - id="path7271-4" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <path - sodipodi:nodetypes="cccc" - id="path4351-1" - d="m 29,952.73011 0,56.99999 c 0.05534,2.4723 1.203156,4.3984 5,5 l 7,0" - style="fill:none;stroke:url(#linearGradient10953-1);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4405-4)" - inkscape:connector-curvature="0" /> - <rect - ry="1.6565403" - rx="1.7155496" - y="951.72955" - x="2.0005379" - height="16.551949" - width="39.996975" - id="rect7352-9" - style="fill:url(#linearGradient10950-0);fill-opacity:1;stroke:none" /> - <rect - ry="0" - rx="0" - y="951.7348" - x="18.964886" - height="74.995308" - width="3.0351143" - id="rect7392-4" - style="opacity:0.20879122;fill:url(#linearGradient10947-2);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.04732946,0,0,0.04570148,37.211866,1014.3973)" - id="g4652-2"> - <path - transform="matrix(0.950204,0,0,-0.9781022,-140.58731,145.38383)" - inkscape:r_cy="true" - inkscape:r_cx="true" - d="m 127.31551,65.540108 c 0,34.873682 -28.270709,63.144382 -63.14439,63.144382 -34.873682,0 -63.1443866,-28.2707 -63.1443866,-63.144382 0,-34.873682 28.2707046,-63.1443866 63.1443866,-63.1443866 34.873681,0 63.14439,28.2707046 63.14439,63.1443866 z" - sodipodi:ry="63.144386" - sodipodi:rx="63.144386" - sodipodi:cy="65.540108" - sodipodi:cx="64.17112" - id="path4887-1" - style="opacity:0.9157509;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4648-4)" - sodipodi:type="arc" /> - <g - id="g4542-6" - transform="translate(-142.96868,16.982986)"> - <g - transform="matrix(1.034003,0,0,1.034003,-3.571961,-1.953362)" - id="g3443-2"> - <path - sodipodi:type="arc" - style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path1315-1" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.727272" - sodipodi:ry="42.727272" - d="m 94.909092,44.909092 c 0,23.597621 -19.129651,42.727272 -42.727272,42.727272 -23.597621,0 -42.7272721,-19.129651 -42.7272721,-42.727272 0,-23.597621 19.1296511,-42.7272721 42.7272721,-42.7272721 23.597621,0 42.727272,19.1296511 42.727272,42.7272721 z" - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" /> - <path - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path2190-2" - style="opacity:0.11885244;fill:url(#radialGradient11011-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <g - id="g3357-6" - style="opacity:0.57786889"> - <path - id="path3138-8" - d="m 18.32319,89.008621 c 0.08929,0.161616 0.195172,0.304391 0.286126,0.464954 -0.09422,-0.152925 -0.19341,-0.311012 -0.286126,-0.464954 z m 91.41715,0 c -0.0927,0.153942 -0.1919,0.312029 -0.28612,0.464954 0.091,-0.160563 0.19683,-0.303338 0.28612,-0.464954 z m -90.987961,0.786846 c 9.012499,15.667623 25.919,26.216263 45.279382,26.216263 19.360383,0 36.266889,-10.54864 45.279399,-26.216263 -9.425234,15.074563 -26.202555,25.071753 -45.279399,25.071753 -19.076844,0 -35.854164,-9.99719 -45.279382,-25.071753 z" - style="fill:url(#linearGradient11013-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11015-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 21.546815,86.902153 c 0.08342,0.150981 0.182328,0.28436 0.267297,0.434357 -0.08802,-0.142862 -0.180682,-0.290546 -0.267297,-0.434357 z m 85.401185,0 c -0.0866,0.143811 -0.17929,0.291495 -0.2673,0.434357 0.085,-0.149997 0.18388,-0.283376 0.2673,-0.434357 z m -85.00024,0.735065 c 8.419408,14.636582 24.213332,24.491032 42.299653,24.491032 18.086322,0 33.880242,-9.85445 42.299647,-24.491032 -8.804957,14.082532 -24.478205,23.421842 -42.299647,23.421842 -17.821442,0 -33.494685,-9.33931 -42.299653,-23.421842 z" - id="path3143-25" - inkscape:connector-curvature="0" /> - <path - id="path3145-5" - d="m 24.78966,84.242991 c 0.07668,0.138787 0.167604,0.261396 0.245712,0.399281 -0.08091,-0.131326 -0.166091,-0.267083 -0.245712,-0.399281 z m 78.5047,0 c -0.0796,0.132198 -0.1648,0.267955 -0.24572,0.399281 0.0781,-0.137885 0.16904,-0.260494 0.24572,-0.399281 z m -78.136133,0.675706 c 7.739507,13.454618 22.258007,22.513283 38.883784,22.513283 16.625777,0 31.144276,-9.058666 38.883779,-22.513283 -8.093927,12.945319 -22.501492,21.530433 -38.883779,21.530433 -16.382289,0 -30.789854,-8.585114 -38.883784,-21.530433 z" - style="fill:url(#linearGradient11017-45);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11019-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 28.398565,82.501092 c 0.06954,0.125862 0.151993,0.23705 0.222826,0.362091 -0.07337,-0.119094 -0.150621,-0.242206 -0.222826,-0.362091 z m 71.192615,0 c -0.07221,0.119885 -0.14946,0.242997 -0.222835,0.362091 0.07084,-0.125041 0.153293,-0.236229 0.222835,-0.362091 z m -70.858377,0.612769 c 7.018633,12.201428 20.184848,20.416349 35.262068,20.416349 15.077217,0 28.243433,-8.214922 35.262067,-20.416349 -7.340046,11.739565 -20.405662,19.525049 -35.262067,19.525049 -14.856408,0 -27.922024,-7.785484 -35.262068,-19.525049 z" - id="path3147-2" - inkscape:connector-curvature="0" /> - <path - id="path3149-9" - d="m 32.581299,80.504353 c 0.06169,0.11165 0.134832,0.210283 0.197666,0.321206 -0.06509,-0.105646 -0.133615,-0.214858 -0.197666,-0.321206 z m 63.154077,0 c -0.06405,0.106348 -0.132583,0.21556 -0.197673,0.321206 0.06284,-0.110923 0.135981,-0.209556 0.197673,-0.321206 z m -62.857579,0.543579 c 6.226141,10.823734 17.905727,18.111084 31.280539,18.111084 13.37481,0 25.054396,-7.287351 31.280538,-18.111084 -6.511262,10.414022 -18.101606,17.320425 -31.280538,17.320425 -13.178933,0 -24.769278,-6.906403 -31.280539,-17.320425 z" - style="fill:url(#linearGradient11021-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11023-18);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 35.859703,78.248887 c 0.05528,0.09552 0.120825,0.179894 0.177132,0.274788 -0.05833,-0.09038 -0.119734,-0.183809 -0.177132,-0.274788 z m 56.593697,0 c -0.0574,0.09098 -0.11881,0.184409 -0.177139,0.274788 0.05631,-0.09489 0.121856,-0.179272 0.177139,-0.274788 z m -56.327998,0.465024 c 5.579375,9.259547 16.045697,15.493769 28.031148,15.493769 11.98545,0 22.451772,-6.234223 28.031148,-15.493769 -5.834879,8.909044 -16.221229,14.817372 -28.031148,14.817372 -11.809919,0 -22.196271,-5.908328 -28.031148,-14.817372 z" - id="path3151-7" - inkscape:connector-curvature="0" /> - <path - id="path3153-36" - d="m 39.510842,76.25898 c 0.04873,0.07843 0.106509,0.147722 0.156144,0.225645 -0.05141,-0.07422 -0.105548,-0.150937 -0.156144,-0.225645 z m 49.888034,0 c -0.0506,0.07471 -0.104733,0.151429 -0.15615,0.225645 0.04964,-0.07792 0.107418,-0.14721 0.15615,-0.225645 z m -49.653817,0.381861 c 4.918287,7.603605 14.144477,12.722922 24.709799,12.722922 10.56532,0 19.79151,-5.119317 24.709798,-12.722922 -5.143517,7.315785 -14.299211,12.16749 -24.709798,12.16749 -10.410587,0 -19.566283,-4.851705 -24.709799,-12.16749 z" - style="fill:url(#linearGradient11025-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11027-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 43.011934,73.358075 c 0.04189,0.07264 0.09156,0.1368 0.134228,0.208962 -0.0442,-0.06873 -0.09073,-0.139778 -0.134228,-0.208962 z m 42.88585,0 c -0.0435,0.06918 -0.09003,0.140234 -0.134233,0.208962 0.04267,-0.07216 0.09234,-0.136327 0.134233,-0.208962 z m -42.684507,0.353628 c 4.227966,7.041427 12.159186,11.782245 21.241581,11.782245 9.082393,0 17.013613,-4.740818 21.24158,-11.782245 -4.421583,6.774887 -12.292202,11.267879 -21.24158,11.267879 -8.949378,0 -16.819999,-4.492992 -21.241581,-11.267879 z" - id="path3157-9" - inkscape:connector-curvature="0" /> - <path - id="path3159-28" - d="m 46.613057,70.957326 c 0.03495,0.0624 0.0764,0.117528 0.111999,0.179523 -0.03688,-0.05904 -0.07571,-0.120085 -0.111999,-0.179523 z m 35.783635,0 c -0.03629,0.05944 -0.07512,0.120478 -0.112003,0.179523 0.0356,-0.06199 0.07705,-0.117121 0.112003,-0.179523 z m -35.615636,0.303809 c 3.527784,6.049434 10.145535,10.122367 17.723817,10.122367 7.578282,0 14.196033,-4.072933 17.723817,-10.122367 -3.689336,5.820444 -10.256522,9.680464 -17.723817,9.680464 -7.467294,0 -14.034482,-3.86002 -17.723817,-9.680464 z" - style="fill:url(#linearGradient11029-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11031-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 49.814056,68.456546 c 0.02792,0.05546 0.06102,0.104447 0.08946,0.159541 -0.02946,-0.05247 -0.06047,-0.106718 -0.08946,-0.159541 z m 28.581388,0 c -0.02899,0.05282 -0.06,0.107068 -0.08946,0.159541 0.02844,-0.05509 0.06154,-0.104085 0.08946,-0.159541 z M 49.948241,68.72654 c 2.81774,5.376095 8.103523,8.995687 14.156508,8.995687 6.052985,0 11.338768,-3.619592 14.156507,-8.995687 -2.946775,5.172593 -8.19217,8.602971 -14.156507,8.602971 -5.964336,0 -11.209733,-3.430378 -14.156508,-8.602971 z" - id="path3161-2" - inkscape:connector-curvature="0" /> - <path - id="path3163-09" - d="m 57.016302,64.055173 c 0.01453,0.02803 0.03176,0.05278 0.04656,0.08063 -0.01533,-0.02652 -0.03148,-0.05393 -0.04656,-0.08063 z m 14.877113,0 c -0.01509,0.02669 -0.03123,0.05411 -0.04657,0.08063 0.0148,-0.02784 0.03203,-0.0526 0.04657,-0.08063 z m -14.807268,0.136444 c 1.466683,2.716869 4.218026,4.54607 7.368711,4.54607 3.150685,0 5.902027,-1.829201 7.36871,-4.54607 -1.533848,2.614028 -4.264168,4.347606 -7.36871,4.347606 -3.104542,0 -5.834862,-1.733578 -7.368711,-4.347606 z" - style="fill:url(#linearGradient11033-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11035-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 53.315147,66.555953 c 0.02127,0.04103 0.0465,0.07727 0.06817,0.118032 -0.02245,-0.03882 -0.04608,-0.07895 -0.06817,-0.118032 z m 21.779266,0 c -0.02209,0.03908 -0.04572,0.07921 -0.06817,0.118032 0.02167,-0.04076 0.0469,-0.077 0.06817,-0.118032 z m -21.677017,0.199746 c 2.147143,3.977346 6.174956,6.655194 10.787383,6.655194 4.612428,0 8.64024,-2.677848 10.787382,-6.655194 -2.245468,3.826792 -6.242505,6.364654 -10.787382,6.364654 -4.544877,0 -8.541913,-2.537862 -10.787383,-6.364654 z" - id="path3165-9" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3293-8" - style="opacity:0.28688528"> - <path - style="opacity:0.73360656;fill:url(#linearGradient11037-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - id="path3197-43" - inkscape:connector-curvature="0" /> - <path - id="path3199-7" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - style="opacity:0.73360656;fill:url(#linearGradient11039-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11041-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - id="path3201-06" - inkscape:connector-curvature="0" /> - <path - id="path3203-6" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - style="opacity:0.73360656;fill:url(#linearGradient11043-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11045-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - id="path3205-4" - inkscape:connector-curvature="0" /> - <path - id="path3207-0" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - style="opacity:0.73360656;fill:url(#linearGradient11047-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11049-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - id="path3209-0" - inkscape:connector-curvature="0" /> - <path - id="path3211-3" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - style="opacity:0.73360656;fill:url(#linearGradient11051-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11053-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - id="path3213-3" - inkscape:connector-curvature="0" /> - <path - id="path3215-1" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - style="opacity:0.73360656;fill:url(#linearGradient11055-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11057-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - id="path3217-5" - inkscape:connector-curvature="0" /> - <path - id="path3219-9" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - style="opacity:0.73360656;fill:url(#linearGradient11059-07);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3307-2" - transform="translate(-0.565862,0.282931)" - style="opacity:0.28688528"> - <path - id="path3309-96" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - style="opacity:0.73360656;fill:url(#linearGradient11061-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11063-66);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - id="path3311-7" - inkscape:connector-curvature="0" /> - <path - id="path3313-1" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - style="opacity:0.73360656;fill:url(#linearGradient11065-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11067-91);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - id="path3315-6" - inkscape:connector-curvature="0" /> - <path - id="path3317-7" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - style="opacity:0.73360656;fill:url(#linearGradient11069-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11071-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - id="path3319-5" - inkscape:connector-curvature="0" /> - <path - id="path3321-2" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - style="opacity:0.73360656;fill:url(#linearGradient11073-79);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11075-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - id="path3323-6" - inkscape:connector-curvature="0" /> - <path - id="path3325-7" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - style="opacity:0.73360656;fill:url(#linearGradient11077-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11079-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - id="path3327-3" - inkscape:connector-curvature="0" /> - <path - id="path3329-8" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - style="opacity:0.73360656;fill:url(#linearGradient11081-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11083-96);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - id="path3331-92" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(1.400964,0,0,1.400964,-10.24782,-2.576398)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path3086-0" - style="opacity:0.15983605;fill:url(#radialGradient11085-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:0.19672134;fill:url(#radialGradient11087-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path3100-7" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.988293" - sodipodi:ry="42.988293" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - transform="matrix(-1.400964,0,0,1.400964,135.9619,-2.576398)" /> - <path - id="path3570-8" - d="m 40.9375,19.34375 c -1.378982,0.08425 -2.721284,0.544956 -3.875,1.3125 -5.160376,3.349464 -9.759998,7.797045 -13.40625,13.1875 -7.292501,10.780907 -9.542508,23.591287 -7.25,35.46875 2.292507,11.877459 9.156596,22.92625 19.9375,30.21875 10.780909,7.2925 23.591285,9.54251 35.46875,7.25 11.877462,-2.29251 22.957499,-9.156596 30.25,-19.9375 7.2925,-10.780908 9.5425,-23.591289 7.25,-35.46875 C 107.01999,39.497538 100.1559,28.448751 89.375,21.15625 85.785149,18.722745 80.902255,19.660149 78.46875,23.25 c -2.433505,3.589851 -1.496101,8.472745 2.09375,10.90625 7.265039,4.914273 11.806943,12.22532 13.34375,20.1875 1.536801,7.962181 0.07052,16.45371 -4.84375,23.71875 C 84.148228,85.327539 76.80593,89.838193 68.84375,91.375 60.881568,92.911807 52.390041,91.445523 45.125,86.53125 37.859968,81.616982 33.349307,74.305937 31.8125,66.34375 30.275694,58.381572 31.741981,49.890035 36.65625,42.625 c 2.457137,-3.632522 5.528356,-6.579432 8.96875,-8.8125 2.968319,-1.884093 4.32342,-5.507692 3.3125,-8.875 -1.01092,-3.367307 -4.141021,-5.656122 -7.65625,-5.59375 -0.117417,0.0019 -0.226887,-0.0071 -0.34375,0 z m 21.4375,21 c -1.937828,0.12532 -3.767515,0.973547 -5.125,2.375 -1.447987,1.494885 -2.253965,3.512862 -2.21875,5.59375 -10e-7,1.266966 0,24.0625 0,24.0625 -0.137593,2.885743 1.33379,5.609689 3.8125,7.09375 2.478711,1.484059 5.55254,1.484061 8.03125,0 2.478713,-1.484063 3.950093,-4.208007 3.8125,-7.09375 0,0 -10e-7,-22.795621 0,-24.0625 0.0358,-2.118777 -0.785781,-4.154894 -2.28125,-5.65625 -1.495467,-1.501357 -3.537348,-2.339972 -5.65625,-2.3125 -0.13006,0.0019 -0.245811,-0.0084 -0.375,0 z" - style="fill:url(#radialGradient11089-9);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:4" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4855-3" - d="M 89.052758,110.33731 C 115.83808,95.818903 126.60843,63.173429 113.08007,36.784006 c -3.14854,-6.141789 -7.35212,-11.402152 -12.28011,-15.71269 4.52788,4.044347 8.37165,8.938861 11.28913,14.629954 13.10314,25.559983 2.28328,57.263399 -24.150142,70.76265 -26.43342,13.49924 -58.52431,3.70984 -71.62745,-21.850166 C 3.2083579,59.053773 14.028228,27.350338 40.461648,13.851101 52.955568,7.4706054 66.709008,6.3080926 79.127588,9.5390554 65.940318,5.9457846 51.268668,7.0675156 37.954728,13.86679 10.230318,28.025312 -1.1178821,61.276793 12.625218,88.085107 c 13.74309,26.808323 47.40094,37.075733 75.12534,22.917223 0.4332,-0.22125 0.87703,-0.43458 1.3022,-0.66502 z M 80.055218,9.7786728 c -0.30005,-0.087287 -0.59939,-0.1708794 -0.90105,-0.2531907 0.3006,0.07834 0.60207,0.1696947 0.90105,0.2531907 z" - style="fill:url(#linearGradient11091-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4868-6" - d="M 60.886675,3.5011061 C 30.994595,4.4513813 7.0114547,29.083452 7.0114647,59.284292 c 0,15.796568 6.5792803,30.076913 17.1118103,40.23189 C 60.218215,87.621632 71.214115,42.093571 109.07913,28.465026 99.107975,13.412218 82.025115,3.5011061 62.664525,3.5011061 c -0.60001,0 -1.18239,-0.018932 -1.77785,0 z" - style="opacity:0.57674417;fill:url(#radialGradient11093-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.7399)" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" - sodipodi:ry="17.67767" - sodipodi:rx="17.67767" - sodipodi:cy="65.774605" - sodipodi:cx="177.4838" - id="path7278-91" - style="opacity:0.54945056;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7312-6)" - sodipodi:type="arc" /> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.5922)" - sodipodi:type="arc" - style="fill:url(#radialGradient11009-2);fill-opacity:1;stroke:none" - id="path7280-5" - sodipodi:cx="177.4838" - sodipodi:cy="65.774605" - sodipodi:rx="17.67767" - sodipodi:ry="17.67767" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" /> - <rect - transform="scale(-1,1)" - style="opacity:0.29304026;fill:url(#linearGradient10892-01);fill-opacity:1;stroke:none" - id="rect7402-54" - width="2.6215534" - height="74.980072" - x="-25.621553" - y="951.75006" - rx="0" - ry="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - id="path3584-5" - d="m 62,112 -2,0 0,-96" - style="fill:none;stroke:url(#linearGradient11007-72);stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3598-6)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsscsc" - id="rect7363-8" - d="m 3.9884152,952.73011 36.3115848,0 c 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - style="opacity:0.56306308;fill:url(#linearGradient10888-0);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="0.16450633" - rx="0.25630134" - y="955.68286" - x="22.000366" - height="70.530472" - width="1.4270998" - id="rect3186-7" - style="fill:#000000;fill-opacity:1;stroke:none" /> - <rect - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3572-8" - width="1.4270998" - height="70.530472" - x="22.000366" - y="955.68286" - rx="0.25630134" - ry="0.16450633" /> - <rect - ry="0.16450633" - rx="0.11117215" - y="954.7301" - x="22.399998" - height="70.530472" - width="0.61901248" - id="rect3574-5" - style="opacity:0.71794876;fill:url(#linearGradient10883-6);fill-opacity:1;stroke:none" /> - <path - id="rect3394-8" - d="m 22.000285,962.77201 0,8.26816 1.427204,0 0,-8.26816 -1.427204,0 z" - style="fill:url(#radialGradient10880-2);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.4837111,0,0,0.1142406,-289.45421,930.01349)" - style="opacity:0.46520146;fill:url(#radialGradient11005-6);fill-opacity:1;stroke:none;filter:url(#filter3469-1)" - d="m 642.40625,286.75 0,72.375 5.90625,0 0,-72.375 -5.90625,0 z" - id="path3407-0" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient10876-18);fill-opacity:1;stroke:none" - d="m 22.000285,1020.5549 0,6.2712 1.427204,0 0,-6.2712 -1.427204,0 z" - id="path4287-5" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="ccccc" - id="path4787-5" - d="m 59.301763,96.79545 -4.52e-4,15.95387 3.500264,0 L 62.7,96.79545 l -3.398237,0 z" - style="opacity:0.54945056;fill:url(#radialGradient11003-3);fill-opacity:1;stroke:none;filter:url(#filter4927-7)" - inkscape:connector-curvature="0" /> - <rect - y="951.72955" - x="22.015116" - height="6.0287628" - width="0.54780781" - id="rect7273-0" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" /> - <path - style="opacity:0.47985349;fill:url(#radialGradient10871-9);fill-opacity:1;stroke:none" - d="m 4.1483093,1030.7925 35.7115847,0 c 0.692448,0 1.249906,-0.2307 1.249906,-0.5173 -11.979557,-4.1048 -26.09051,-3.5144 -38.2113962,0 0,0.2866 0.5574578,0.5173 1.2499055,0.5173 z" - id="path7406-83" - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" /> - <g - id="Livello_1-7" - transform="matrix(0.5,0,0,0.5,190,942.59711)" /> - <rect - ry="1.6761006" - rx="1.6761006" - y="951.7301" - x="2" - height="4" - width="40.000008" - id="rect4876-5" - style="opacity:0.65315312;fill:url(#linearGradient10867-2);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.6010762,0,0,0.6010762,374.33595,1083.6037)" - id="g5647-7"> - <path - style="opacity:0.481982;fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5346-3)" - d="m -498,-139.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.311808 -10.96875,3.718748 -11.9257,1.21541 -23.53125,7.587115 -23.53125,13.687495 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687495 -3.99292,-0.40694 -9.15288,-1.293738 -10.96875,-3.718748 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-139.31937 z" - id="path5328-54" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5184-0" - d="m -498,-141.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.215408 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.31937 z" - style="fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5214-5)" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient3381-7-1);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - id="path3435-3" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient3383-8-72);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -497.9851,-141.63165 -14.5625,5.4375 c 0.0823,0.2115 0.14371,0.53213 0.21875,0.90625 l 14.34375,-5.34375 14.28125,5.34375 c 0.0786,-0.3886 0.19552,-0.70835 0.28125,-0.90625 l -14.5625,-5.4375 z m -13.5625,21.21875 c -0.0808,6.89711 -0.65883,13.728 -2.0625,15.375 -1.9651,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.92571,1.21541 -23.53125,7.587123 -23.53125,13.687503 0,0.144795 0.0214,0.294549 0.0313,0.4375 0.692,-5.921036 11.94697,-11.947572 23.5,-13.125003 3.99292,-0.40694 9.00365,-1.413 10.96875,-3.71875 1.47226,-1.72748 2.02909,-9.1492 2.0625,-16.375 z m 27.125,2.0625 c 0.12575,6.40052 0.70665,12.54356 2.03125,14.3125 1.81587,2.42501 6.97582,3.31181 10.96875,3.71875 11.63062,1.18534 22.94516,7.039381 23.5,13.218753 0.0146,-0.173402 0.0625,-0.355119 0.0625,-0.53125 -1e-5,-6.350323 -11.6368,-12.472093 -23.5625,-13.687503 -3.99293,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -1.25624,-1.67765 -1.86615,-7.27675 -2.03125,-13.3125 z" - id="path5218-3" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - sodipodi:nodetypes="cscscscc" - id="path5281-53" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.41058,-0.396513 -21.97647,-1.083033 -39.53125,0 z" - style="opacity:0.11711713;fill:url(#linearGradient3386-45);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-8)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccc" - style="opacity:0.46846846;fill:url(#radialGradient3388-19);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257-6)" - d="m -511.82885,-112.6004 c -0.0609,5.48859 -0.3553,10.83813 -8.03125,11.25 -3.86166,0.69826 -4.19519,2.151173 -4.875,3.531253 9.03627,-1.36341 19.4666,-4.011823 26.94953,-2.786613 l 0.13258,-8.98705 c -4.24239,-1.08888 -9.97027,-1.89853 -14.17586,-3.00759 z" - id="path5235-3" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccccc" - style="opacity:0.4099099;fill:url(#radialGradient3390-5);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257-6)" - d="m -510.4226,-109.2254 c -0.35428,4.99035 -5.21804,8.28427 -9.96166,9.09727 5.05584,-0.89459 16.56776,-1.03031 22.5324,-1.04798 l 0.11048,-6.20554 c -3.46184,-0.52011 -8.29888,-0.68808 -12.68122,-1.84375 z" - id="path5261-3" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsccscc" - id="path5350-8" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 l 53.15625,0 c -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="fill:url(#linearGradient3392-6-7);fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5265-9" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="opacity:0.5495496;fill:none;stroke:url(#linearGradient3394-8-81);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.11711713;fill:url(#linearGradient3396-5);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-8)" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.15799,-0.507294 -21.02253,-0.676229 -39.53125,0 z" - id="path3569-42" - sodipodi:nodetypes="cscscscc" - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.55405405;fill:#000000;fill-opacity:0.49729728;fill-rule:evenodd;stroke:url(#radialGradient3398-53);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter5402-8)" - d="m -484.9792,-110.89486 c -0.0309,6.01372 -3.42647,8.66713 -12.45647,8.86418 13.73668,-0.71873 21.51974,1.32042 27.66815,2.278495 -3.12515,-1.117485 -8.27754,-1.167505 -11.4047,-2.985595 -3.35231,-1.94899 -3.48432,-5.07232 -3.80698,-8.15708 z" - id="path5360-4" - sodipodi:nodetypes="cccsc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - style="opacity:0.43243247;fill:url(#radialGradient3400-15);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649-8)" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.5131,9.379008 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.75355,-6.234085 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - id="path3620-2" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - id="path5543-69" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.41916,9.028413 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.72354,-6.122102 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - style="fill:url(#radialGradient3402-44);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649-8)" - inkscape:connector-curvature="0" /> - <g - id="g5608-0" - mask="url(#mask5641-64)"> - <path - style="opacity:0.27027025;fill:url(#radialGradient3404-3);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178-7)" - d="m -221.76796,93.20625 c -9.66876,0.985393 -19.22404,5.312612 -22.36077,10.23165 -2.95517,4.63431 6.61982,3.87902 10.65303,2.25713 9.14413,-3.49527 22.59713,-3.45175 37.58274,-3.45175 17.89278,0 33.6687,0.89525 42.39208,5.61044 5.43293,2.93663 9.21476,-0.42103 8.02165,-3.09878 -2.41912,-5.429356 -12.55538,-10.470722 -23.13248,-11.54869 -30.70887,-2.692478 -35.76778,-1.861224 -53.15625,0 z" - id="path5283-5" - sodipodi:nodetypes="cscssscc" - transform="matrix(0.9478225,0,0,0.9234897,-313.03905,-186.89507)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9410153,0,0,0.9168573,-314.3667,-186.17274)" - sodipodi:nodetypes="cscscccc" - id="path3661-0" - d="m -221.76796,93.20625 c -9.8876,1.007694 -19.55436,5.201049 -22.5707,10.56315 -2.20296,3.91619 6.14869,3.79059 10.73888,1.97324 9.1757,-3.44127 22.65328,-3.63195 37.70682,-3.63195 17.80642,0 33.44474,0.99076 42.26424,5.67477 5.13681,3.01365 9.64454,-0.29612 8.02046,-3.33328 -2.45487,-5.409725 -12.61965,-10.187663 -23.00345,-11.24593 -29.41254,-2.955932 -35.37204,-1.884684 -53.15625,0 z" - style="opacity:0.27027025;fill:url(#radialGradient3406-6);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178-7)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.14864867;fill:url(#linearGradient3408-6);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-8)" - d="m -499.8125,-102.09375 c -4.83212,0.0399 -10.33985,0.16863 -16.84375,0.40625 1.68391,0.54236 3.18431,1.28749 4.03125,2.28125 1.26736,1.487077 1.80071,7.479387 1.90625,13.6875 l 11.25,0 c 0.91468,0 1.65625,-0.832157 1.65625,-1.84375 l 0,-14.53125 c -0.66994,0.002 -1.30348,-0.006 -2,0 z" - id="path5557-8" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - id="g3290-5" - transform="matrix(0.5,0,0,0.5,218,951.29176)" /> - <path - style="opacity:0.56306308;fill:url(#linearGradient10845-21);fill-opacity:1;stroke:none" - d="m 3.9884152,952.73011 c 11.9179838,-0.55763 23.8669268,-1.02239 36.3115848,0 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - id="path4347-0" - sodipodi:nodetypes="ccsscsc" - inkscape:connector-curvature="0" /> - <rect - y="936.7301" - x="26" - height="78" - width="101" - id="rect3383-52" - style="fill:url(#radialGradient10842-5);fill-opacity:1;stroke:none" - rx="5.1142359" - ry="5.1142359" /> - <rect - ry="4.9999995" - rx="4.9999995" - style="fill:url(#linearGradient10839-6);fill-opacity:1;stroke:none" - id="rect3311-2" - width="100" - height="77" - x="26.5" - y="937.2301" /> - <rect - y="938.7301" - x="28" - height="73" - width="96" - id="rect3271-35" - style="fill:url(#linearGradient10836-6);fill-opacity:1;stroke:none" - rx="2.5754218" - ry="2.5754218" /> - <path - sodipodi:nodetypes="ccccccccc" - id="rect3298-9" - d="m 30.568278,938.72476 c -1.426781,0 -2.573138,1.14636 -2.573138,2.57314 l 0,1.9149 c 0,-1.42679 1.146357,-3.21144 2.573138,-3.21144 l 91.858582,-0.0111 c 1.42679,0 2.57314,1.78465 2.57314,3.21143 l 0,-1.91489 c 0,-1.42678 -1.14635,-2.57314 -2.57314,-2.57314 l -91.858582,0.0111 z" - style="fill:url(#linearGradient10833-02);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.3000005" - rx="1.3000005" - style="opacity:0.70720712;fill:url(#radialGradient10830-78);fill-opacity:1;stroke:none" - id="rect3281-9" - width="87" - height="64.999992" - x="32.5" - y="942.2301" /> - <rect - y="942.2301" - x="32.5" - height="65" - width="87" - id="rect5414-5" - style="opacity:0.70720712;fill:url(#radialGradient10827-0);fill-opacity:1;stroke:none" - rx="1.3000005" - ry="1.3000005" /> - <rect - ry="0.64175582" - rx="0.64175582" - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3267-4" - width="86" - height="64.000023" - x="33" - y="942.7301" /> - <path - sodipodi:nodetypes="cccscccc" - id="path3420-35" - d="m 30.6,938.73011 c -1.426782,0 -2.573139,1.14636 -2.573139,2.57314 L 28,979.73011 c 15.082806,2.00954 22.213417,2.81832 39.622346,2.81832 24.127254,0 38.223634,-2.1432 57.377654,-5.84441 l -0.0252,-35.40077 c 4e-5,-1.42678 -1.14631,-2.57314 -2.5731,-2.57314 l -91.8017,0 z" - style="fill:url(#linearGradient10823-9);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - y="943.7301" - x="34" - height="62" - width="84" - id="rect2487-0" - style="fill:url(#linearGradient10820-1);fill-opacity:1;stroke:none" /> - <rect - style="fill:url(#radialGradient10817-3);fill-opacity:1;stroke:none" - id="rect4321-7" - width="82" - height="60" - x="35" - y="944.7301" /> - <path - sodipodi:nodetypes="cccc" - id="rect4373-2" - d="m 34.5,944.23011 82.5,0 -82.5,60.99999 0,-60.99999 z" - style="fill:url(#linearGradient10814-029);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(1.7320754,0,0,1.7320754,24.34579,838.31798)" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="107" - sodipodi:cx="-1" - id="path4419-5" - style="fill:url(#radialGradient11001-97);fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:url(#radialGradient15880);fill-opacity:1;stroke:none" - id="path4437-0" - sodipodi:cx="-1" - sodipodi:cy="107" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - transform="matrix(1.7320754,0,0,1.7320754,24.34579,780.95949)" /> - </g> - <g - transform="translate(351.5968,-45.353365)" - id="layer1-6-5-8" - inkscape:label="Camada 1"> - <rect - transform="matrix(0.7755201,0,0,1.4537453,-24.041606,856.9683)" - ry="0.51796591" - rx="0.26239562" - y="120" - x="38.73737" - height="4" - width="41.26263" - id="rect3800-5-6" - style="opacity:0.73260073;fill:url(#radialGradient11107-9-6);fill-opacity:1;stroke:none;filter:url(#filter3872-5-0)" /> - <path - sodipodi:nodetypes="ccccssccc" - id="rect3570-3-1" - d="m 10.196797,1029.5867 23.606406,0 c 0.109026,0 0.196797,0.086 0.196797,0.1923 l 0,5.7472 c 0,0.1066 -0.09002,0.1704 -0.196797,0.1924 -5.185241,1.0645 -18.154888,1.4166 -23.606406,0 C 10.091311,1035.6911 10,1035.6328 10,1035.5262 l 0,-5.7472 c 0,-0.1065 0.08777,-0.1923 0.196797,-0.1923 z" - style="fill:url(#linearGradient10996-4-5);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccc" - id="rect4022-8-2" - d="m 12.168776,1029.5867 c -0.09079,0 -0.168776,0.083 -0.168776,0.1898 l 0,5.7401 c 0,0.1066 0.07798,0.2135 0.168776,0.2135 l 3.888187,0 0,-6.1434 -3.888187,0 z m 13.84135,0 0,6.1434 5.821098,0 c 0.09079,0 0.168776,-0.1069 0.168776,-0.2135 l 0,-5.7401 c 0,-0.1066 -0.07798,-0.1898 -0.168776,-0.1898 l -5.821098,0 z" - style="fill:url(#linearGradient10993-9-8);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.7237271" - rx="1.7851298" - y="951.72955" - x="2.0005379" - height="80.001083" - width="39.996975" - id="rect2175-6-8" - style="fill:url(#linearGradient10990-7-2);fill-opacity:1;stroke:none" /> - <rect - style="opacity:0.70695974;fill:url(#radialGradient10987-3-0);fill-opacity:1;stroke:none" - id="rect3164-6-6" - width="39.996975" - height="80.001083" - x="2.0005379" - y="951.72955" - rx="1.7155496" - ry="1.6565403" /> - <rect - style="fill:url(#radialGradient10984-2-7);fill-opacity:1;stroke:none" - id="rect3174-3-6" - width="39.996975" - height="33.089149" - x="2.0005379" - y="998.62677" - rx="1.6431732" - ry="1.3948433" /> - <text - transform="scale(0.99108136,1.0089989)" - id="text3658-0-6" - y="1013.8896" - x="7.6162062" - style="font-size:1.91842496px;font-style:normal;font-weight:bold;fill:url(#linearGradient10981-8-7);fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" - xml:space="preserve"><tspan - style="fill:url(#linearGradient10981-8-7);fill-opacity:1" - y="1013.8896" - x="7.6162062" - id="tspan3660-0-7" - sodipodi:role="line">OXYGEN</tspan></text> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.3854" - x="13.428246" - height="0.6053918" - width="11.413166" - id="rect3870-5-9" - style="opacity:0.73260073;fill:url(#radialGradient10977-2-0);fill-opacity:1;stroke:none" /> - <rect - ry="1.6160318" - rx="1.6160318" - y="1011.7048" - x="2.0005379" - height="20.011065" - width="39.996975" - id="rect4018-6-3" - style="fill:url(#linearGradient10974-6-3);fill-opacity:1;stroke:none" /> - <rect - transform="matrix(0,1,-1,0,0,0)" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" - id="rect7275-8-7" - width="0.2382233" - height="18.519377" - x="1012.42" - y="-41.999535" /> - <path - transform="matrix(0.7968167,0,0,0.6896645,-35.37178,948.26401)" - id="path4947-7-7" - d="m 52,118.9 40,0" - style="opacity:0.63003666;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient11105-5-7);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4997-1-7)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="cccc" - id="path5021-4-8" - d="M 85.933333,5.8497359 C 85.266404,34.586754 87.338901,93.798793 83.459589,114.50486 69.128393,112.87262 68.975828,41.187138 72.111111,5.5042329 l 13.822222,0.345503 z" - style="opacity:0.60439561;fill:url(#linearGradient11103-0-9);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060-9-4)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(-0.7142317,0,0,0.6896645,65.083446,948.97091)" - style="opacity:0.76190479;fill:url(#linearGradient11101-9-0);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060-9-4)" - d="M 85.733333,5.7497359 C 85.066404,34.486754 84.984404,99.894031 82.459589,114.50486 66.698764,114.86601 77.87361,31.982082 71.111111,5.5042329 l 14.622222,0.245503 z" - id="path6072-1-8" - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" /> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.1423" - x="2.297204" - height="1.9007041" - width="10.992223" - id="rect3976-8-2" - style="opacity:0.73260073;fill:url(#radialGradient44595);fill-opacity:1;stroke:none" /> - <path - sodipodi:nodetypes="ccccccccc" - id="path3489-1-1" - d="m 2.0119272,957.29764 0,0.46099 L 13,957.73011 l 0,42.99999 -11,0 0.014258,0.3494 11.398186,0 0,-43.78186 -11.4005166,0 z" - style="fill:#3e3e3e;fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <use - x="0" - y="0" - xlink:href="#rect3976-8-2" - id="use7065-6-0" - transform="matrix(0,3.9486526,-0.5779271,0,593.11395,948.91009)" - width="128" - height="128" /> - <path - transform="matrix(0.686221,0,0,0.7025015,-89.189728,989.64483)" - mask="url(#mask7160-6-0)" - id="rect7115-1-5" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467362 -0.84375,1.03125 l 0,50.43749973 c 4.94936,0.59011697 10.01102,0.90624997 15.15625,0.90624997 12.91618,0 25.27421,-1.915556 36.71875,-5.4375 l 0,-45.9062497 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="opacity:0.28937731;fill:url(#linearGradient11095-8-3);fill-opacity:1;stroke:none;filter:url(#filter7348-8-7)" - inkscape:connector-curvature="0" /> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,33.868415,978.72071)" - id="g7260-6-8"> - <path - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256-4-2)" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7242-1-2" - inkscape:connector-curvature="0" /> - <path - id="path7188-5-6" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238-3-5)" - inkscape:connector-curvature="0" /> - <path - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7180-6-3" - inkscape:connector-curvature="0" /> - </g> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,32.340621,978.72071)" - id="g7265-6-8"> - <path - id="path7267-9-0" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256-4-2)" - inkscape:connector-curvature="0" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238-3-5)" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7269-3-1" - inkscape:connector-curvature="0" /> - <path - id="path7271-3-8" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <path - sodipodi:nodetypes="cccc" - id="path4351-9-9" - d="m 29,952.73011 0,56.99999 c 0.05534,2.4723 1.203156,4.3984 5,5 l 7,0" - style="fill:none;stroke:url(#linearGradient10953-6-5);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4405-5-7)" - inkscape:connector-curvature="0" /> - <rect - ry="1.6565403" - rx="1.7155496" - y="951.72955" - x="2.0005379" - height="16.551949" - width="39.996975" - id="rect7352-8-3" - style="fill:url(#linearGradient10950-7-9);fill-opacity:1;stroke:none" /> - <rect - ry="0" - rx="0" - y="951.7348" - x="18.964886" - height="74.995308" - width="3.0351143" - id="rect7392-6-6" - style="opacity:0.20879122;fill:url(#linearGradient10947-9-7);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.04732946,0,0,0.04570148,37.211866,1014.3973)" - id="g4652-6-1"> - <path - transform="matrix(0.950204,0,0,-0.9781022,-140.58731,145.38383)" - inkscape:r_cy="true" - inkscape:r_cx="true" - d="m 127.31551,65.540108 c 0,34.873682 -28.270709,63.144382 -63.14439,63.144382 -34.873682,0 -63.1443866,-28.2707 -63.1443866,-63.144382 0,-34.873682 28.2707046,-63.1443866 63.1443866,-63.1443866 34.873681,0 63.14439,28.2707046 63.14439,63.1443866 z" - sodipodi:ry="63.144386" - sodipodi:rx="63.144386" - sodipodi:cy="65.540108" - sodipodi:cx="64.17112" - id="path4887-5-1" - style="opacity:0.9157509;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4648-2-5)" - sodipodi:type="arc" /> - <g - id="g4542-3-2" - transform="translate(-142.96868,16.982986)"> - <g - transform="matrix(1.034003,0,0,1.034003,-3.571961,-1.953362)" - id="g3443-1-2"> - <path - sodipodi:type="arc" - style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path1315-4-6" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.727272" - sodipodi:ry="42.727272" - d="m 94.909092,44.909092 c 0,23.597621 -19.129651,42.727272 -42.727272,42.727272 -23.597621,0 -42.7272721,-19.129651 -42.7272721,-42.727272 0,-23.597621 19.1296511,-42.7272721 42.7272721,-42.7272721 23.597621,0 42.727272,19.1296511 42.727272,42.7272721 z" - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" /> - <path - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path2190-0-2" - style="opacity:0.11885244;fill:url(#radialGradient11011-4-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <g - id="g3357-7-8" - style="opacity:0.57786889"> - <path - id="path3138-9-2" - d="m 18.32319,89.008621 c 0.08929,0.161616 0.195172,0.304391 0.286126,0.464954 -0.09422,-0.152925 -0.19341,-0.311012 -0.286126,-0.464954 z m 91.41715,0 c -0.0927,0.153942 -0.1919,0.312029 -0.28612,0.464954 0.091,-0.160563 0.19683,-0.303338 0.28612,-0.464954 z m -90.987961,0.786846 c 9.012499,15.667623 25.919,26.216263 45.279382,26.216263 19.360383,0 36.266889,-10.54864 45.279399,-26.216263 -9.425234,15.074563 -26.202555,25.071753 -45.279399,25.071753 -19.076844,0 -35.854164,-9.99719 -45.279382,-25.071753 z" - style="fill:url(#linearGradient11013-4-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11015-4-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 21.546815,86.902153 c 0.08342,0.150981 0.182328,0.28436 0.267297,0.434357 -0.08802,-0.142862 -0.180682,-0.290546 -0.267297,-0.434357 z m 85.401185,0 c -0.0866,0.143811 -0.17929,0.291495 -0.2673,0.434357 0.085,-0.149997 0.18388,-0.283376 0.2673,-0.434357 z m -85.00024,0.735065 c 8.419408,14.636582 24.213332,24.491032 42.299653,24.491032 18.086322,0 33.880242,-9.85445 42.299647,-24.491032 -8.804957,14.082532 -24.478205,23.421842 -42.299647,23.421842 -17.821442,0 -33.494685,-9.33931 -42.299653,-23.421842 z" - id="path3143-2-0" - inkscape:connector-curvature="0" /> - <path - id="path3145-0-8" - d="m 24.78966,84.242991 c 0.07668,0.138787 0.167604,0.261396 0.245712,0.399281 -0.08091,-0.131326 -0.166091,-0.267083 -0.245712,-0.399281 z m 78.5047,0 c -0.0796,0.132198 -0.1648,0.267955 -0.24572,0.399281 0.0781,-0.137885 0.16904,-0.260494 0.24572,-0.399281 z m -78.136133,0.675706 c 7.739507,13.454618 22.258007,22.513283 38.883784,22.513283 16.625777,0 31.144276,-9.058666 38.883779,-22.513283 -8.093927,12.945319 -22.501492,21.530433 -38.883779,21.530433 -16.382289,0 -30.789854,-8.585114 -38.883784,-21.530433 z" - style="fill:url(#linearGradient11017-5-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11019-7-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 28.398565,82.501092 c 0.06954,0.125862 0.151993,0.23705 0.222826,0.362091 -0.07337,-0.119094 -0.150621,-0.242206 -0.222826,-0.362091 z m 71.192615,0 c -0.07221,0.119885 -0.14946,0.242997 -0.222835,0.362091 0.07084,-0.125041 0.153293,-0.236229 0.222835,-0.362091 z m -70.858377,0.612769 c 7.018633,12.201428 20.184848,20.416349 35.262068,20.416349 15.077217,0 28.243433,-8.214922 35.262067,-20.416349 -7.340046,11.739565 -20.405662,19.525049 -35.262067,19.525049 -14.856408,0 -27.922024,-7.785484 -35.262068,-19.525049 z" - id="path3147-4-3" - inkscape:connector-curvature="0" /> - <path - id="path3149-0-3" - d="m 32.581299,80.504353 c 0.06169,0.11165 0.134832,0.210283 0.197666,0.321206 -0.06509,-0.105646 -0.133615,-0.214858 -0.197666,-0.321206 z m 63.154077,0 c -0.06405,0.106348 -0.132583,0.21556 -0.197673,0.321206 0.06284,-0.110923 0.135981,-0.209556 0.197673,-0.321206 z m -62.857579,0.543579 c 6.226141,10.823734 17.905727,18.111084 31.280539,18.111084 13.37481,0 25.054396,-7.287351 31.280538,-18.111084 -6.511262,10.414022 -18.101606,17.320425 -31.280538,17.320425 -13.178933,0 -24.769278,-6.906403 -31.280539,-17.320425 z" - style="fill:url(#linearGradient11021-1-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11023-0-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 35.859703,78.248887 c 0.05528,0.09552 0.120825,0.179894 0.177132,0.274788 -0.05833,-0.09038 -0.119734,-0.183809 -0.177132,-0.274788 z m 56.593697,0 c -0.0574,0.09098 -0.11881,0.184409 -0.177139,0.274788 0.05631,-0.09489 0.121856,-0.179272 0.177139,-0.274788 z m -56.327998,0.465024 c 5.579375,9.259547 16.045697,15.493769 28.031148,15.493769 11.98545,0 22.451772,-6.234223 28.031148,-15.493769 -5.834879,8.909044 -16.221229,14.817372 -28.031148,14.817372 -11.809919,0 -22.196271,-5.908328 -28.031148,-14.817372 z" - id="path3151-0-5" - inkscape:connector-curvature="0" /> - <path - id="path3153-3-0" - d="m 39.510842,76.25898 c 0.04873,0.07843 0.106509,0.147722 0.156144,0.225645 -0.05141,-0.07422 -0.105548,-0.150937 -0.156144,-0.225645 z m 49.888034,0 c -0.0506,0.07471 -0.104733,0.151429 -0.15615,0.225645 0.04964,-0.07792 0.107418,-0.14721 0.15615,-0.225645 z m -49.653817,0.381861 c 4.918287,7.603605 14.144477,12.722922 24.709799,12.722922 10.56532,0 19.79151,-5.119317 24.709798,-12.722922 -5.143517,7.315785 -14.299211,12.16749 -24.709798,12.16749 -10.410587,0 -19.566283,-4.851705 -24.709799,-12.16749 z" - style="fill:url(#linearGradient11025-7-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11027-9-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 43.011934,73.358075 c 0.04189,0.07264 0.09156,0.1368 0.134228,0.208962 -0.0442,-0.06873 -0.09073,-0.139778 -0.134228,-0.208962 z m 42.88585,0 c -0.0435,0.06918 -0.09003,0.140234 -0.134233,0.208962 0.04267,-0.07216 0.09234,-0.136327 0.134233,-0.208962 z m -42.684507,0.353628 c 4.227966,7.041427 12.159186,11.782245 21.241581,11.782245 9.082393,0 17.013613,-4.740818 21.24158,-11.782245 -4.421583,6.774887 -12.292202,11.267879 -21.24158,11.267879 -8.949378,0 -16.819999,-4.492992 -21.241581,-11.267879 z" - id="path3157-7-3" - inkscape:connector-curvature="0" /> - <path - id="path3159-1-5" - d="m 46.613057,70.957326 c 0.03495,0.0624 0.0764,0.117528 0.111999,0.179523 -0.03688,-0.05904 -0.07571,-0.120085 -0.111999,-0.179523 z m 35.783635,0 c -0.03629,0.05944 -0.07512,0.120478 -0.112003,0.179523 0.0356,-0.06199 0.07705,-0.117121 0.112003,-0.179523 z m -35.615636,0.303809 c 3.527784,6.049434 10.145535,10.122367 17.723817,10.122367 7.578282,0 14.196033,-4.072933 17.723817,-10.122367 -3.689336,5.820444 -10.256522,9.680464 -17.723817,9.680464 -7.467294,0 -14.034482,-3.86002 -17.723817,-9.680464 z" - style="fill:url(#linearGradient11029-5-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11031-0-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 49.814056,68.456546 c 0.02792,0.05546 0.06102,0.104447 0.08946,0.159541 -0.02946,-0.05247 -0.06047,-0.106718 -0.08946,-0.159541 z m 28.581388,0 c -0.02899,0.05282 -0.06,0.107068 -0.08946,0.159541 0.02844,-0.05509 0.06154,-0.104085 0.08946,-0.159541 z M 49.948241,68.72654 c 2.81774,5.376095 8.103523,8.995687 14.156508,8.995687 6.052985,0 11.338768,-3.619592 14.156507,-8.995687 -2.946775,5.172593 -8.19217,8.602971 -14.156507,8.602971 -5.964336,0 -11.209733,-3.430378 -14.156508,-8.602971 z" - id="path3161-3-4" - inkscape:connector-curvature="0" /> - <path - id="path3163-0-4" - d="m 57.016302,64.055173 c 0.01453,0.02803 0.03176,0.05278 0.04656,0.08063 -0.01533,-0.02652 -0.03148,-0.05393 -0.04656,-0.08063 z m 14.877113,0 c -0.01509,0.02669 -0.03123,0.05411 -0.04657,0.08063 0.0148,-0.02784 0.03203,-0.0526 0.04657,-0.08063 z m -14.807268,0.136444 c 1.466683,2.716869 4.218026,4.54607 7.368711,4.54607 3.150685,0 5.902027,-1.829201 7.36871,-4.54607 -1.533848,2.614028 -4.264168,4.347606 -7.36871,4.347606 -3.104542,0 -5.834862,-1.733578 -7.368711,-4.347606 z" - style="fill:url(#linearGradient11033-2-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11035-2-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 53.315147,66.555953 c 0.02127,0.04103 0.0465,0.07727 0.06817,0.118032 -0.02245,-0.03882 -0.04608,-0.07895 -0.06817,-0.118032 z m 21.779266,0 c -0.02209,0.03908 -0.04572,0.07921 -0.06817,0.118032 0.02167,-0.04076 0.0469,-0.077 0.06817,-0.118032 z m -21.677017,0.199746 c 2.147143,3.977346 6.174956,6.655194 10.787383,6.655194 4.612428,0 8.64024,-2.677848 10.787382,-6.655194 -2.245468,3.826792 -6.242505,6.364654 -10.787382,6.364654 -4.544877,0 -8.541913,-2.537862 -10.787383,-6.364654 z" - id="path3165-7-6" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3293-4-2" - style="opacity:0.28688528"> - <path - style="opacity:0.73360656;fill:url(#linearGradient11037-2-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - id="path3197-6-5" - inkscape:connector-curvature="0" /> - <path - id="path3199-0-0" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - style="opacity:0.73360656;fill:url(#linearGradient11039-1-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11041-3-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - id="path3201-1-8" - inkscape:connector-curvature="0" /> - <path - id="path3203-4-8" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - style="opacity:0.73360656;fill:url(#linearGradient11043-6-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11045-0-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - id="path3205-6-8" - inkscape:connector-curvature="0" /> - <path - id="path3207-3-0" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - style="opacity:0.73360656;fill:url(#linearGradient11047-4-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11049-3-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - id="path3209-8-9" - inkscape:connector-curvature="0" /> - <path - id="path3211-1-9" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - style="opacity:0.73360656;fill:url(#linearGradient11051-8-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11053-4-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - id="path3213-4-1" - inkscape:connector-curvature="0" /> - <path - id="path3215-8-5" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - style="opacity:0.73360656;fill:url(#linearGradient11055-6-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11057-2-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - id="path3217-0-5" - inkscape:connector-curvature="0" /> - <path - id="path3219-2-2" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - style="opacity:0.73360656;fill:url(#linearGradient11059-0-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3307-3-8" - transform="translate(-0.565862,0.282931)" - style="opacity:0.28688528"> - <path - id="path3309-3-9" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - style="opacity:0.73360656;fill:url(#linearGradient11061-5-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11063-6-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - id="path3311-4-7" - inkscape:connector-curvature="0" /> - <path - id="path3313-9-4" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - style="opacity:0.73360656;fill:url(#linearGradient11065-3-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11067-1-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - id="path3315-5-3" - inkscape:connector-curvature="0" /> - <path - id="path3317-1-7" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - style="opacity:0.73360656;fill:url(#linearGradient11069-3-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11071-6-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - id="path3319-8-9" - inkscape:connector-curvature="0" /> - <path - id="path3321-0-3" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - style="opacity:0.73360656;fill:url(#linearGradient11073-7-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11075-6-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - id="path3323-3-5" - inkscape:connector-curvature="0" /> - <path - id="path3325-4-4" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - style="opacity:0.73360656;fill:url(#linearGradient11077-2-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11079-2-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - id="path3327-2-8" - inkscape:connector-curvature="0" /> - <path - id="path3329-4-1" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - style="opacity:0.73360656;fill:url(#linearGradient11081-4-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11083-5-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - id="path3331-9-5" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(1.400964,0,0,1.400964,-10.24782,-2.576398)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path3086-9-1" - style="opacity:0.15983605;fill:url(#radialGradient11085-5-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:0.19672134;fill:url(#radialGradient11087-9-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path3100-5-6" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.988293" - sodipodi:ry="42.988293" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - transform="matrix(-1.400964,0,0,1.400964,135.9619,-2.576398)" /> - <path - id="path3570-2-1" - d="m 40.9375,19.34375 c -1.378982,0.08425 -2.721284,0.544956 -3.875,1.3125 -5.160376,3.349464 -9.759998,7.797045 -13.40625,13.1875 -7.292501,10.780907 -9.542508,23.591287 -7.25,35.46875 2.292507,11.877459 9.156596,22.92625 19.9375,30.21875 10.780909,7.2925 23.591285,9.54251 35.46875,7.25 11.877462,-2.29251 22.957499,-9.156596 30.25,-19.9375 7.2925,-10.780908 9.5425,-23.591289 7.25,-35.46875 C 107.01999,39.497538 100.1559,28.448751 89.375,21.15625 85.785149,18.722745 80.902255,19.660149 78.46875,23.25 c -2.433505,3.589851 -1.496101,8.472745 2.09375,10.90625 7.265039,4.914273 11.806943,12.22532 13.34375,20.1875 1.536801,7.962181 0.07052,16.45371 -4.84375,23.71875 C 84.148228,85.327539 76.80593,89.838193 68.84375,91.375 60.881568,92.911807 52.390041,91.445523 45.125,86.53125 37.859968,81.616982 33.349307,74.305937 31.8125,66.34375 30.275694,58.381572 31.741981,49.890035 36.65625,42.625 c 2.457137,-3.632522 5.528356,-6.579432 8.96875,-8.8125 2.968319,-1.884093 4.32342,-5.507692 3.3125,-8.875 -1.01092,-3.367307 -4.141021,-5.656122 -7.65625,-5.59375 -0.117417,0.0019 -0.226887,-0.0071 -0.34375,0 z m 21.4375,21 c -1.937828,0.12532 -3.767515,0.973547 -5.125,2.375 -1.447987,1.494885 -2.253965,3.512862 -2.21875,5.59375 -10e-7,1.266966 0,24.0625 0,24.0625 -0.137593,2.885743 1.33379,5.609689 3.8125,7.09375 2.478711,1.484059 5.55254,1.484061 8.03125,0 2.478713,-1.484063 3.950093,-4.208007 3.8125,-7.09375 0,0 -10e-7,-22.795621 0,-24.0625 0.0358,-2.118777 -0.785781,-4.154894 -2.28125,-5.65625 -1.495467,-1.501357 -3.537348,-2.339972 -5.65625,-2.3125 -0.13006,0.0019 -0.245811,-0.0084 -0.375,0 z" - style="fill:url(#radialGradient11089-4-3);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:4" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4855-9-8" - d="M 89.052758,110.33731 C 115.83808,95.818903 126.60843,63.173429 113.08007,36.784006 c -3.14854,-6.141789 -7.35212,-11.402152 -12.28011,-15.71269 4.52788,4.044347 8.37165,8.938861 11.28913,14.629954 13.10314,25.559983 2.28328,57.263399 -24.150142,70.76265 -26.43342,13.49924 -58.52431,3.70984 -71.62745,-21.850166 C 3.2083579,59.053773 14.028228,27.350338 40.461648,13.851101 52.955568,7.4706054 66.709008,6.3080926 79.127588,9.5390554 65.940318,5.9457846 51.268668,7.0675156 37.954728,13.86679 10.230318,28.025312 -1.1178821,61.276793 12.625218,88.085107 c 13.74309,26.808323 47.40094,37.075733 75.12534,22.917223 0.4332,-0.22125 0.87703,-0.43458 1.3022,-0.66502 z M 80.055218,9.7786728 c -0.30005,-0.087287 -0.59939,-0.1708794 -0.90105,-0.2531907 0.3006,0.07834 0.60207,0.1696947 0.90105,0.2531907 z" - style="fill:url(#linearGradient11091-2-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4868-5-4" - d="M 60.886675,3.5011061 C 30.994595,4.4513813 7.0114547,29.083452 7.0114647,59.284292 c 0,15.796568 6.5792803,30.076913 17.1118103,40.23189 C 60.218215,87.621632 71.214115,42.093571 109.07913,28.465026 99.107975,13.412218 82.025115,3.5011061 62.664525,3.5011061 c -0.60001,0 -1.18239,-0.018932 -1.77785,0 z" - style="opacity:0.57674417;fill:url(#radialGradient11093-0-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.7399)" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" - sodipodi:ry="17.67767" - sodipodi:rx="17.67767" - sodipodi:cy="65.774605" - sodipodi:cx="177.4838" - id="path7278-9-3" - style="opacity:0.54945056;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7312-0-8)" - sodipodi:type="arc" /> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.5922)" - sodipodi:type="arc" - style="fill:url(#radialGradient11009-5-8);fill-opacity:1;stroke:none" - id="path7280-8-3" - sodipodi:cx="177.4838" - sodipodi:cy="65.774605" - sodipodi:rx="17.67767" - sodipodi:ry="17.67767" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" /> - <rect - transform="scale(-1,1)" - style="opacity:0.29304026;fill:url(#linearGradient10892-0-8);fill-opacity:1;stroke:none" - id="rect7402-5-4" - width="2.6215534" - height="74.980072" - x="-25.621553" - y="951.75006" - rx="0" - ry="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - id="path3584-2-4" - d="m 62,112 -2,0 0,-96" - style="fill:none;stroke:url(#linearGradient11007-3-1);stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3598-2-5)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsscsc" - id="rect7363-2-3" - d="m 3.9884152,952.73011 36.3115848,0 c 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - style="opacity:0.56306308;fill:url(#linearGradient10888-2-9);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="0.16450633" - rx="0.25630134" - y="955.68286" - x="22.000366" - height="70.530472" - width="1.4270998" - id="rect3186-4-5" - style="fill:#000000;fill-opacity:1;stroke:none" /> - <rect - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3572-7-6" - width="1.4270998" - height="70.530472" - x="22.000366" - y="955.68286" - rx="0.25630134" - ry="0.16450633" /> - <rect - ry="0.16450633" - rx="0.11117215" - y="954.7301" - x="22.399998" - height="70.530472" - width="0.61901248" - id="rect3574-2-5" - style="opacity:0.71794876;fill:url(#linearGradient10883-0-8);fill-opacity:1;stroke:none" /> - <path - id="rect3394-5-6" - d="m 22.000285,962.77201 0,8.26816 1.427204,0 0,-8.26816 -1.427204,0 z" - style="fill:url(#radialGradient10880-7-3);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.4837111,0,0,0.1142406,-289.45421,930.01349)" - style="opacity:0.46520146;fill:url(#radialGradient11005-5-6);fill-opacity:1;stroke:none;filter:url(#filter3469-7-3)" - d="m 642.40625,286.75 0,72.375 5.90625,0 0,-72.375 -5.90625,0 z" - id="path3407-1-8" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient10876-0-7);fill-opacity:1;stroke:none" - d="m 22.000285,1020.5549 0,6.2712 1.427204,0 0,-6.2712 -1.427204,0 z" - id="path4287-0-0" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="ccccc" - id="path4787-7-1" - d="m 59.301763,96.79545 -4.52e-4,15.95387 3.500264,0 L 62.7,96.79545 l -3.398237,0 z" - style="opacity:0.54945056;fill:url(#radialGradient11003-8-6);fill-opacity:1;stroke:none;filter:url(#filter4927-3-0)" - inkscape:connector-curvature="0" /> - <rect - y="951.72955" - x="22.015116" - height="6.0287628" - width="0.54780781" - id="rect7273-4-2" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" /> - <path - style="opacity:0.47985349;fill:url(#radialGradient10871-6-4);fill-opacity:1;stroke:none" - d="m 4.1483093,1030.7925 35.7115847,0 c 0.692448,0 1.249906,-0.2307 1.249906,-0.5173 -11.979557,-4.1048 -26.09051,-3.5144 -38.2113962,0 0,0.2866 0.5574578,0.5173 1.2499055,0.5173 z" - id="path7406-4-0" - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" /> - <g - id="Livello_1-3-2" - transform="matrix(0.5,0,0,0.5,190,942.59711)" /> - <rect - ry="1.6761006" - rx="1.6761006" - y="951.7301" - x="2" - height="4" - width="40.000008" - id="rect4876-8-9" - style="opacity:0.65315312;fill:url(#linearGradient10867-7-9);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.6010762,0,0,0.6010762,374.33595,1083.6037)" - id="g5647-3-7"> - <path - style="opacity:0.481982;fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5346-0-8)" - d="m -498,-139.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.311808 -10.96875,3.718748 -11.9257,1.21541 -23.53125,7.587115 -23.53125,13.687495 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687495 -3.99292,-0.40694 -9.15288,-1.293738 -10.96875,-3.718748 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-139.31937 z" - id="path5328-0-7" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5184-1-7" - d="m -498,-141.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.215408 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.31937 z" - style="fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5214-8-1)" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient3381-7-4-2);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - id="path3435-4-6" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient3383-8-4-8);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -497.9851,-141.63165 -14.5625,5.4375 c 0.0823,0.2115 0.14371,0.53213 0.21875,0.90625 l 14.34375,-5.34375 14.28125,5.34375 c 0.0786,-0.3886 0.19552,-0.70835 0.28125,-0.90625 l -14.5625,-5.4375 z m -13.5625,21.21875 c -0.0808,6.89711 -0.65883,13.728 -2.0625,15.375 -1.9651,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.92571,1.21541 -23.53125,7.587123 -23.53125,13.687503 0,0.144795 0.0214,0.294549 0.0313,0.4375 0.692,-5.921036 11.94697,-11.947572 23.5,-13.125003 3.99292,-0.40694 9.00365,-1.413 10.96875,-3.71875 1.47226,-1.72748 2.02909,-9.1492 2.0625,-16.375 z m 27.125,2.0625 c 0.12575,6.40052 0.70665,12.54356 2.03125,14.3125 1.81587,2.42501 6.97582,3.31181 10.96875,3.71875 11.63062,1.18534 22.94516,7.039381 23.5,13.218753 0.0146,-0.173402 0.0625,-0.355119 0.0625,-0.53125 -1e-5,-6.350323 -11.6368,-12.472093 -23.5625,-13.687503 -3.99293,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -1.25624,-1.67765 -1.86615,-7.27675 -2.03125,-13.3125 z" - id="path5218-0-0" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - sodipodi:nodetypes="cscscscc" - id="path5281-5-4" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.41058,-0.396513 -21.97647,-1.083033 -39.53125,0 z" - style="opacity:0.11711713;fill:url(#linearGradient3386-4-3);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-6-9)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccc" - style="opacity:0.46846846;fill:url(#radialGradient3388-1-8);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257-2-6)" - d="m -511.82885,-112.6004 c -0.0609,5.48859 -0.3553,10.83813 -8.03125,11.25 -3.86166,0.69826 -4.19519,2.151173 -4.875,3.531253 9.03627,-1.36341 19.4666,-4.011823 26.94953,-2.786613 l 0.13258,-8.98705 c -4.24239,-1.08888 -9.97027,-1.89853 -14.17586,-3.00759 z" - id="path5235-0-2" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccccc" - style="opacity:0.4099099;fill:url(#radialGradient3390-0-2);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257-2-6)" - d="m -510.4226,-109.2254 c -0.35428,4.99035 -5.21804,8.28427 -9.96166,9.09727 5.05584,-0.89459 16.56776,-1.03031 22.5324,-1.04798 l 0.11048,-6.20554 c -3.46184,-0.52011 -8.29888,-0.68808 -12.68122,-1.84375 z" - id="path5261-5-0" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsccscc" - id="path5350-1-5" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 l 53.15625,0 c -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="fill:url(#linearGradient3392-6-1-0);fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5265-0-7" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="opacity:0.5495496;fill:none;stroke:url(#linearGradient3394-8-0-4);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.11711713;fill:url(#linearGradient3396-0-9);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-6-9)" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.15799,-0.507294 -21.02253,-0.676229 -39.53125,0 z" - id="path3569-4-3" - sodipodi:nodetypes="cscscscc" - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.55405405;fill:#000000;fill-opacity:0.49729728;fill-rule:evenodd;stroke:url(#radialGradient3398-1-5);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter5402-0-4)" - d="m -484.9792,-110.89486 c -0.0309,6.01372 -3.42647,8.66713 -12.45647,8.86418 13.73668,-0.71873 21.51974,1.32042 27.66815,2.278495 -3.12515,-1.117485 -8.27754,-1.167505 -11.4047,-2.985595 -3.35231,-1.94899 -3.48432,-5.07232 -3.80698,-8.15708 z" - id="path5360-8-4" - sodipodi:nodetypes="cccsc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - style="opacity:0.43243247;fill:url(#radialGradient3400-9-2);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649-2-8)" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.5131,9.379008 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.75355,-6.234085 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - id="path3620-4-1" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - id="path5543-6-1" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.41916,9.028413 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.72354,-6.122102 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - style="fill:url(#radialGradient3402-4-6);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649-2-8)" - inkscape:connector-curvature="0" /> - <g - id="g5608-3-8" - mask="url(#mask5641-0-7)"> - <path - style="opacity:0.27027025;fill:url(#radialGradient3404-2-5);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178-9-8)" - d="m -221.76796,93.20625 c -9.66876,0.985393 -19.22404,5.312612 -22.36077,10.23165 -2.95517,4.63431 6.61982,3.87902 10.65303,2.25713 9.14413,-3.49527 22.59713,-3.45175 37.58274,-3.45175 17.89278,0 33.6687,0.89525 42.39208,5.61044 5.43293,2.93663 9.21476,-0.42103 8.02165,-3.09878 -2.41912,-5.429356 -12.55538,-10.470722 -23.13248,-11.54869 -30.70887,-2.692478 -35.76778,-1.861224 -53.15625,0 z" - id="path5283-3-4" - sodipodi:nodetypes="cscssscc" - transform="matrix(0.9478225,0,0,0.9234897,-313.03905,-186.89507)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9410153,0,0,0.9168573,-314.3667,-186.17274)" - sodipodi:nodetypes="cscscccc" - id="path3661-4-6" - d="m -221.76796,93.20625 c -9.8876,1.007694 -19.55436,5.201049 -22.5707,10.56315 -2.20296,3.91619 6.14869,3.79059 10.73888,1.97324 9.1757,-3.44127 22.65328,-3.63195 37.70682,-3.63195 17.80642,0 33.44474,0.99076 42.26424,5.67477 5.13681,3.01365 9.64454,-0.29612 8.02046,-3.33328 -2.45487,-5.409725 -12.61965,-10.187663 -23.00345,-11.24593 -29.41254,-2.955932 -35.37204,-1.884684 -53.15625,0 z" - style="opacity:0.27027025;fill:url(#radialGradient3406-9-6);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178-9-8)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.14864867;fill:url(#linearGradient3408-7-3);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-6-9)" - d="m -499.8125,-102.09375 c -4.83212,0.0399 -10.33985,0.16863 -16.84375,0.40625 1.68391,0.54236 3.18431,1.28749 4.03125,2.28125 1.26736,1.487077 1.80071,7.479387 1.90625,13.6875 l 11.25,0 c 0.91468,0 1.65625,-0.832157 1.65625,-1.84375 l 0,-14.53125 c -0.66994,0.002 -1.30348,-0.006 -2,0 z" - id="path5557-1-5" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - id="g3290-8-8" - transform="matrix(0.5,0,0,0.5,218,951.29176)" /> - <path - style="opacity:0.56306308;fill:url(#linearGradient10845-7-7);fill-opacity:1;stroke:none" - d="m 3.9884152,952.73011 c 11.9179838,-0.55763 23.8669268,-1.02239 36.3115848,0 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - id="path4347-8-2" - sodipodi:nodetypes="ccsscsc" - inkscape:connector-curvature="0" /> - <rect - y="936.7301" - x="26" - height="78" - width="101" - id="rect3383-5-2" - style="fill:url(#radialGradient10842-8-0);fill-opacity:1;stroke:none" - rx="5.1142359" - ry="5.1142359" /> - <rect - ry="4.9999995" - rx="4.9999995" - style="fill:url(#linearGradient10839-9-6);fill-opacity:1;stroke:none" - id="rect3311-5-5" - width="100" - height="77" - x="26.5" - y="937.2301" /> - <rect - y="938.7301" - x="28" - height="73" - width="96" - id="rect3271-1-7" - style="fill:url(#linearGradient10836-7-7);fill-opacity:1;stroke:none" - rx="2.5754218" - ry="2.5754218" /> - <path - sodipodi:nodetypes="ccccccccc" - id="rect3298-2-8" - d="m 30.568278,938.72476 c -1.426781,0 -2.573138,1.14636 -2.573138,2.57314 l 0,1.9149 c 0,-1.42679 1.146357,-3.21144 2.573138,-3.21144 l 91.858582,-0.0111 c 1.42679,0 2.57314,1.78465 2.57314,3.21143 l 0,-1.91489 c 0,-1.42678 -1.14635,-2.57314 -2.57314,-2.57314 l -91.858582,0.0111 z" - style="fill:url(#linearGradient10833-1-4);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.3000005" - rx="1.3000005" - style="opacity:0.70720712;fill:url(#radialGradient10830-3-2);fill-opacity:1;stroke:none" - id="rect3281-7-5" - width="87" - height="64.999992" - x="32.5" - y="942.2301" /> - <rect - y="942.2301" - x="32.5" - height="65" - width="87" - id="rect5414-1-9" - style="opacity:0.70720712;fill:url(#radialGradient10827-2-6);fill-opacity:1;stroke:none" - rx="1.3000005" - ry="1.3000005" /> - <rect - ry="0.64175582" - rx="0.64175582" - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3267-2-1" - width="86" - height="64.000023" - x="33" - y="942.7301" /> - <path - sodipodi:nodetypes="cccscccc" - id="path3420-3-7" - d="m 30.6,938.73011 c -1.426782,0 -2.573139,1.14636 -2.573139,2.57314 L 28,979.73011 c 15.082806,2.00954 22.213417,2.81832 39.622346,2.81832 24.127254,0 38.223634,-2.1432 57.377654,-5.84441 l -0.0252,-35.40077 c 4e-5,-1.42678 -1.14631,-2.57314 -2.5731,-2.57314 l -91.8017,0 z" - style="fill:url(#linearGradient10823-3-8);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - y="943.7301" - x="34" - height="62" - width="84" - id="rect2487-7-9" - style="fill:url(#linearGradient10820-0-1);fill-opacity:1;stroke:none" /> - <rect - style="fill:url(#radialGradient10817-1-9);fill-opacity:1;stroke:none" - id="rect4321-5-3" - width="82" - height="60" - x="35" - y="944.7301" /> - <path - sodipodi:nodetypes="cccc" - id="rect4373-1-9" - d="m 34.5,944.23011 82.5,0 -82.5,60.99999 0,-60.99999 z" - style="fill:url(#linearGradient10814-3-4);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(1.7320754,0,0,1.7320754,24.34579,838.31798)" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="107" - sodipodi:cx="-1" - id="path4419-3-6" - style="fill:url(#radialGradient11001-5-4);fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:url(#radialGradient8482-6);fill-opacity:1;stroke:none" - id="path4437-5-0" - sodipodi:cx="-1" - sodipodi:cy="107" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - transform="matrix(1.7320754,0,0,1.7320754,24.34579,780.95949)" /> - </g> - <rect - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3, 1;stroke-dashoffset:0" - id="rect13400-2-8" - width="240" - height="325.71429" - x="306.53687" - y="711.7182" - ry="31.428572" /> - <text - xml:space="preserve" - style="font-size:32px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans" - x="339.39401" - y="744.57532" - id="text14188-4" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan14190-2" - x="339.39401" - y="744.57532">STUDENT 2</tspan></text> - <path - style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 353.59734,945.99648 c -12.28496,-0.0689 -24.5699,-0.13781 -36.60051,-0.0523 0.13529,-41.75039 0.0163,-83.65516 -0.28137,-125.55992 12.17491,0.12938 24.52839,0.25876 36.88188,0.38814" - id="path14220-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <path - style="fill:none;stroke:#ff0000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="M 478.5968,945.74072 580.89737,944.7796" - id="path14276-7" - inkscape:connector-type="polyline" - inkscape:connector-curvature="0" - inkscape:connection-start="#layer1-6-5-8" - inkscape:connection-start-point="d4" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;stroke:#ff0000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 478.48184,818.98551 100.78535,0.0602" - id="path14276-1-4" - inkscape:connector-type="polyline" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <text - xml:space="preserve" - style="font-size:32px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans" - x="656.81763" - y="694.2948" - id="text14188-8" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan14190-6" - x="656.81763" - y="694.2948">TESTER</tspan></text> - </g> -</svg> diff --git a/kpov_judge/doc/presentation/figs/computer.svg b/kpov_judge/doc/presentation/figs/computer.svg deleted file mode 100644 index b20943c..0000000 --- a/kpov_judge/doc/presentation/figs/computer.svg +++ /dev/null @@ -1,566 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> -<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="128" height="128" id="svg9560" version="1.1" inkscape:version="0.47 r22583" sodipodi:docname="Novo documento 4"> - <defs id="defs9562"> - <inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 526.18109 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" id="perspective9568"/> - <inkscape:perspective id="perspective8778" inkscape:persp3d-origin="0.5 : 0.33333333 : 1" inkscape:vp_z="1 : 0.5 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 0.5 : 1" sodipodi:type="inkscape:persp3d"/> - <linearGradient id="linearGradient3802" inkscape:collect="always"> - <stop id="stop3804" offset="0" style="stop-color:#000000;stop-opacity:1;"/> - <stop id="stop3806" offset="1" style="stop-color:#000000;stop-opacity:0;"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" id="filter3872" height="2.5654593" y="-0.78272969" width="1.1517557" x="-0.075877823" inkscape:collect="always"> - <feGaussianBlur id="feGaussianBlur3874" stdDeviation="1.3045494" inkscape:collect="always"/> - </filter> - <linearGradient id="linearGradient4029"> - <stop id="stop4031" offset="0" style="stop-color:#818584;stop-opacity:1;"/> - <stop style="stop-color:#000000;stop-opacity:1;" offset="0.5" id="stop4033"/> - <stop id="stop4035" offset="1" style="stop-color:#818584;stop-opacity:1;"/> - </linearGradient> - <linearGradient id="linearGradient3149"> - <stop id="stop3151" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/> - <stop style="stop-color:#ffffff;stop-opacity:0;" offset="0.34797296" id="stop3157"/> - <stop id="stop4061" offset="0.65930116" style="stop-color:#ffffff;stop-opacity:0;"/> - <stop id="stop3153" offset="1" style="stop-color:#ffffff;stop-opacity:1;"/> - </linearGradient> - <linearGradient id="linearGradient3611"> - <stop style="stop-color:#818584;stop-opacity:1;" offset="0" id="stop3613"/> - <stop id="stop3615" offset="0.5" style="stop-color:#ffffff;stop-opacity:1;"/> - <stop style="stop-color:#818584;stop-opacity:1;" offset="1" id="stop3617"/> - </linearGradient> - <linearGradient id="linearGradient3166"> - <stop id="stop3168" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/> - <stop style="stop-color:#ffffff;stop-opacity:0.82206404;" offset="0.5990991" id="stop3518"/> - <stop id="stop3170" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/> - </linearGradient> - <linearGradient id="linearGradient3176"> - <stop id="stop3178-5" offset="0" style="stop-color:#000000;stop-opacity:1;"/> - <stop id="stop3180" offset="1" style="stop-color:#afb0b0;stop-opacity:0;"/> - </linearGradient> - <linearGradient y2="118.57565" x2="47.238132" y1="74.379738" x1="88.188385" gradientTransform="matrix(0.7018405,0,0,0.7018405,-31.780516,17.907276)" gradientUnits="userSpaceOnUse" id="linearGradient3523" xlink:href="#linearGradient3722" inkscape:collect="always"/> - <linearGradient id="linearGradient3722"> - <stop id="stop3724" offset="0" style="stop-color:#ececec;stop-opacity:1;"/> - <stop id="stop3726" offset="1" style="stop-color:#404040;stop-opacity:1;"/> - </linearGradient> - <linearGradient y2="118.57565" x2="47.238132" y1="74.379738" x1="88.188385" gradientTransform="matrix(0.7018405,0,0,0.7018405,-31.780516,17.907276)" gradientUnits="userSpaceOnUse" id="linearGradient8817" xlink:href="#linearGradient3722" inkscape:collect="always"/> - <linearGradient id="linearGradient8819"> - <stop id="stop8821" offset="0" style="stop-color:#ececec;stop-opacity:1;"/> - <stop id="stop8823" offset="1" style="stop-color:#404040;stop-opacity:1;"/> - </linearGradient> - <linearGradient id="linearGradient3872" inkscape:collect="always"> - <stop id="stop3874" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/> - <stop id="stop3876" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/> - </linearGradient> - <linearGradient id="linearGradient8830"> - <stop id="stop8832" offset="0" style="stop-color:#000000;stop-opacity:1;"/> - <stop id="stop8834" offset="1" style="stop-color:#afb0b0;stop-opacity:0;"/> - </linearGradient> - <radialGradient r="20.5" fy="116" fx="72" cy="116" cx="72" gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" gradientUnits="userSpaceOnUse" id="radialGradient5116" xlink:href="#linearGradient4949" inkscape:collect="always"/> - <linearGradient id="linearGradient4949" inkscape:collect="always"> - <stop id="stop4951" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/> - <stop id="stop4953" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" id="filter4997" height="2.1076922" y="-0.55384612" width="1.0270169" x="-0.013508443" inkscape:collect="always"> - <feGaussianBlur id="feGaussianBlur4999" stdDeviation="0.23076923" inkscape:collect="always"/> - </filter> - <linearGradient id="linearGradient6064" inkscape:collect="always"> - <stop id="stop6066" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/> - <stop id="stop6068" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" id="filter6060" height="1.1246425" y="-0.062321238" width="1.5352294" x="-0.26761475" inkscape:collect="always"> - <feGaussianBlur id="feGaussianBlur6062" stdDeviation="2.5675913" inkscape:collect="always"/> - </filter> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3978" id="radialGradient8766" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-34.282576,64.562999)" cx="56.1105" cy="77.29686" fx="56.1105" fy="77.29686" r="7.7821388"/> - <linearGradient id="linearGradient3978" inkscape:collect="always"> - <stop id="stop3980" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/> - <stop id="stop3982" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/> - </linearGradient> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3978" id="radialGradient8863" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-34.282576,64.562999)" cx="56.1105" cy="77.29686" fx="56.1105" fy="77.29686" r="7.7821388"/> - <linearGradient y2="15.908398" x2="72.281242" y1="58" x1="70.316795" gradientTransform="translate(102.53048,-57.275649)" gradientUnits="userSpaceOnUse" id="linearGradient5542" xlink:href="#linearGradient7136" inkscape:collect="always"/> - <linearGradient id="linearGradient7136" inkscape:collect="always"> - <stop id="stop7138" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/> - <stop id="stop7140" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/> - </linearGradient> - <mask id="mask7160" maskUnits="userSpaceOnUse"> - <path style="fill:url(#radialGradient7164);fill-opacity:1;stroke:none" d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" id="path7162"/> - </mask> - <radialGradient r="25.9375" fy="-0.23275588" fx="162.46797" cy="-0.23275588" cx="162.46797" gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" gradientUnits="userSpaceOnUse" id="radialGradient7164" xlink:href="#linearGradient7150" inkscape:collect="always"/> - <linearGradient id="linearGradient7150"> - <stop id="stop7152" offset="0" style="stop-color:#ffffff;stop-opacity:0;"/> - <stop id="stop7154" offset="1" style="stop-color:#ffffff;stop-opacity:1;"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" id="filter7348" inkscape:collect="always"> - <feGaussianBlur id="feGaussianBlur7350" stdDeviation="1.8190732" inkscape:collect="always"/> - </filter> - <filter color-interpolation-filters="sRGB" id="filter7256" height="1.1785403" y="-0.089270152" width="1.285794" x="-0.14289699" inkscape:collect="always"> - <feGaussianBlur id="feGaussianBlur7258" stdDeviation="6.6685268" inkscape:collect="always"/> - </filter> - <filter color-interpolation-filters="sRGB" id="filter7238" inkscape:collect="always"> - <feGaussianBlur id="feGaussianBlur7240" stdDeviation="2.6674107" inkscape:collect="always"/> - </filter> - <linearGradient id="linearGradient4409" inkscape:collect="always"> - <stop id="stop4411" offset="0" style="stop-color:#000000;stop-opacity:1;"/> - <stop id="stop4413" offset="1" style="stop-color:#000000;stop-opacity:0;"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" height="1.0960809" y="-0.048040453" width="1.4656229" x="-0.23281144" id="filter4405" inkscape:collect="always"> - <feGaussianBlur id="feGaussianBlur4407" stdDeviation="1.2610619" inkscape:collect="always"/> - </filter> - <linearGradient id="linearGradient7354" inkscape:collect="always"> - <stop id="stop7356" offset="0" style="stop-color:#929595;stop-opacity:1;"/> - <stop id="stop7358" offset="1" style="stop-color:#929595;stop-opacity:0;"/> - </linearGradient> - <linearGradient id="linearGradient7394" inkscape:collect="always"> - <stop id="stop7396" offset="0" style="stop-color:#000000;stop-opacity:1;"/> - <stop id="stop7398" offset="1" style="stop-color:#000000;stop-opacity:0;"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" id="filter4648" inkscape:collect="always"> - <feGaussianBlur id="feGaussianBlur4650" stdDeviation="4.6264466" inkscape:collect="always"/> - </filter> - <linearGradient id="linearGradient3065"> - <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop3067-5"/> - <stop id="stop3073" offset="1" style="stop-color:#000000;stop-opacity:1;"/> - <stop style="stop-color:#000000;stop-opacity:1;" offset="1" id="stop3069"/> - </linearGradient> - <linearGradient inkscape:collect="always" id="linearGradient3167"> - <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop3169"/> - <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3171"/> - </linearGradient> - <linearGradient id="linearGradient3088"> - <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3090-4"/> - <stop id="stop3098" offset="0.73626375" style="stop-color:#000000;stop-opacity:0.49803922;"/> - <stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop3092"/> - </linearGradient> - <linearGradient id="linearGradient9171"> - <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop9173"/> - <stop id="stop9175" offset="0.73626375" style="stop-color:#000000;stop-opacity:0.49803922;"/> - <stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop9177"/> - </linearGradient> - <linearGradient id="linearGradient3954"> - <stop id="stop3956" offset="0" style="stop-color:#b3b3b3;stop-opacity:1;"/> - <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0.52879584" id="stop3962"/> - <stop id="stop3958" offset="1" style="stop-color:#c5c5c5;stop-opacity:1;"/> - </linearGradient> - <linearGradient id="linearGradient4860" inkscape:collect="always"> - <stop id="stop4862" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/> - <stop id="stop4864" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/> - </linearGradient> - <linearGradient id="linearGradient4875" inkscape:collect="always"> - <stop id="stop4877" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/> - <stop id="stop4879" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" id="filter7312" inkscape:collect="always"> - <feGaussianBlur id="feGaussianBlur7314" stdDeviation="1.1655606" inkscape:collect="always"/> - </filter> - <linearGradient id="linearGradient7290"> - <stop style="stop-color:#dddddd;stop-opacity:1;" offset="0" id="stop7292"/> - <stop style="stop-color:#a7a7a7;stop-opacity:1;" offset="1" id="stop7294"/> - </linearGradient> - <linearGradient id="linearGradient3586" inkscape:collect="always"> - <stop id="stop3588" offset="0" style="stop-color:#000000;stop-opacity:1;"/> - <stop id="stop3590" offset="1" style="stop-color:#000000;stop-opacity:0;"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" id="filter3598" height="1.0246218" y="-0.012310881" width="1.9504" x="-0.4752" inkscape:collect="always"> - <feGaussianBlur id="feGaussianBlur3600" stdDeviation="0.495" inkscape:collect="always"/> - </filter> - <linearGradient id="linearGradient7365" inkscape:collect="always"> - <stop id="stop7367" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/> - <stop id="stop7369" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/> - </linearGradient> - <linearGradient id="linearGradient3576" inkscape:collect="always"> - <stop id="stop3578" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/> - <stop id="stop3580" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/> - </linearGradient> - <linearGradient id="linearGradient3399-1" inkscape:collect="always"> - <stop id="stop3401" offset="0" style="stop-color:#00a8ba;stop-opacity:1;"/> - <stop id="stop3403" offset="1" style="stop-color:#00a8ba;stop-opacity:0;"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" id="filter3469" height="1.076069" y="-0.038034502" width="1.9321471" x="-0.4660736" inkscape:collect="always"> - <feGaussianBlur id="feGaussianBlur3471" stdDeviation="1.146978" inkscape:collect="always"/> - </filter> - <linearGradient id="linearGradient3483"> - <stop style="stop-color:#ba0000;stop-opacity:1;" offset="0" id="stop3485"/> - <stop style="stop-color:#ba0000;stop-opacity:0;" offset="1" id="stop3487"/> - </linearGradient> - <linearGradient id="linearGradient9237"> - <stop style="stop-color:#ba0000;stop-opacity:1;" offset="0" id="stop9239"/> - <stop style="stop-color:#ba0000;stop-opacity:0;" offset="1" id="stop9241"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" id="filter4927" height="1.1482419" y="-0.074120946" width="2.1938846" x="-0.59694225" inkscape:collect="always"> - <feGaussianBlur id="feGaussianBlur4929" stdDeviation="0.49701338" inkscape:collect="always"/> - </filter> - <linearGradient id="linearGradient4878" inkscape:collect="always"> - <stop id="stop4880" offset="0" style="stop-color:#000000;stop-opacity:1;"/> - <stop id="stop4882" offset="1" style="stop-color:#000000;stop-opacity:0;"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" inkscape:collect="always" id="filter5346" x="-0.072389819" width="1.1447796" y="-0.1028006" height="1.2056012"> - <feGaussianBlur inkscape:collect="always" stdDeviation="3.0237831" id="feGaussianBlur5348"/> - </filter> - <filter color-interpolation-filters="sRGB" inkscape:collect="always" id="filter5214"> - <feGaussianBlur inkscape:collect="always" stdDeviation="0.94493222" id="feGaussianBlur5216"/> - </filter> - <linearGradient y2="118.72548" x2="-190.99445" y1="75.382088" x1="-190.99445" gradientTransform="translate(-302.8601,-193.7254)" gradientUnits="userSpaceOnUse" id="linearGradient3381-7" xlink:href="#linearGradient5549-4" inkscape:collect="always"/> - <linearGradient id="linearGradient5549-4"> - <stop id="stop5551" offset="0" style="stop-color:#cacaca;stop-opacity:1"/> - <stop style="stop-color:#ebebeb;stop-opacity:1;" offset="0.61419845" id="stop5553"/> - <stop id="stop5555" offset="1" style="stop-color:#cbcbcb;stop-opacity:1;"/> - </linearGradient> - <radialGradient r="50.125" fy="87.258614" fx="-320.35294" cy="70.359375" cx="-307.625" gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" gradientUnits="userSpaceOnUse" id="radialGradient3383-8" xlink:href="#linearGradient5227" inkscape:collect="always"/> - <linearGradient inkscape:collect="always" id="linearGradient5227"> - <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop5229"/> - <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop5231"/> - </linearGradient> - <linearGradient y2="112.08436" x2="-190.20325" y1="80.369522" x1="-190.20325" gradientUnits="userSpaceOnUse" id="linearGradient3386" xlink:href="#linearGradient3604" inkscape:collect="always"/> - <linearGradient inkscape:collect="always" id="linearGradient3604"> - <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3606"/> - <stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop3608"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" inkscape:collect="always" id="filter3600"> - <feGaussianBlur inkscape:collect="always" stdDeviation="0.47186117" id="feGaussianBlur3602"/> - </filter> - <radialGradient r="18.133474" fy="85.487053" fx="-322.72327" cy="85.487053" cx="-322.72327" gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" gradientUnits="userSpaceOnUse" id="radialGradient3388" xlink:href="#linearGradient5237" inkscape:collect="always"/> - <linearGradient inkscape:collect="always" id="linearGradient5237"> - <stop style="stop-color:#ffffff;stop-opacity:0.62162162" offset="0" id="stop5239"/> - <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop5241"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" inkscape:collect="always" id="filter5257" x="-0.048958682" width="1.0979174" y="-0.11697313" height="1.2339463"> - <feGaussianBlur inkscape:collect="always" stdDeviation="0.71942638" id="feGaussianBlur5259"/> - </filter> - <radialGradient r="18.133474" fy="84.673492" fx="-317.63007" cy="84.673492" cx="-317.63007" gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" gradientUnits="userSpaceOnUse" id="radialGradient3390" xlink:href="#linearGradient5237" inkscape:collect="always"/> - <linearGradient y2="-33.89423" x2="-115.51489" y1="-53.597103" x1="-115.51489" gradientTransform="translate(-377.3601,-71.225397)" gradientUnits="userSpaceOnUse" id="linearGradient3392-6" xlink:href="#linearGradient5352" inkscape:collect="always"/> - <linearGradient inkscape:collect="always" id="linearGradient5352"> - <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop5354"/> - <stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop5356"/> - </linearGradient> - <linearGradient y2="92.064072" x2="-296.75015" y1="119.76865" x1="-296.75015" gradientTransform="translate(-190.3601,-184.7254)" gradientUnits="userSpaceOnUse" id="linearGradient3394-8" xlink:href="#linearGradient5267" inkscape:collect="always"/> - <linearGradient inkscape:collect="always" id="linearGradient5267"> - <stop style="stop-color:#050505;stop-opacity:1;" offset="0" id="stop5269"/> - <stop style="stop-color:#050505;stop-opacity:0;" offset="1" id="stop5271"/> - </linearGradient> - <linearGradient y2="112.08436" x2="-190.20325" y1="80.369522" x1="-190.20325" gradientUnits="userSpaceOnUse" id="linearGradient3396" xlink:href="#linearGradient3604" inkscape:collect="always"/> - <radialGradient r="12.374368" fy="-43.067612" fx="-107.83378" cy="-43.067612" cx="-107.83378" gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" gradientUnits="userSpaceOnUse" id="radialGradient3398" xlink:href="#linearGradient5406" inkscape:collect="always"/> - <linearGradient inkscape:collect="always" id="linearGradient5406"> - <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop5408"/> - <stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop5410"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" inkscape:collect="always" id="filter5402" x="-0.12524337" width="1.2504867" y="-0.45543039" height="1.9108608"> - <feGaussianBlur inkscape:collect="always" stdDeviation="1.2915062" id="feGaussianBlur5404"/> - </filter> - <radialGradient r="48.968639" fy="133.89294" fx="-195.32214" cy="133.89294" cx="-195.32214" gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" gradientUnits="userSpaceOnUse" id="radialGradient3400" xlink:href="#linearGradient3653-4" inkscape:collect="always"/> - <linearGradient inkscape:collect="always" id="linearGradient3653-4"> - <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop3655"/> - <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3657"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" inkscape:collect="always" id="filter3649"> - <feGaussianBlur inkscape:collect="always" stdDeviation="0.53709441" id="feGaussianBlur3651"/> - </filter> - <radialGradient r="48.968639" fy="144.36551" fx="-195.32211" cy="144.36551" cx="-195.32211" gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" gradientUnits="userSpaceOnUse" id="radialGradient3402" xlink:href="#linearGradient3653-4" inkscape:collect="always"/> - <mask maskUnits="userSpaceOnUse" id="mask5641"> - <rect style="fill:url(#radialGradient5645);fill-opacity:1;stroke:none" id="rect5643" width="100.99232" height="26.352942" x="-548.99231" y="-108.19437"/> - </mask> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient5631-3" id="radialGradient5645" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" cx="-498.49612" cy="-97.979721" fx="-498.49612" fy="-97.979721" r="50.496159"/> - <linearGradient id="linearGradient5631-3" inkscape:collect="always"> - <stop id="stop5633" offset="0" style="stop-color:#ffffff;stop-opacity:1;"/> - <stop style="stop-color:#ffffff;stop-opacity:0.86666667;" offset="0.30253538" id="stop5639"/> - <stop style="stop-color:#ffffff;stop-opacity:0.50980392;" offset="0.70000011" id="stop5637"/> - <stop id="stop5635" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/> - </linearGradient> - <radialGradient r="50.125" fy="119.10338" fx="-75.703278" cy="119.10338" cx="-75.703278" gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" gradientUnits="userSpaceOnUse" id="radialGradient3404" xlink:href="#linearGradient5522" inkscape:collect="always"/> - <linearGradient id="linearGradient5522"> - <stop id="stop5524" offset="0" style="stop-color:#000000;stop-opacity:0;"/> - <stop style="stop-color:#000000;stop-opacity:0.21428572;" offset="0.52602422" id="stop5526"/> - <stop id="stop5528" offset="1" style="stop-color:#000000;stop-opacity:1;"/> - </linearGradient> - <filter color-interpolation-filters="sRGB" inkscape:collect="always" id="filter5178"> - <feGaussianBlur inkscape:collect="always" stdDeviation="0.42032926" id="feGaussianBlur5180"/> - </filter> - <radialGradient r="50.125" fy="99.224663" fx="-75.514481" cy="113.45824" cx="-75.711166" gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" gradientUnits="userSpaceOnUse" id="radialGradient3406" xlink:href="#linearGradient5114" inkscape:collect="always"/> - <linearGradient id="linearGradient5114"> - <stop style="stop-color:#000000;stop-opacity:0;" offset="0" id="stop5116"/> - <stop id="stop5182" offset="0.5" style="stop-color:#000000;stop-opacity:0.21428572;"/> - <stop style="stop-color:#000000;stop-opacity:1;" offset="1" id="stop5118"/> - </linearGradient> - <linearGradient y2="102.10035" x2="-190.20325" y1="77.351906" x1="-190.20325" gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" gradientUnits="userSpaceOnUse" id="linearGradient3408" xlink:href="#linearGradient5566" inkscape:collect="always"/> - <linearGradient id="linearGradient5566" inkscape:collect="always"> - <stop id="stop5568" offset="0" style="stop-color:#ffffff;stop-opacity:1"/> - <stop id="stop5570" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/> - </linearGradient> - <linearGradient id="linearGradient3393"> - <stop style="stop-color:#efefef;stop-opacity:1" offset="0" id="stop3395"/> - <stop style="stop-color:#b8b8b8;stop-opacity:1" offset="1" id="stop3397"/> - </linearGradient> - <linearGradient id="linearGradient3385-7"> - <stop style="stop-color:#d6d6d6;stop-opacity:1;" offset="0" id="stop3387"/> - <stop style="stop-color:#ffffff;stop-opacity:1;" offset="1" id="stop3389"/> - </linearGradient> - <linearGradient id="linearGradient3259"> - <stop style="stop-color:#1f1f1f;stop-opacity:1;" offset="0" id="stop3261"/> - <stop style="stop-color:#424242;stop-opacity:1;" offset="1" id="stop3263"/> - </linearGradient> - <linearGradient inkscape:collect="always" id="linearGradient3303-2"> - <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop3305-5"/> - <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3307-4"/> - </linearGradient> - <linearGradient inkscape:collect="always" id="linearGradient3273"> - <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop3275"/> - <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3277"/> - </linearGradient> - <linearGradient inkscape:collect="always" id="linearGradient3427"> - <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop3429"/> - <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop3431"/> - </linearGradient> - <linearGradient id="XMLID_18_" gradientUnits="userSpaceOnUse" x1="26" y1="69" x2="220" y2="69"> - <stop offset="0" style="stop-color:#3383E6" id="stop3354"/> - <stop offset="1" style="stop-color:#6ECAF7" id="stop3364"/> - </linearGradient> - <linearGradient id="linearGradient9409" gradientUnits="userSpaceOnUse" x1="26" y1="69" x2="220" y2="69"> - <stop offset="0" style="stop-color:#3383E6" id="stop9411"/> - <stop offset="1" style="stop-color:#6ECAF7" id="stop9413"/> - </linearGradient> - <linearGradient inkscape:collect="always" id="linearGradient4376"> - <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4378"/> - <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4380"/> - </linearGradient> - <linearGradient id="linearGradient4429"> - <stop id="stop4431" offset="0" style="stop-color:#fff1c0;stop-opacity:1;"/> - <stop id="stop4433" offset="1" style="stop-color:#fff1c0;stop-opacity:0;"/> - </linearGradient> - <radialGradient r="1" fy="107" fx="-1" cy="107" cx="-1" gradientUnits="userSpaceOnUse" id="radialGradient4439" xlink:href="#linearGradient4441" inkscape:collect="always"/> - <linearGradient id="linearGradient4441"> - <stop style="stop-color:#dbfaff;stop-opacity:1;" offset="0" id="stop4443"/> - <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4445"/> - </linearGradient> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient4376" id="linearGradient10814" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" x1="-519.00256" y1="-349.57544" x2="-474.70587" y2="-141.69821"/> - <radialGradient inkscape:collect="always" xlink:href="#XMLID_18_" id="radialGradient10817" gradientUnits="userSpaceOnUse" gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" cx="-526.78827" cy="-120.68829" fx="-526.78827" fy="-120.68829" r="76"/> - <linearGradient inkscape:collect="always" xlink:href="#XMLID_18_" id="linearGradient10820" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" x1="-132.38875" y1="-60.000008" x2="-90.485931" y2="-158.88614"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3427" id="linearGradient10823" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" x1="-11.793251" y1="-0.17180708" x2="-11.793251" y2="-124.49196"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3273" id="radialGradient10827" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" cx="-120" cy="-109.7959" fx="-120" fy="-109.7959" r="78"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3273" id="radialGradient10830" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" cx="-120" cy="-150.6152" fx="-120.37437" fy="-166.52031" r="78"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3303-2" id="linearGradient10833" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" x1="-127.61703" y1="-310.29703" x2="-127.61703" y2="-275.16071"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3259" id="linearGradient10836" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" x1="-80" y1="-67.985718" x2="-80" y2="-208.05618"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3385-7" id="linearGradient10839" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" x1="-100" y1="-106.62158" x2="-100" y2="-228.88507"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3393" id="radialGradient10842" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" cx="-122.25" cy="-192.92754" fx="-122.25" fy="-192.92754" r="94"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient7365" id="linearGradient10845" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" x1="59.5" y1="5.2390494" x2="59.5" y2="15.411574"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient4878" id="linearGradient10867" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" x1="60.428722" y1="22.930367" x2="60.428722" y2="24.713068"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient7365" id="radialGradient10871" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" cx="60" cy="-16.181448" fx="60" fy="-16.181448" r="26.75"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3483" id="radialGradient10876" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" cx="645.35938" cy="322.9375" fx="645.35938" fy="322.9375" r="2.953125"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3399-1" id="radialGradient10880" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" cx="645.35938" cy="322.9375" fx="645.35938" fy="322.9375" r="2.953125"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3576" id="linearGradient10883" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" x1="72.201843" y1="60.866104" x2="73.467186" y2="60.866104"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient7365" id="linearGradient10888" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" x1="59.5" y1="5.2390494" x2="59.5" y2="116.8996"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient7394" id="linearGradient10892" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" x1="61.06786" y1="51.904549" x2="56" y2="51.904549"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient7394" id="linearGradient10947" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" x1="61.06786" y1="51.904549" x2="56" y2="51.904549"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient7354" id="linearGradient10950" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" x1="55.058228" y1="-0.85672575" x2="55.058228" y2="7.7186575"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient4409" id="linearGradient10953" gradientUnits="userSpaceOnUse" x1="36" y1="92" x2="16.357016" y2="18.691383" gradientTransform="translate(2,927.73011)"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3176" id="linearGradient10974" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" x1="73.38102" y1="150.87357" x2="73.38102" y2="110.8287"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3872" id="radialGradient10977" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" cx="55.989819" cy="76.438904" fx="55.989819" fy="76.438904" r="7.9898205"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3722" id="linearGradient10981" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" x1="88.188385" y1="74.379738" x2="47.238132" y2="118.57565"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3176" id="radialGradient10984" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" cx="648.65515" cy="639.22247" fx="648.65515" fy="639.22247" r="93.508705"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3166" id="radialGradient10987" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" cx="648.65527" cy="390.69016" fx="648.6554" fy="406.23959" r="93.508705"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3611" id="linearGradient10990" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" x1="555.14642" y1="477.52972" x2="742.16382" y2="477.52972"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3149" id="linearGradient10993" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" x1="50.394154" y1="124.48643" x2="93.409775" y2="124.48643"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient4029" id="linearGradient10996" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" x1="50.458698" y1="122.43194" x2="91.105286" y2="122.43194"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient4441" id="radialGradient10999" gradientUnits="userSpaceOnUse" cx="-1" cy="107" fx="-1" fy="107" r="1"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient4429" id="radialGradient11001" gradientUnits="userSpaceOnUse" cx="-1" cy="107" fx="-1" fy="107" r="1"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3483" id="radialGradient11003" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" cx="645.35938" cy="322.9375" fx="645.35938" fy="322.82944" r="2.953125"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3399-1" id="radialGradient11005" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" cx="645.35938" cy="322.9375" fx="645.35938" fy="322.9375" r="2.953125"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3586" id="linearGradient11007" gradientUnits="userSpaceOnUse" gradientTransform="translate(-12,0)" x1="71.75" y1="112.25" x2="71.75" y2="15.75"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient7290" id="radialGradient11009" gradientUnits="userSpaceOnUse" cx="177.4838" cy="65.774605" fx="176.77669" fy="55.875111" r="17.67767"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3065" id="radialGradient11011" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" spreadMethod="reflect" cx="52.18182" cy="44.909092" fx="52.18182" fy="44.909092" r="42.727272"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11013" gradientUnits="userSpaceOnUse" spreadMethod="reflect" x1="18.323191" y1="102.51018" x2="109.74034" y2="102.51018"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11015" gradientUnits="userSpaceOnUse" spreadMethod="reflect" x1="21.546816" y1="99.515198" x2="106.948" y2="99.515198"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11017" gradientUnits="userSpaceOnUse" spreadMethod="reflect" x1="24.78966" y1="95.837486" x2="103.29436" y2="95.837486"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11019" gradientUnits="userSpaceOnUse" spreadMethod="reflect" x1="28.398565" y1="93.015648" x2="99.591179" y2="93.015648"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11021" gradientUnits="userSpaceOnUse" spreadMethod="reflect" x1="32.581299" y1="89.83168" x2="95.735374" y2="89.83168"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11023" gradientUnits="userSpaceOnUse" spreadMethod="reflect" x1="35.859703" y1="86.228287" x2="92.4534" y2="86.228287"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11025" gradientUnits="userSpaceOnUse" spreadMethod="reflect" x1="39.510841" y1="82.811371" x2="89.398872" y2="82.811371"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11027" gradientUnits="userSpaceOnUse" spreadMethod="reflect" x1="43.011932" y1="79.42601" x2="85.897781" y2="79.42601"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11029" gradientUnits="userSpaceOnUse" spreadMethod="reflect" x1="46.613056" y1="76.170418" x2="82.39669" y2="76.170418"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11031" gradientUnits="userSpaceOnUse" spreadMethod="reflect" x1="49.814056" y1="73.089386" x2="78.395447" y2="73.089386"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11033" gradientUnits="userSpaceOnUse" spreadMethod="reflect" x1="57.0163" y1="66.396431" x2="71.893417" y2="66.396431"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11035" gradientUnits="userSpaceOnUse" spreadMethod="reflect" x1="53.315147" y1="69.983421" x2="75.094414" y2="69.983421"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11037" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="18.323191" y1="102.51018" x2="109.74034" y2="102.51018"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11039" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="21.546816" y1="99.515198" x2="106.948" y2="99.515198"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11041" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="24.78966" y1="95.837486" x2="103.29436" y2="95.837486"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11043" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="28.398565" y1="93.015648" x2="99.591179" y2="93.015648"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11045" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="32.581299" y1="89.83168" x2="95.735374" y2="89.83168"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11047" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="35.859703" y1="86.228287" x2="92.4534" y2="86.228287"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11049" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="39.510841" y1="82.811371" x2="89.398872" y2="82.811371"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11051" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="43.011932" y1="79.42601" x2="85.897781" y2="79.42601"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11053" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="46.613056" y1="76.170418" x2="82.39669" y2="76.170418"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11055" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="49.814056" y1="73.089386" x2="78.395447" y2="73.089386"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11057" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="57.0163" y1="66.396431" x2="71.893417" y2="66.396431"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11059" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="53.315147" y1="69.983421" x2="75.094414" y2="69.983421"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11061" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="18.323191" y1="102.51018" x2="109.74034" y2="102.51018"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11063" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="21.546816" y1="99.515198" x2="106.948" y2="99.515198"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11065" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="24.78966" y1="95.837486" x2="103.29436" y2="95.837486"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11067" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="28.398565" y1="93.015648" x2="99.591179" y2="93.015648"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11069" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="32.581299" y1="89.83168" x2="95.735374" y2="89.83168"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11071" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="35.859703" y1="86.228287" x2="92.4534" y2="86.228287"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11073" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="39.510841" y1="82.811371" x2="89.398872" y2="82.811371"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11075" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="43.011932" y1="79.42601" x2="85.897781" y2="79.42601"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11077" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="46.613056" y1="76.170418" x2="82.39669" y2="76.170418"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11079" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="49.814056" y1="73.089386" x2="78.395447" y2="73.089386"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11081" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="57.0163" y1="66.396431" x2="71.893417" y2="66.396431"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient3167" id="linearGradient11083" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" spreadMethod="reflect" x1="53.315147" y1="69.983421" x2="75.094414" y2="69.983421"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3088" id="radialGradient11085" gradientUnits="userSpaceOnUse" spreadMethod="pad" cx="9.1935272" cy="44.909092" fx="9.1935272" fy="44.909092" r="42.988293"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3088" id="radialGradient11087" gradientUnits="userSpaceOnUse" spreadMethod="pad" cx="9.1935272" cy="44.909092" fx="9.1935272" fy="44.909092" r="42.988293"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3954" id="radialGradient11089" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" cx="60.097603" cy="88.499367" fx="69.801033" fy="111.93269" r="47.937988"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient4860" id="linearGradient11091" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" x1="17.723173" y1="148.57518" x2="76.596703" y2="32.457832"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient4875" id="radialGradient11093" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" cx="43.620941" cy="42.699898" fx="43.034355" fy="8.0446291" r="50.234375"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient7136" id="linearGradient11095" gradientUnits="userSpaceOnUse" gradientTransform="translate(102.53048,-57.275649)" x1="70.316795" y1="58" x2="72.281242" y2="15.908398"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient6064" id="linearGradient11101" gradientUnits="userSpaceOnUse" x1="89.39682" y1="69.079369" x2="67.047623" y2="71.111115"/> - <linearGradient inkscape:collect="always" xlink:href="#linearGradient6064" id="linearGradient11103" gradientUnits="userSpaceOnUse" gradientTransform="translate(1,0)" x1="89.39682" y1="69.079369" x2="67.047623" y2="71.111115"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient4949" id="radialGradient11105" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" cx="72" cy="116" fx="72" fy="116" r="20.5"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3802" id="radialGradient11107" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" cx="71.368683" cy="138.73308" fx="71.368683" fy="138.73308" r="20.631315"/> - <radialGradient inkscape:collect="always" xlink:href="#linearGradient3978" id="radialGradient11123" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" cx="56.1105" cy="77.29686" fx="56.1105" fy="77.29686" r="7.7821388"/> - </defs> - <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1.979899" inkscape:cx="171.06658" inkscape:cy="11.589313" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="true" inkscape:window-width="932" inkscape:window-height="791" inkscape:window-x="984" inkscape:window-y="0" inkscape:window-maximized="0"> - <inkscape:grid type="xygrid" id="grid9570" empspacing="5" visible="true" enabled="true" snapvisiblegridlinesonly="true" spacingx="0.5px" spacingy="0.5px"/> - </sodipodi:namedview> - <metadata id="metadata9565"> - <rdf:RDF> - <cc:Work rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <g inkscape:label="Camada 1" inkscape:groupmode="layer" id="layer1" transform="translate(0,-924.36218)"> - <rect style="opacity:0.73260073;fill:url(#radialGradient11107);fill-opacity:1;stroke:none;filter:url(#filter3872)" id="rect3800" width="41.26263" height="4" x="38.73737" y="120" rx="0.26239562" ry="0.51796591" transform="matrix(0.7755201,0,0,1.4537453,-24.041606,856.9683)"/> - <path style="fill:url(#linearGradient10996);fill-opacity:1;stroke:none" d="m 10.196797,1029.5867 23.606406,0 c 0.109026,0 0.196797,0.086 0.196797,0.1923 l 0,5.7472 c 0,0.1066 -0.09002,0.1704 -0.196797,0.1924 -5.185241,1.0645 -18.154888,1.4166 -23.606406,0 C 10.091311,1035.6911 10,1035.6328 10,1035.5262 l 0,-5.7472 c 0,-0.1065 0.08777,-0.1923 0.196797,-0.1923 z" id="rect3570" sodipodi:nodetypes="ccccssccc"/> - <path style="fill:url(#linearGradient10993);fill-opacity:1;stroke:none" d="m 12.168776,1029.5867 c -0.09079,0 -0.168776,0.083 -0.168776,0.1898 l 0,5.7401 c 0,0.1066 0.07798,0.2135 0.168776,0.2135 l 3.888187,0 0,-6.1434 -3.888187,0 z m 13.84135,0 0,6.1434 5.821098,0 c 0.09079,0 0.168776,-0.1069 0.168776,-0.2135 l 0,-5.7401 c 0,-0.1066 -0.07798,-0.1898 -0.168776,-0.1898 l -5.821098,0 z" id="rect4022" sodipodi:nodetypes="cccccccccccccc"/> - <rect style="fill:url(#linearGradient10990);fill-opacity:1;stroke:none" id="rect2175" width="39.996975" height="80.001083" x="2.0005379" y="951.72955" rx="1.7851298" ry="1.7237271"/> - <rect ry="1.6565403" rx="1.7155496" y="951.72955" x="2.0005379" height="80.001083" width="39.996975" id="rect3164" style="opacity:0.70695974;fill:url(#radialGradient10987);fill-opacity:1;stroke:none"/> - <rect ry="1.3948433" rx="1.6431732" y="998.62677" x="2.0005379" height="33.089149" width="39.996975" id="rect3174" style="fill:url(#radialGradient10984);fill-opacity:1;stroke:none"/> - <text xml:space="preserve" style="font-size:1.91842496px;font-style:normal;font-weight:bold;fill:url(#linearGradient10981);fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" x="7.6162062" y="1013.8896" id="text3658" transform="scale(0.99108136,1.0089989)"><tspan sodipodi:role="line" id="tspan3660" x="7.6162062" y="1013.8896" style="fill:url(#linearGradient10981);fill-opacity:1">OXYGEN</tspan></text> - <rect style="opacity:0.73260073;fill:url(#radialGradient10977);fill-opacity:1;stroke:none" id="rect3870" width="11.413166" height="0.6053918" x="13.428246" y="1001.3854" rx="0.18741128" ry="0.48169237"/> - <rect style="fill:url(#linearGradient10974);fill-opacity:1;stroke:none" id="rect4018" width="39.996975" height="20.011065" x="2.0005379" y="1011.7048" rx="1.6160318" ry="1.6160318"/> - <rect y="-41.999535" x="1012.42" height="18.519377" width="0.2382233" id="rect7275" style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" transform="matrix(0,1,-1,0,0,0)"/> - <path style="opacity:0.63003666;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient11105);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4997)" d="m 52,118.9 40,0" id="path4947" transform="matrix(0.7968167,0,0,0.6896645,-35.37178,948.26401)"/> - <path style="opacity:0.60439561;fill:url(#linearGradient11103);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060)" d="M 85.933333,5.8497359 C 85.266404,34.586754 87.338901,93.798793 83.459589,114.50486 69.128393,112.87262 68.975828,41.187138 72.111111,5.5042329 l 13.822222,0.345503 z" id="path5021" sodipodi:nodetypes="cccc" transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)"/> - <path sodipodi:nodetypes="cccc" id="path6072" d="M 85.733333,5.7497359 C 85.066404,34.486754 84.984404,99.894031 82.459589,114.50486 66.698764,114.86601 77.87361,31.982082 71.111111,5.5042329 l 14.622222,0.245503 z" style="opacity:0.76190479;fill:url(#linearGradient11101);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060)" transform="matrix(-0.7142317,0,0,0.6896645,65.083446,948.97091)"/> - <rect style="opacity:0.73260073;fill:url(#radialGradient11123);fill-opacity:1;stroke:none" id="rect3976" width="10.992223" height="1.9007041" x="2.297204" y="1001.1423" rx="0.18741128" ry="0.48169237"/> - <path style="fill:#3e3e3e;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 2.0119272,957.29764 0,0.46099 L 13,957.73011 l 0,42.99999 -11,0 0.014258,0.3494 11.398186,0 0,-43.78186 -11.4005166,0 z" id="path3489" sodipodi:nodetypes="ccccccccc"/> - <use height="128" width="128" transform="matrix(0,3.9486526,-0.5779271,0,593.11395,948.91009)" id="use7065" xlink:href="#rect3976" y="0" x="0"/> - <path style="opacity:0.28937731;fill:url(#linearGradient11095);fill-opacity:1;stroke:none;filter:url(#filter7348)" d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467362 -0.84375,1.03125 l 0,50.43749973 c 4.94936,0.59011697 10.01102,0.90624997 15.15625,0.90624997 12.91618,0 25.27421,-1.915556 36.71875,-5.4375 l 0,-45.9062497 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" id="rect7115" mask="url(#mask7160)" transform="matrix(0.686221,0,0,0.7025015,-89.189728,989.64483)"/> - <g id="g7260" transform="matrix(0.01861942,0,0,0.02172962,33.868415,978.72071)" style="opacity:0.54945056"> - <path id="path7242" d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256)"/> - <path style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238)" d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" id="path7188"/> - <path id="path7180" d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" style="fill:#7a7a7a;fill-opacity:1;stroke:none"/> - </g> - <g id="g7265" transform="matrix(0.01861942,0,0,0.02172962,32.340621,978.72071)" style="opacity:0.54945056"> - <path style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256)" d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" id="path7267"/> - <path id="path7269" d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238)"/> - <path style="fill:#7a7a7a;fill-opacity:1;stroke:none" d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" id="path7271"/> - </g> - <path style="fill:none;stroke:url(#linearGradient10953);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4405)" d="m 29,952.73011 0,56.99999 c 0.05534,2.4723 1.203156,4.3984 5,5 l 7,0" id="path4351" sodipodi:nodetypes="cccc"/> - <rect style="fill:url(#linearGradient10950);fill-opacity:1;stroke:none" id="rect7352" width="39.996975" height="16.551949" x="2.0005379" y="951.72955" rx="1.7155496" ry="1.6565403"/> - <rect style="opacity:0.20879122;fill:url(#linearGradient10947);fill-opacity:1;stroke:none" id="rect7392" width="3.0351143" height="74.995308" x="18.964886" y="951.7348" rx="0" ry="0"/> - <g id="g4652" transform="matrix(0.04732946,0,0,0.04570148,37.211866,1014.3973)"> - <path sodipodi:type="arc" style="opacity:0.9157509;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4648)" id="path4887" sodipodi:cx="64.17112" sodipodi:cy="65.540108" sodipodi:rx="63.144386" sodipodi:ry="63.144386" d="m 127.31551,65.540108 c 0,34.873682 -28.270709,63.144382 -63.14439,63.144382 -34.873682,0 -63.1443866,-28.2707 -63.1443866,-63.144382 0,-34.873682 28.2707046,-63.1443866 63.1443866,-63.1443866 34.873681,0 63.14439,28.2707046 63.14439,63.1443866 z" inkscape:r_cx="true" inkscape:r_cy="true" transform="matrix(0.950204,0,0,-0.9781022,-140.58731,145.38383)"/> - <g transform="translate(-142.96868,16.982986)" id="g4542"> - <g id="g3443" transform="matrix(1.034003,0,0,1.034003,-3.571961,-1.953362)"> - <path transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" d="m 94.909092,44.909092 c 0,23.597621 -19.129651,42.727272 -42.727272,42.727272 -23.597621,0 -42.7272721,-19.129651 -42.7272721,-42.727272 0,-23.597621 19.1296511,-42.7272721 42.7272721,-42.7272721 23.597621,0 42.727272,19.1296511 42.727272,42.7272721 z" sodipodi:ry="42.727272" sodipodi:rx="42.727272" sodipodi:cy="44.909092" sodipodi:cx="52.18182" id="path1315" style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" sodipodi:type="arc"/> - <path sodipodi:type="arc" style="opacity:0.11885244;fill:url(#radialGradient11011);fill-opacity:1;fill-rule:nonzero;stroke:none" id="path2190" sodipodi:cx="52.18182" sodipodi:cy="44.909092" sodipodi:rx="42.988293" sodipodi:ry="42.988293" d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)"/> - <g style="opacity:0.57786889" id="g3357"> - <path style="fill:url(#linearGradient11013);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 18.32319,89.008621 c 0.08929,0.161616 0.195172,0.304391 0.286126,0.464954 -0.09422,-0.152925 -0.19341,-0.311012 -0.286126,-0.464954 z m 91.41715,0 c -0.0927,0.153942 -0.1919,0.312029 -0.28612,0.464954 0.091,-0.160563 0.19683,-0.303338 0.28612,-0.464954 z m -90.987961,0.786846 c 9.012499,15.667623 25.919,26.216263 45.279382,26.216263 19.360383,0 36.266889,-10.54864 45.279399,-26.216263 -9.425234,15.074563 -26.202555,25.071753 -45.279399,25.071753 -19.076844,0 -35.854164,-9.99719 -45.279382,-25.071753 z" id="path3138"/> - <path id="path3143" d="m 21.546815,86.902153 c 0.08342,0.150981 0.182328,0.28436 0.267297,0.434357 -0.08802,-0.142862 -0.180682,-0.290546 -0.267297,-0.434357 z m 85.401185,0 c -0.0866,0.143811 -0.17929,0.291495 -0.2673,0.434357 0.085,-0.149997 0.18388,-0.283376 0.2673,-0.434357 z m -85.00024,0.735065 c 8.419408,14.636582 24.213332,24.491032 42.299653,24.491032 18.086322,0 33.880242,-9.85445 42.299647,-24.491032 -8.804957,14.082532 -24.478205,23.421842 -42.299647,23.421842 -17.821442,0 -33.494685,-9.33931 -42.299653,-23.421842 z" style="fill:url(#linearGradient11015);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="fill:url(#linearGradient11017);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 24.78966,84.242991 c 0.07668,0.138787 0.167604,0.261396 0.245712,0.399281 -0.08091,-0.131326 -0.166091,-0.267083 -0.245712,-0.399281 z m 78.5047,0 c -0.0796,0.132198 -0.1648,0.267955 -0.24572,0.399281 0.0781,-0.137885 0.16904,-0.260494 0.24572,-0.399281 z m -78.136133,0.675706 c 7.739507,13.454618 22.258007,22.513283 38.883784,22.513283 16.625777,0 31.144276,-9.058666 38.883779,-22.513283 -8.093927,12.945319 -22.501492,21.530433 -38.883779,21.530433 -16.382289,0 -30.789854,-8.585114 -38.883784,-21.530433 z" id="path3145"/> - <path id="path3147" d="m 28.398565,82.501092 c 0.06954,0.125862 0.151993,0.23705 0.222826,0.362091 -0.07337,-0.119094 -0.150621,-0.242206 -0.222826,-0.362091 z m 71.192615,0 c -0.07221,0.119885 -0.14946,0.242997 -0.222835,0.362091 0.07084,-0.125041 0.153293,-0.236229 0.222835,-0.362091 z m -70.858377,0.612769 c 7.018633,12.201428 20.184848,20.416349 35.262068,20.416349 15.077217,0 28.243433,-8.214922 35.262067,-20.416349 -7.340046,11.739565 -20.405662,19.525049 -35.262067,19.525049 -14.856408,0 -27.922024,-7.785484 -35.262068,-19.525049 z" style="fill:url(#linearGradient11019);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="fill:url(#linearGradient11021);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 32.581299,80.504353 c 0.06169,0.11165 0.134832,0.210283 0.197666,0.321206 -0.06509,-0.105646 -0.133615,-0.214858 -0.197666,-0.321206 z m 63.154077,0 c -0.06405,0.106348 -0.132583,0.21556 -0.197673,0.321206 0.06284,-0.110923 0.135981,-0.209556 0.197673,-0.321206 z m -62.857579,0.543579 c 6.226141,10.823734 17.905727,18.111084 31.280539,18.111084 13.37481,0 25.054396,-7.287351 31.280538,-18.111084 -6.511262,10.414022 -18.101606,17.320425 -31.280538,17.320425 -13.178933,0 -24.769278,-6.906403 -31.280539,-17.320425 z" id="path3149"/> - <path id="path3151" d="m 35.859703,78.248887 c 0.05528,0.09552 0.120825,0.179894 0.177132,0.274788 -0.05833,-0.09038 -0.119734,-0.183809 -0.177132,-0.274788 z m 56.593697,0 c -0.0574,0.09098 -0.11881,0.184409 -0.177139,0.274788 0.05631,-0.09489 0.121856,-0.179272 0.177139,-0.274788 z m -56.327998,0.465024 c 5.579375,9.259547 16.045697,15.493769 28.031148,15.493769 11.98545,0 22.451772,-6.234223 28.031148,-15.493769 -5.834879,8.909044 -16.221229,14.817372 -28.031148,14.817372 -11.809919,0 -22.196271,-5.908328 -28.031148,-14.817372 z" style="fill:url(#linearGradient11023);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="fill:url(#linearGradient11025);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 39.510842,76.25898 c 0.04873,0.07843 0.106509,0.147722 0.156144,0.225645 -0.05141,-0.07422 -0.105548,-0.150937 -0.156144,-0.225645 z m 49.888034,0 c -0.0506,0.07471 -0.104733,0.151429 -0.15615,0.225645 0.04964,-0.07792 0.107418,-0.14721 0.15615,-0.225645 z m -49.653817,0.381861 c 4.918287,7.603605 14.144477,12.722922 24.709799,12.722922 10.56532,0 19.79151,-5.119317 24.709798,-12.722922 -5.143517,7.315785 -14.299211,12.16749 -24.709798,12.16749 -10.410587,0 -19.566283,-4.851705 -24.709799,-12.16749 z" id="path3153"/> - <path id="path3157" d="m 43.011934,73.358075 c 0.04189,0.07264 0.09156,0.1368 0.134228,0.208962 -0.0442,-0.06873 -0.09073,-0.139778 -0.134228,-0.208962 z m 42.88585,0 c -0.0435,0.06918 -0.09003,0.140234 -0.134233,0.208962 0.04267,-0.07216 0.09234,-0.136327 0.134233,-0.208962 z m -42.684507,0.353628 c 4.227966,7.041427 12.159186,11.782245 21.241581,11.782245 9.082393,0 17.013613,-4.740818 21.24158,-11.782245 -4.421583,6.774887 -12.292202,11.267879 -21.24158,11.267879 -8.949378,0 -16.819999,-4.492992 -21.241581,-11.267879 z" style="fill:url(#linearGradient11027);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="fill:url(#linearGradient11029);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 46.613057,70.957326 c 0.03495,0.0624 0.0764,0.117528 0.111999,0.179523 -0.03688,-0.05904 -0.07571,-0.120085 -0.111999,-0.179523 z m 35.783635,0 c -0.03629,0.05944 -0.07512,0.120478 -0.112003,0.179523 0.0356,-0.06199 0.07705,-0.117121 0.112003,-0.179523 z m -35.615636,0.303809 c 3.527784,6.049434 10.145535,10.122367 17.723817,10.122367 7.578282,0 14.196033,-4.072933 17.723817,-10.122367 -3.689336,5.820444 -10.256522,9.680464 -17.723817,9.680464 -7.467294,0 -14.034482,-3.86002 -17.723817,-9.680464 z" id="path3159"/> - <path id="path3161" d="m 49.814056,68.456546 c 0.02792,0.05546 0.06102,0.104447 0.08946,0.159541 -0.02946,-0.05247 -0.06047,-0.106718 -0.08946,-0.159541 z m 28.581388,0 c -0.02899,0.05282 -0.06,0.107068 -0.08946,0.159541 0.02844,-0.05509 0.06154,-0.104085 0.08946,-0.159541 z M 49.948241,68.72654 c 2.81774,5.376095 8.103523,8.995687 14.156508,8.995687 6.052985,0 11.338768,-3.619592 14.156507,-8.995687 -2.946775,5.172593 -8.19217,8.602971 -14.156507,8.602971 -5.964336,0 -11.209733,-3.430378 -14.156508,-8.602971 z" style="fill:url(#linearGradient11031);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="fill:url(#linearGradient11033);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 57.016302,64.055173 c 0.01453,0.02803 0.03176,0.05278 0.04656,0.08063 -0.01533,-0.02652 -0.03148,-0.05393 -0.04656,-0.08063 z m 14.877113,0 c -0.01509,0.02669 -0.03123,0.05411 -0.04657,0.08063 0.0148,-0.02784 0.03203,-0.0526 0.04657,-0.08063 z m -14.807268,0.136444 c 1.466683,2.716869 4.218026,4.54607 7.368711,4.54607 3.150685,0 5.902027,-1.829201 7.36871,-4.54607 -1.533848,2.614028 -4.264168,4.347606 -7.36871,4.347606 -3.104542,0 -5.834862,-1.733578 -7.368711,-4.347606 z" id="path3163"/> - <path id="path3165" d="m 53.315147,66.555953 c 0.02127,0.04103 0.0465,0.07727 0.06817,0.118032 -0.02245,-0.03882 -0.04608,-0.07895 -0.06817,-0.118032 z m 21.779266,0 c -0.02209,0.03908 -0.04572,0.07921 -0.06817,0.118032 0.02167,-0.04076 0.0469,-0.077 0.06817,-0.118032 z m -21.677017,0.199746 c 2.147143,3.977346 6.174956,6.655194 10.787383,6.655194 4.612428,0 8.64024,-2.677848 10.787382,-6.655194 -2.245468,3.826792 -6.242505,6.364654 -10.787382,6.364654 -4.544877,0 -8.541913,-2.537862 -10.787383,-6.364654 z" style="fill:url(#linearGradient11035);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - </g> - <g style="opacity:0.28688528" id="g3293"> - <path id="path3197" d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" style="opacity:0.73360656;fill:url(#linearGradient11037);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="opacity:0.73360656;fill:url(#linearGradient11039);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" id="path3199"/> - <path id="path3201" d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" style="opacity:0.73360656;fill:url(#linearGradient11041);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="opacity:0.73360656;fill:url(#linearGradient11043);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" id="path3203"/> - <path id="path3205" d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" style="opacity:0.73360656;fill:url(#linearGradient11045);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="opacity:0.73360656;fill:url(#linearGradient11047);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" id="path3207"/> - <path id="path3209" d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" style="opacity:0.73360656;fill:url(#linearGradient11049);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="opacity:0.73360656;fill:url(#linearGradient11051);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" id="path3211"/> - <path id="path3213" d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" style="opacity:0.73360656;fill:url(#linearGradient11053);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="opacity:0.73360656;fill:url(#linearGradient11055);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" id="path3215"/> - <path id="path3217" d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" style="opacity:0.73360656;fill:url(#linearGradient11057);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="opacity:0.73360656;fill:url(#linearGradient11059);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" id="path3219"/> - </g> - <g style="opacity:0.28688528" transform="translate(-0.565862,0.282931)" id="g3307"> - <path style="opacity:0.73360656;fill:url(#linearGradient11061);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" id="path3309"/> - <path id="path3311" d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" style="opacity:0.73360656;fill:url(#linearGradient11063);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="opacity:0.73360656;fill:url(#linearGradient11065);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" id="path3313"/> - <path id="path3315" d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" style="opacity:0.73360656;fill:url(#linearGradient11067);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="opacity:0.73360656;fill:url(#linearGradient11069);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" id="path3317"/> - <path id="path3319" d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" style="opacity:0.73360656;fill:url(#linearGradient11071);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="opacity:0.73360656;fill:url(#linearGradient11073);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" id="path3321"/> - <path id="path3323" d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" style="opacity:0.73360656;fill:url(#linearGradient11075);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="opacity:0.73360656;fill:url(#linearGradient11077);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" id="path3325"/> - <path id="path3327" d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" style="opacity:0.73360656;fill:url(#linearGradient11079);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - <path style="opacity:0.73360656;fill:url(#linearGradient11081);fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" id="path3329"/> - <path id="path3331" d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" style="opacity:0.73360656;fill:url(#linearGradient11083);fill-opacity:1;fill-rule:nonzero;stroke:none"/> - </g> - </g> - <path sodipodi:type="arc" style="opacity:0.15983605;fill:url(#radialGradient11085);fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3086" sodipodi:cx="52.18182" sodipodi:cy="44.909092" sodipodi:rx="42.988293" sodipodi:ry="42.988293" d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" transform="matrix(1.400964,0,0,1.400964,-10.24782,-2.576398)"/> - <path transform="matrix(-1.400964,0,0,1.400964,135.9619,-2.576398)" d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" sodipodi:ry="42.988293" sodipodi:rx="42.988293" sodipodi:cy="44.909092" sodipodi:cx="52.18182" id="path3100" style="opacity:0.19672134;fill:url(#radialGradient11087);fill-opacity:1;fill-rule:nonzero;stroke:none" sodipodi:type="arc"/> - <path style="fill:url(#radialGradient11089);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:4" d="m 40.9375,19.34375 c -1.378982,0.08425 -2.721284,0.544956 -3.875,1.3125 -5.160376,3.349464 -9.759998,7.797045 -13.40625,13.1875 -7.292501,10.780907 -9.542508,23.591287 -7.25,35.46875 2.292507,11.877459 9.156596,22.92625 19.9375,30.21875 10.780909,7.2925 23.591285,9.54251 35.46875,7.25 11.877462,-2.29251 22.957499,-9.156596 30.25,-19.9375 7.2925,-10.780908 9.5425,-23.591289 7.25,-35.46875 C 107.01999,39.497538 100.1559,28.448751 89.375,21.15625 85.785149,18.722745 80.902255,19.660149 78.46875,23.25 c -2.433505,3.589851 -1.496101,8.472745 2.09375,10.90625 7.265039,4.914273 11.806943,12.22532 13.34375,20.1875 1.536801,7.962181 0.07052,16.45371 -4.84375,23.71875 C 84.148228,85.327539 76.80593,89.838193 68.84375,91.375 60.881568,92.911807 52.390041,91.445523 45.125,86.53125 37.859968,81.616982 33.349307,74.305937 31.8125,66.34375 30.275694,58.381572 31.741981,49.890035 36.65625,42.625 c 2.457137,-3.632522 5.528356,-6.579432 8.96875,-8.8125 2.968319,-1.884093 4.32342,-5.507692 3.3125,-8.875 -1.01092,-3.367307 -4.141021,-5.656122 -7.65625,-5.59375 -0.117417,0.0019 -0.226887,-0.0071 -0.34375,0 z m 21.4375,21 c -1.937828,0.12532 -3.767515,0.973547 -5.125,2.375 -1.447987,1.494885 -2.253965,3.512862 -2.21875,5.59375 -10e-7,1.266966 0,24.0625 0,24.0625 -0.137593,2.885743 1.33379,5.609689 3.8125,7.09375 2.478711,1.484059 5.55254,1.484061 8.03125,0 2.478713,-1.484063 3.950093,-4.208007 3.8125,-7.09375 0,0 -10e-7,-22.795621 0,-24.0625 0.0358,-2.118777 -0.785781,-4.154894 -2.28125,-5.65625 -1.495467,-1.501357 -3.537348,-2.339972 -5.65625,-2.3125 -0.13006,0.0019 -0.245811,-0.0084 -0.375,0 z" id="path3570"/> - <path style="fill:url(#linearGradient11091);fill-opacity:1;fill-rule:nonzero;stroke:none" d="M 89.052758,110.33731 C 115.83808,95.818903 126.60843,63.173429 113.08007,36.784006 c -3.14854,-6.141789 -7.35212,-11.402152 -12.28011,-15.71269 4.52788,4.044347 8.37165,8.938861 11.28913,14.629954 13.10314,25.559983 2.28328,57.263399 -24.150142,70.76265 -26.43342,13.49924 -58.52431,3.70984 -71.62745,-21.850166 C 3.2083579,59.053773 14.028228,27.350338 40.461648,13.851101 52.955568,7.4706054 66.709008,6.3080926 79.127588,9.5390554 65.940318,5.9457846 51.268668,7.0675156 37.954728,13.86679 10.230318,28.025312 -1.1178821,61.276793 12.625218,88.085107 c 13.74309,26.808323 47.40094,37.075733 75.12534,22.917223 0.4332,-0.22125 0.87703,-0.43458 1.3022,-0.66502 z M 80.055218,9.7786728 c -0.30005,-0.087287 -0.59939,-0.1708794 -0.90105,-0.2531907 0.3006,0.07834 0.60207,0.1696947 0.90105,0.2531907 z" id="path4855" inkscape:r_cx="true" inkscape:r_cy="true"/> - <path style="opacity:0.57674417;fill:url(#radialGradient11093);fill-opacity:1;fill-rule:nonzero;stroke:none" d="M 60.886675,3.5011061 C 30.994595,4.4513813 7.0114547,29.083452 7.0114647,59.284292 c 0,15.796568 6.5792803,30.076913 17.1118103,40.23189 C 60.218215,87.621632 71.214115,42.093571 109.07913,28.465026 99.107975,13.412218 82.025115,3.5011061 62.664525,3.5011061 c -0.60001,0 -1.18239,-0.018932 -1.77785,0 z" id="path4868" inkscape:r_cx="true" inkscape:r_cy="true"/> - </g> - </g> - <path sodipodi:type="arc" style="opacity:0.54945056;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7312)" id="path7278" sodipodi:cx="177.4838" sodipodi:cy="65.774605" sodipodi:rx="17.67767" sodipodi:ry="17.67767" d="m 195.16146,65.774605 a 17.67767,17.67767 0 1 1 -35.35533,0 17.67767,17.67767 0 1 1 35.35533,0 z" transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.7399)"/> - <path d="m 195.16146,65.774605 a 17.67767,17.67767 0 1 1 -35.35533,0 17.67767,17.67767 0 1 1 35.35533,0 z" sodipodi:ry="17.67767" sodipodi:rx="17.67767" sodipodi:cy="65.774605" sodipodi:cx="177.4838" id="path7280" style="fill:url(#radialGradient11009);fill-opacity:1;stroke:none" sodipodi:type="arc" transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.5922)"/> - <rect ry="0" rx="0" y="951.75006" x="-25.621553" height="74.980072" width="2.6215534" id="rect7402" style="opacity:0.29304026;fill:url(#linearGradient10892);fill-opacity:1;stroke:none" transform="scale(-1,1)"/> - <path style="fill:none;stroke:url(#linearGradient11007);stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3598)" d="m 62,112 -2,0 0,-96" id="path3584" transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)"/> - <path style="opacity:0.56306308;fill:url(#linearGradient10888);fill-opacity:1;stroke:none" d="m 3.9884152,952.73011 36.3115848,0 c 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" id="rect7363" sodipodi:nodetypes="ccsscsc"/> - <rect style="fill:#000000;fill-opacity:1;stroke:none" id="rect3186" width="1.4270998" height="70.530472" x="22.000366" y="955.68286" rx="0.25630134" ry="0.16450633"/> - <rect ry="0.16450633" rx="0.25630134" y="955.68286" x="22.000366" height="70.530472" width="1.4270998" id="rect3572" style="fill:#000000;fill-opacity:1;stroke:none"/> - <rect style="opacity:0.71794876;fill:url(#linearGradient10883);fill-opacity:1;stroke:none" id="rect3574" width="0.61901248" height="70.530472" x="22.399998" y="954.7301" rx="0.11117215" ry="0.16450633"/> - <path style="fill:url(#radialGradient10880);fill-opacity:1;stroke:none" d="m 22.000285,962.77201 0,8.26816 1.427204,0 0,-8.26816 -1.427204,0 z" id="rect3394"/> - <path id="path3407" d="m 642.40625,286.75 0,72.375 5.90625,0 0,-72.375 -5.90625,0 z" style="opacity:0.46520146;fill:url(#radialGradient11005);fill-opacity:1;stroke:none;filter:url(#filter3469)" transform="matrix(0.4837111,0,0,0.1142406,-289.45421,930.01349)"/> - <path id="path4287" d="m 22.000285,1020.5549 0,6.2712 1.427204,0 0,-6.2712 -1.427204,0 z" style="fill:url(#radialGradient10876);fill-opacity:1;stroke:none"/> - <path style="opacity:0.54945056;fill:url(#radialGradient11003);fill-opacity:1;stroke:none;filter:url(#filter4927)" d="m 59.301763,96.79545 -4.52e-4,15.95387 3.500264,0 L 62.7,96.79545 l -3.398237,0 z" id="path4787" sodipodi:nodetypes="ccccc" transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)"/> - <rect style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" id="rect7273" width="0.54780781" height="6.0287628" x="22.015116" y="951.72955"/> - <path sodipodi:nodetypes="ccccc" id="path7406" d="m 4.1483093,1030.7925 35.7115847,0 c 0.692448,0 1.249906,-0.2307 1.249906,-0.5173 -11.979557,-4.1048 -26.09051,-3.5144 -38.2113962,0 0,0.2866 0.5574578,0.5173 1.2499055,0.5173 z" style="opacity:0.47985349;fill:url(#radialGradient10871);fill-opacity:1;stroke:none"/> - <g transform="matrix(0.5,0,0,0.5,190,942.59711)" id="Livello_1"/> - <rect style="opacity:0.65315312;fill:url(#linearGradient10867);fill-opacity:1;stroke:none" id="rect4876" width="40.000008" height="4" x="2" y="951.7301" rx="1.6761006" ry="1.6761006"/> - <g id="g5647" transform="matrix(0.6010762,0,0,0.6010762,374.33595,1083.6037)"> - <path sodipodi:nodetypes="ccssszssscc" id="path5328" d="m -498,-139.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.311808 -10.96875,3.718748 -11.9257,1.21541 -23.53125,7.587115 -23.53125,13.687495 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687495 -3.99292,-0.40694 -9.15288,-1.293738 -10.96875,-3.718748 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-139.31937 z" style="opacity:0.481982;fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5346)"/> - <path style="fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5214)" d="m -498,-141.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.215408 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.31937 z" id="path5184" sodipodi:nodetypes="ccssszssscc"/> - <path sodipodi:nodetypes="ccssszssscc" id="path3435" d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" style="fill:url(#linearGradient3381-7);fill-opacity:1;fill-rule:evenodd;stroke:none"/> - <path id="path5218" d="m -497.9851,-141.63165 -14.5625,5.4375 c 0.0823,0.2115 0.14371,0.53213 0.21875,0.90625 l 14.34375,-5.34375 14.28125,5.34375 c 0.0786,-0.3886 0.19552,-0.70835 0.28125,-0.90625 l -14.5625,-5.4375 z m -13.5625,21.21875 c -0.0808,6.89711 -0.65883,13.728 -2.0625,15.375 -1.9651,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.92571,1.21541 -23.53125,7.587123 -23.53125,13.687503 0,0.144795 0.0214,0.294549 0.0313,0.4375 0.692,-5.921036 11.94697,-11.947572 23.5,-13.125003 3.99292,-0.40694 9.00365,-1.413 10.96875,-3.71875 1.47226,-1.72748 2.02909,-9.1492 2.0625,-16.375 z m 27.125,2.0625 c 0.12575,6.40052 0.70665,12.54356 2.03125,14.3125 1.81587,2.42501 6.97582,3.31181 10.96875,3.71875 11.63062,1.18534 22.94516,7.039381 23.5,13.218753 0.0146,-0.173402 0.0625,-0.355119 0.0625,-0.53125 -1e-5,-6.350323 -11.6368,-12.472093 -23.5625,-13.687503 -3.99293,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -1.25624,-1.67765 -1.86615,-7.27675 -2.03125,-13.3125 z" style="fill:url(#radialGradient3383-8);fill-opacity:1;fill-rule:evenodd;stroke:none"/> - <path style="opacity:0.11711713;fill:url(#linearGradient3386);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600)" d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.41058,-0.396513 -21.97647,-1.083033 -39.53125,0 z" id="path5281" sodipodi:nodetypes="cscscscc" transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)"/> - <path id="path5235" d="m -511.82885,-112.6004 c -0.0609,5.48859 -0.3553,10.83813 -8.03125,11.25 -3.86166,0.69826 -4.19519,2.151173 -4.875,3.531253 9.03627,-1.36341 19.4666,-4.011823 26.94953,-2.786613 l 0.13258,-8.98705 c -4.24239,-1.08888 -9.97027,-1.89853 -14.17586,-3.00759 z" style="opacity:0.46846846;fill:url(#radialGradient3388);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257)" sodipodi:nodetypes="cccccc"/> - <path id="path5261" d="m -510.4226,-109.2254 c -0.35428,4.99035 -5.21804,8.28427 -9.96166,9.09727 5.05584,-0.89459 16.56776,-1.03031 22.5324,-1.04798 l 0.11048,-6.20554 c -3.46184,-0.52011 -8.29888,-0.68808 -12.68122,-1.84375 z" style="opacity:0.4099099;fill:url(#radialGradient3390);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257)" sodipodi:nodetypes="ccccc"/> - <path style="fill:url(#linearGradient3392-6);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 l 53.15625,0 c -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" id="path5350" sodipodi:nodetypes="ccsccscc"/> - <path style="opacity:0.5495496;fill:none;stroke:url(#linearGradient3394-8);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" id="path5265" sodipodi:nodetypes="ccssszssscc"/> - <path transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" sodipodi:nodetypes="cscscscc" id="path3569" d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.15799,-0.507294 -21.02253,-0.676229 -39.53125,0 z" style="opacity:0.11711713;fill:url(#linearGradient3396);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600)"/> - <path sodipodi:nodetypes="cccsc" id="path5360" d="m -484.9792,-110.89486 c -0.0309,6.01372 -3.42647,8.66713 -12.45647,8.86418 13.73668,-0.71873 21.51974,1.32042 27.66815,2.278495 -3.12515,-1.117485 -8.27754,-1.167505 -11.4047,-2.985595 -3.35231,-1.94899 -3.48432,-5.07232 -3.80698,-8.15708 z" style="opacity:0.55405405;fill:#000000;fill-opacity:0.49729728;fill-rule:evenodd;stroke:url(#radialGradient3398);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter5402)"/> - <path id="path3620" d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.5131,9.379008 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.75355,-6.234085 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" style="opacity:0.43243247;fill:url(#radialGradient3400);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649)" sodipodi:nodetypes="cccccccccscsssc"/> - <path style="fill:url(#radialGradient3402);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649)" d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.41916,9.028413 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.72354,-6.122102 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" id="path5543" sodipodi:nodetypes="cccccccccscsssc"/> - <g mask="url(#mask5641)" id="g5608"> - <path transform="matrix(0.9478225,0,0,0.9234897,-313.03905,-186.89507)" sodipodi:nodetypes="cscssscc" id="path5283" d="m -221.76796,93.20625 c -9.66876,0.985393 -19.22404,5.312612 -22.36077,10.23165 -2.95517,4.63431 6.61982,3.87902 10.65303,2.25713 9.14413,-3.49527 22.59713,-3.45175 37.58274,-3.45175 17.89278,0 33.6687,0.89525 42.39208,5.61044 5.43293,2.93663 9.21476,-0.42103 8.02165,-3.09878 -2.41912,-5.429356 -12.55538,-10.470722 -23.13248,-11.54869 -30.70887,-2.692478 -35.76778,-1.861224 -53.15625,0 z" style="opacity:0.27027025;fill:url(#radialGradient3404);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178)"/> - <path style="opacity:0.27027025;fill:url(#radialGradient3406);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178)" d="m -221.76796,93.20625 c -9.8876,1.007694 -19.55436,5.201049 -22.5707,10.56315 -2.20296,3.91619 6.14869,3.79059 10.73888,1.97324 9.1757,-3.44127 22.65328,-3.63195 37.70682,-3.63195 17.80642,0 33.44474,0.99076 42.26424,5.67477 5.13681,3.01365 9.64454,-0.29612 8.02046,-3.33328 -2.45487,-5.409725 -12.61965,-10.187663 -23.00345,-11.24593 -29.41254,-2.955932 -35.37204,-1.884684 -53.15625,0 z" id="path3661" sodipodi:nodetypes="cscscccc" transform="matrix(0.9410153,0,0,0.9168573,-314.3667,-186.17274)"/> - <path id="path5557" d="m -499.8125,-102.09375 c -4.83212,0.0399 -10.33985,0.16863 -16.84375,0.40625 1.68391,0.54236 3.18431,1.28749 4.03125,2.28125 1.26736,1.487077 1.80071,7.479387 1.90625,13.6875 l 11.25,0 c 0.91468,0 1.65625,-0.832157 1.65625,-1.84375 l 0,-14.53125 c -0.66994,0.002 -1.30348,-0.006 -2,0 z" style="opacity:0.14864867;fill:url(#linearGradient3408);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600)"/> - </g> - </g> - <g transform="matrix(0.5,0,0,0.5,218,951.29176)" id="g3290"/> - <path sodipodi:nodetypes="ccsscsc" id="path4347" d="m 3.9884152,952.73011 c 11.9179838,-0.55763 23.8669268,-1.02239 36.3115848,0 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" style="opacity:0.56306308;fill:url(#linearGradient10845);fill-opacity:1;stroke:none"/> - <rect ry="5.1142359" rx="5.1142359" style="fill:url(#radialGradient10842);fill-opacity:1;stroke:none" id="rect3383" width="101" height="78" x="26" y="936.7301"/> - <rect y="937.2301" x="26.5" height="77" width="100" id="rect3311" style="fill:url(#linearGradient10839);fill-opacity:1;stroke:none" rx="4.9999995" ry="4.9999995"/> - <rect ry="2.5754218" rx="2.5754218" style="fill:url(#linearGradient10836);fill-opacity:1;stroke:none" id="rect3271" width="96" height="73" x="28" y="938.7301"/> - <path style="fill:url(#linearGradient10833);fill-opacity:1;stroke:none" d="m 30.568278,938.72476 c -1.426781,0 -2.573138,1.14636 -2.573138,2.57314 l 0,1.9149 c 0,-1.42679 1.146357,-3.21144 2.573138,-3.21144 l 91.858582,-0.0111 c 1.42679,0 2.57314,1.78465 2.57314,3.21143 l 0,-1.91489 c 0,-1.42678 -1.14635,-2.57314 -2.57314,-2.57314 l -91.858582,0.0111 z" id="rect3298" sodipodi:nodetypes="ccccccccc"/> - <rect y="942.2301" x="32.5" height="64.999992" width="87" id="rect3281" style="opacity:0.70720712;fill:url(#radialGradient10830);fill-opacity:1;stroke:none" rx="1.3000005" ry="1.3000005"/> - <rect ry="1.3000005" rx="1.3000005" style="opacity:0.70720712;fill:url(#radialGradient10827);fill-opacity:1;stroke:none" id="rect5414" width="87" height="65" x="32.5" y="942.2301"/> - <rect y="942.7301" x="33" height="64.000023" width="86" id="rect3267" style="fill:#000000;fill-opacity:1;stroke:none" rx="0.64175582" ry="0.64175582"/> - <path style="fill:url(#linearGradient10823);fill-opacity:1;stroke:none" d="m 30.6,938.73011 c -1.426782,0 -2.573139,1.14636 -2.573139,2.57314 L 28,979.73011 c 15.082806,2.00954 22.213417,2.81832 39.622346,2.81832 24.127254,0 38.223634,-2.1432 57.377654,-5.84441 l -0.0252,-35.40077 c 4e-5,-1.42678 -1.14631,-2.57314 -2.5731,-2.57314 l -91.8017,0 z" id="path3420" sodipodi:nodetypes="cccscccc"/> - <rect style="fill:url(#linearGradient10820);fill-opacity:1;stroke:none" id="rect2487" width="84" height="62" x="34" y="943.7301"/> - <rect y="944.7301" x="35" height="60" width="82" id="rect4321" style="fill:url(#radialGradient10817);fill-opacity:1;stroke:none"/> - <path style="fill:url(#linearGradient10814);fill-opacity:1;stroke:none" d="m 34.5,944.23011 82.5,0 -82.5,60.99999 0,-60.99999 z" id="rect4373" sodipodi:nodetypes="cccc"/> - <path sodipodi:type="arc" style="fill:url(#radialGradient11001);fill-opacity:1;stroke:none" id="path4419" sodipodi:cx="-1" sodipodi:cy="107" sodipodi:rx="1" sodipodi:ry="1" d="m 0,107 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z" transform="matrix(1.7320754,0,0,1.7320754,24.34579,838.31798)"/> - <path transform="matrix(1.7320754,0,0,1.7320754,24.34579,780.95949)" d="m 0,107 a 1,1 0 1 1 -2,0 1,1 0 1 1 2,0 z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="107" sodipodi:cx="-1" id="path4437" style="fill:url(#radialGradient10999);fill-opacity:1;stroke:none" sodipodi:type="arc"/> - </g> -</svg>
\ No newline at end of file diff --git a/kpov_judge/doc/presentation/figs/fail.jpg b/kpov_judge/doc/presentation/figs/fail.jpg Binary files differdeleted file mode 100644 index cf18aa0..0000000 --- a/kpov_judge/doc/presentation/figs/fail.jpg +++ /dev/null diff --git a/kpov_judge/doc/presentation/figs/kpov-architecture.pdf b/kpov_judge/doc/presentation/figs/kpov-architecture.pdf Binary files differdeleted file mode 100644 index 8efc2f6..0000000 --- a/kpov_judge/doc/presentation/figs/kpov-architecture.pdf +++ /dev/null diff --git a/kpov_judge/doc/presentation/figs/kpov-architecture.png b/kpov_judge/doc/presentation/figs/kpov-architecture.png Binary files differdeleted file mode 100644 index df20138..0000000 --- a/kpov_judge/doc/presentation/figs/kpov-architecture.png +++ /dev/null diff --git a/kpov_judge/doc/presentation/figs/kpov-architecture.svg b/kpov_judge/doc/presentation/figs/kpov-architecture.svg deleted file mode 100644 index 93e14aa..0000000 --- a/kpov_judge/doc/presentation/figs/kpov-architecture.svg +++ /dev/null @@ -1,18991 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1052.3622" - height="744.09448" - id="svg2" - version="1.1" - inkscape:version="0.48.5 r10040" - sodipodi:docname="kpov-architecture.svg" - inkscape:export-filename="/home/polz/predmeti/kpov-public/kpov_judge/doc/presentation/figs/kpov-architecture.png" - inkscape:export-xdpi="100" - inkscape:export-ydpi="100"> - <defs - id="defs4"> - <radialGradient - r="20.631315" - fy="138.73308" - fx="71.368683" - cy="138.73308" - cx="71.368683" - gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" - gradientUnits="userSpaceOnUse" - id="radialGradient11107" - xlink:href="#linearGradient3802" - inkscape:collect="always" /> - <radialGradient - r="20.5" - fy="116" - fx="72" - cy="116" - cx="72" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - gradientUnits="userSpaceOnUse" - id="radialGradient11105" - xlink:href="#linearGradient4949" - inkscape:collect="always" /> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientTransform="translate(1,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11103" - xlink:href="#linearGradient6064" - inkscape:collect="always" /> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientUnits="userSpaceOnUse" - id="linearGradient11101" - xlink:href="#linearGradient6064" - inkscape:collect="always" /> - <linearGradient - y2="15.908398" - x2="72.281242" - y1="58" - x1="70.316795" - gradientTransform="translate(102.53048,-57.275649)" - gradientUnits="userSpaceOnUse" - id="linearGradient11095" - xlink:href="#linearGradient7136" - inkscape:collect="always" /> - <radialGradient - r="50.234375" - fy="8.0446291" - fx="43.034355" - cy="42.699898" - cx="43.620941" - gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" - gradientUnits="userSpaceOnUse" - id="radialGradient11093" - xlink:href="#linearGradient4875" - inkscape:collect="always" /> - <linearGradient - y2="32.457832" - x2="76.596703" - y1="148.57518" - x1="17.723173" - gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" - gradientUnits="userSpaceOnUse" - id="linearGradient11091" - xlink:href="#linearGradient4860" - inkscape:collect="always" /> - <radialGradient - r="47.937988" - fy="111.93269" - fx="69.801033" - cy="88.499367" - cx="60.097603" - gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" - gradientUnits="userSpaceOnUse" - id="radialGradient11089" - xlink:href="#linearGradient3954" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11087" - xlink:href="#linearGradient3088" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11085" - xlink:href="#linearGradient3088" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11081" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11079" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11077" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11075" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11073" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11071" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11069" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11067" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11065" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11063" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11061" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11059" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11057" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11055" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11053" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11051" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11049" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11047" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11045" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11043" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11041" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11039" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11037" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11035" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11033" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11031" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11029" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11027" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11025" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11023" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11021" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11019" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11017" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11015" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11013" - xlink:href="#linearGradient3167" - inkscape:collect="always" /> - <radialGradient - r="42.727272" - fy="44.909092" - fx="52.18182" - cy="44.909092" - cx="52.18182" - spreadMethod="reflect" - gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" - gradientUnits="userSpaceOnUse" - id="radialGradient11011" - xlink:href="#linearGradient3065" - inkscape:collect="always" /> - <radialGradient - r="17.67767" - fy="55.875111" - fx="176.77669" - cy="65.774605" - cx="177.4838" - gradientUnits="userSpaceOnUse" - id="radialGradient11009" - xlink:href="#linearGradient7290" - inkscape:collect="always" /> - <linearGradient - y2="15.75" - x2="71.75" - y1="112.25" - x1="71.75" - gradientTransform="translate(-12,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11007" - xlink:href="#linearGradient3586" - inkscape:collect="always" /> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" - gradientUnits="userSpaceOnUse" - id="radialGradient11005" - xlink:href="#linearGradient3399-1" - inkscape:collect="always" /> - <radialGradient - r="2.953125" - fy="322.82944" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" - gradientUnits="userSpaceOnUse" - id="radialGradient11003" - xlink:href="#linearGradient3483" - inkscape:collect="always" /> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient11001" - xlink:href="#linearGradient4429" - inkscape:collect="always" /> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient10999" - xlink:href="#linearGradient4441" - inkscape:collect="always" /> - <linearGradient - y2="122.43194" - x2="91.105286" - y1="122.43194" - x1="50.458698" - gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10996" - xlink:href="#linearGradient4029" - inkscape:collect="always" /> - <linearGradient - y2="124.48643" - x2="93.409775" - y1="124.48643" - x1="50.394154" - gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10993" - xlink:href="#linearGradient3149" - inkscape:collect="always" /> - <linearGradient - y2="477.52972" - x2="742.16382" - y1="477.52972" - x1="555.14642" - gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990" - xlink:href="#linearGradient3611" - inkscape:collect="always" /> - <radialGradient - r="93.508705" - fy="406.23959" - fx="648.6554" - cy="390.69016" - cx="648.65527" - gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" - gradientUnits="userSpaceOnUse" - id="radialGradient10987" - xlink:href="#linearGradient3166" - inkscape:collect="always" /> - <radialGradient - r="93.508705" - fy="639.22247" - fx="648.65515" - cy="639.22247" - cx="648.65515" - gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" - gradientUnits="userSpaceOnUse" - id="radialGradient10984" - xlink:href="#linearGradient3176" - inkscape:collect="always" /> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient10981" - xlink:href="#linearGradient3722" - inkscape:collect="always" /> - <radialGradient - r="7.9898205" - fy="76.438904" - fx="55.989819" - cy="76.438904" - cx="55.989819" - gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" - gradientUnits="userSpaceOnUse" - id="radialGradient10977" - xlink:href="#linearGradient3872" - inkscape:collect="always" /> - <linearGradient - y2="110.8287" - x2="73.38102" - y1="150.87357" - x1="73.38102" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10974" - xlink:href="#linearGradient3176" - inkscape:collect="always" /> - <linearGradient - gradientTransform="translate(2,927.73011)" - y2="18.691383" - x2="16.357016" - y1="92" - x1="36" - gradientUnits="userSpaceOnUse" - id="linearGradient10953" - xlink:href="#linearGradient4409" - inkscape:collect="always" /> - <linearGradient - y2="7.7186575" - x2="55.058228" - y1="-0.85672575" - x1="55.058228" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10950" - xlink:href="#linearGradient7354" - inkscape:collect="always" /> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" - gradientUnits="userSpaceOnUse" - id="linearGradient10947" - xlink:href="#linearGradient7394" - inkscape:collect="always" /> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" - gradientUnits="userSpaceOnUse" - id="linearGradient10892" - xlink:href="#linearGradient7394" - inkscape:collect="always" /> - <linearGradient - y2="116.8996" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10888" - xlink:href="#linearGradient7365" - inkscape:collect="always" /> - <linearGradient - y2="60.866104" - x2="73.467186" - y1="60.866104" - x1="72.201843" - gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" - gradientUnits="userSpaceOnUse" - id="linearGradient10883" - xlink:href="#linearGradient3576" - inkscape:collect="always" /> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" - gradientUnits="userSpaceOnUse" - id="radialGradient10880" - xlink:href="#linearGradient3399-1" - inkscape:collect="always" /> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" - gradientUnits="userSpaceOnUse" - id="radialGradient10876" - xlink:href="#linearGradient3483" - inkscape:collect="always" /> - <radialGradient - r="26.75" - fy="-16.181448" - fx="60" - cy="-16.181448" - cx="60" - gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" - gradientUnits="userSpaceOnUse" - id="radialGradient10871" - xlink:href="#linearGradient7365" - inkscape:collect="always" /> - <linearGradient - y2="24.713068" - x2="60.428722" - y1="22.930367" - x1="60.428722" - gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" - gradientUnits="userSpaceOnUse" - id="linearGradient10867" - xlink:href="#linearGradient4878" - inkscape:collect="always" /> - <linearGradient - y2="15.411574" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10845" - xlink:href="#linearGradient7365" - inkscape:collect="always" /> - <radialGradient - r="94" - fy="-192.92754" - fx="-122.25" - cy="-192.92754" - cx="-122.25" - gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" - gradientUnits="userSpaceOnUse" - id="radialGradient10842" - xlink:href="#linearGradient3393" - inkscape:collect="always" /> - <linearGradient - y2="-228.88507" - x2="-100" - y1="-106.62158" - x1="-100" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10839" - xlink:href="#linearGradient3385-7" - inkscape:collect="always" /> - <linearGradient - y2="-208.05618" - x2="-80" - y1="-67.985718" - x1="-80" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10836" - xlink:href="#linearGradient3259" - inkscape:collect="always" /> - <linearGradient - y2="-275.16071" - x2="-127.61703" - y1="-310.29703" - x1="-127.61703" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" - gradientUnits="userSpaceOnUse" - id="linearGradient10833" - xlink:href="#linearGradient3303-2" - inkscape:collect="always" /> - <radialGradient - r="78" - fy="-166.52031" - fx="-120.37437" - cy="-150.6152" - cx="-120" - gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" - gradientUnits="userSpaceOnUse" - id="radialGradient10830" - xlink:href="#linearGradient3273" - inkscape:collect="always" /> - <radialGradient - r="78" - fy="-109.7959" - fx="-120" - cy="-109.7959" - cx="-120" - gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" - gradientUnits="userSpaceOnUse" - id="radialGradient10827" - xlink:href="#linearGradient3273" - inkscape:collect="always" /> - <linearGradient - y2="-124.49196" - x2="-11.793251" - y1="-0.17180708" - x1="-11.793251" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10823" - xlink:href="#linearGradient3427" - inkscape:collect="always" /> - <linearGradient - y2="-158.88614" - x2="-90.485931" - y1="-60.000008" - x1="-132.38875" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10820" - xlink:href="#XMLID_18_" - inkscape:collect="always" /> - <radialGradient - r="76" - fy="-120.68829" - fx="-526.78827" - cy="-120.68829" - cx="-526.78827" - gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" - gradientUnits="userSpaceOnUse" - id="radialGradient10817" - xlink:href="#XMLID_18_" - inkscape:collect="always" /> - <linearGradient - y2="-141.69821" - x2="-474.70587" - y1="-349.57544" - x1="-519.00256" - gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" - gradientUnits="userSpaceOnUse" - id="linearGradient10814" - xlink:href="#linearGradient4376" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4441"> - <stop - id="stop4443" - offset="0" - style="stop-color:#dbfaff;stop-opacity:1;" /> - <stop - id="stop4445" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4441" - id="radialGradient4439" - gradientUnits="userSpaceOnUse" - cx="-1" - cy="107" - fx="-1" - fy="107" - r="1" /> - <linearGradient - id="linearGradient4429"> - <stop - style="stop-color:#fff1c0;stop-opacity:1;" - offset="0" - id="stop4431" /> - <stop - style="stop-color:#fff1c0;stop-opacity:0;" - offset="1" - id="stop4433" /> - </linearGradient> - <linearGradient - id="linearGradient4376" - inkscape:collect="always"> - <stop - id="stop4378" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4380" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="linearGradient9409"> - <stop - id="stop9411" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop9413" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="XMLID_18_"> - <stop - id="stop3354" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop3364" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - id="linearGradient3427" - inkscape:collect="always"> - <stop - id="stop3429" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3431" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3273" - inkscape:collect="always"> - <stop - id="stop3275" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3277" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3303-2" - inkscape:collect="always"> - <stop - id="stop3305-5" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3307-4" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3259"> - <stop - id="stop3261" - offset="0" - style="stop-color:#1f1f1f;stop-opacity:1;" /> - <stop - id="stop3263" - offset="1" - style="stop-color:#424242;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3385-7"> - <stop - id="stop3387" - offset="0" - style="stop-color:#d6d6d6;stop-opacity:1;" /> - <stop - id="stop3389" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3393"> - <stop - id="stop3395" - offset="0" - style="stop-color:#efefef;stop-opacity:1" /> - <stop - id="stop3397" - offset="1" - style="stop-color:#b8b8b8;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5566"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5568" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5570" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5566" - id="linearGradient3408" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - x1="-190.20325" - y1="77.351906" - x2="-190.20325" - y2="102.10035" /> - <linearGradient - id="linearGradient5114"> - <stop - id="stop5116" - offset="0" - style="stop-color:#000000;stop-opacity:0;" /> - <stop - style="stop-color:#000000;stop-opacity:0.21428572;" - offset="0.5" - id="stop5182" /> - <stop - id="stop5118" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5114" - id="radialGradient3406" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" - cx="-75.711166" - cy="113.45824" - fx="-75.514481" - fy="99.224663" - r="50.125" /> - <filter - id="filter5178" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5180" - stdDeviation="0.42032926" - inkscape:collect="always" /> - </filter> - <linearGradient - id="linearGradient5522"> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="0" - id="stop5524" /> - <stop - id="stop5526" - offset="0.52602422" - style="stop-color:#000000;stop-opacity:0.21428572;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop5528" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5522" - id="radialGradient3404" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" - cx="-75.703278" - cy="119.10338" - fx="-75.703278" - fy="119.10338" - r="50.125" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5631-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5633" /> - <stop - id="stop5639" - offset="0.30253538" - style="stop-color:#ffffff;stop-opacity:0.86666667;" /> - <stop - id="stop5637" - offset="0.70000011" - style="stop-color:#ffffff;stop-opacity:0.50980392;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5635" /> - </linearGradient> - <radialGradient - r="50.496159" - fy="-97.979721" - fx="-498.49612" - cy="-97.979721" - cx="-498.49612" - gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" - gradientUnits="userSpaceOnUse" - id="radialGradient5645" - xlink:href="#linearGradient5631-3" - inkscape:collect="always" /> - <mask - id="mask5641" - maskUnits="userSpaceOnUse"> - <rect - y="-108.19437" - x="-548.99231" - height="26.352942" - width="100.99232" - id="rect5643" - style="fill:url(#radialGradient5645);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4" - id="radialGradient3402" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" - cx="-195.32211" - cy="144.36551" - fx="-195.32211" - fy="144.36551" - r="48.968639" /> - <filter - id="filter3649" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3651" - stdDeviation="0.53709441" - inkscape:collect="always" /> - </filter> - <linearGradient - id="linearGradient3653-4" - inkscape:collect="always"> - <stop - id="stop3655" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3657" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4" - id="radialGradient3400" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" - cx="-195.32214" - cy="133.89294" - fx="-195.32214" - fy="133.89294" - r="48.968639" /> - <filter - height="1.9108608" - y="-0.45543039" - width="1.2504867" - x="-0.12524337" - id="filter5402" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5404" - stdDeviation="1.2915062" - inkscape:collect="always" /> - </filter> - <linearGradient - id="linearGradient5406" - inkscape:collect="always"> - <stop - id="stop5408" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5410" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5406" - id="radialGradient3398" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" - cx="-107.83378" - cy="-43.067612" - fx="-107.83378" - fy="-43.067612" - r="12.374368" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604" - id="linearGradient3396" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient5267" - inkscape:collect="always"> - <stop - id="stop5269" - offset="0" - style="stop-color:#050505;stop-opacity:1;" /> - <stop - id="stop5271" - offset="1" - style="stop-color:#050505;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5267" - id="linearGradient3394-8" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-190.3601,-184.7254)" - x1="-296.75015" - y1="119.76865" - x2="-296.75015" - y2="92.064072" /> - <linearGradient - id="linearGradient5352" - inkscape:collect="always"> - <stop - id="stop5354" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5356" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5352" - id="linearGradient3392-6" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-377.3601,-71.225397)" - x1="-115.51489" - y1="-53.597103" - x2="-115.51489" - y2="-33.89423" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237" - id="radialGradient3390" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-317.63007" - cy="84.673492" - fx="-317.63007" - fy="84.673492" - r="18.133474" /> - <filter - height="1.2339463" - y="-0.11697313" - width="1.0979174" - x="-0.048958682" - id="filter5257" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5259" - stdDeviation="0.71942638" - inkscape:collect="always" /> - </filter> - <linearGradient - id="linearGradient5237" - inkscape:collect="always"> - <stop - id="stop5239" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.62162162" /> - <stop - id="stop5241" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237" - id="radialGradient3388" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-322.72327" - cy="85.487053" - fx="-322.72327" - fy="85.487053" - r="18.133474" /> - <filter - id="filter3600" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3602" - stdDeviation="0.47186117" - inkscape:collect="always" /> - </filter> - <linearGradient - id="linearGradient3604" - inkscape:collect="always"> - <stop - id="stop3606" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop3608" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604" - id="linearGradient3386" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient5227" - inkscape:collect="always"> - <stop - id="stop5229" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5231" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5227" - id="radialGradient3383-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" - cx="-307.625" - cy="70.359375" - fx="-320.35294" - fy="87.258614" - r="50.125" /> - <linearGradient - id="linearGradient5549-4"> - <stop - style="stop-color:#cacaca;stop-opacity:1" - offset="0" - id="stop5551" /> - <stop - id="stop5553" - offset="0.61419845" - style="stop-color:#ebebeb;stop-opacity:1;" /> - <stop - style="stop-color:#cbcbcb;stop-opacity:1;" - offset="1" - id="stop5555" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5549-4" - id="linearGradient3381-7" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-302.8601,-193.7254)" - x1="-190.99445" - y1="75.382088" - x2="-190.99445" - y2="118.72548" /> - <filter - id="filter5214" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5216" - stdDeviation="0.94493222" - inkscape:collect="always" /> - </filter> - <filter - height="1.2056012" - y="-0.1028006" - width="1.1447796" - x="-0.072389819" - id="filter5346" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5348" - stdDeviation="3.0237831" - inkscape:collect="always" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient4878"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4880" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4882" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.59694225" - width="2.1938846" - y="-0.074120946" - height="1.1482419" - id="filter4927" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.49701338" - id="feGaussianBlur4929" /> - </filter> - <linearGradient - id="linearGradient9237"> - <stop - id="stop9239" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop9241" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3483"> - <stop - id="stop3485" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop3487" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.4660736" - width="1.9321471" - y="-0.038034502" - height="1.076069" - id="filter3469" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.146978" - id="feGaussianBlur3471" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient3399-1"> - <stop - style="stop-color:#00a8ba;stop-opacity:1;" - offset="0" - id="stop3401" /> - <stop - style="stop-color:#00a8ba;stop-opacity:0;" - offset="1" - id="stop3403" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3576"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3578" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3580" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient7365"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7367" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7369" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.4752" - width="1.9504" - y="-0.012310881" - height="1.0246218" - id="filter3598" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.495" - id="feGaussianBlur3600" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient3586"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3588" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3590" /> - </linearGradient> - <linearGradient - id="linearGradient7290"> - <stop - id="stop7292" - offset="0" - style="stop-color:#dddddd;stop-opacity:1;" /> - <stop - id="stop7294" - offset="1" - style="stop-color:#a7a7a7;stop-opacity:1;" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7312" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.1655606" - id="feGaussianBlur7314" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient4875"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4877" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4879" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4860"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4862" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4864" /> - </linearGradient> - <linearGradient - id="linearGradient3954"> - <stop - style="stop-color:#b3b3b3;stop-opacity:1;" - offset="0" - id="stop3956" /> - <stop - id="stop3962" - offset="0.52879584" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#c5c5c5;stop-opacity:1;" - offset="1" - id="stop3958" /> - </linearGradient> - <linearGradient - id="linearGradient9171"> - <stop - id="stop9173" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop9175" /> - <stop - id="stop9177" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3088"> - <stop - id="stop3090-4" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop3098" /> - <stop - id="stop3092" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3167" - inkscape:collect="always"> - <stop - id="stop3169" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3171" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient3065"> - <stop - id="stop3067-5" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3073" /> - <stop - id="stop3069" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4648" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="4.6264466" - id="feGaussianBlur4650" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient7394"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7396" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7398" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient7354"> - <stop - style="stop-color:#929595;stop-opacity:1;" - offset="0" - id="stop7356" /> - <stop - style="stop-color:#929595;stop-opacity:0;" - offset="1" - id="stop7358" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4405" - x="-0.23281144" - width="1.4656229" - y="-0.048040453" - height="1.0960809" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.2610619" - id="feGaussianBlur4407" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient4409"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4411" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4413" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7238" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.6674107" - id="feGaussianBlur7240" /> - </filter> - <filter - inkscape:collect="always" - x="-0.14289699" - width="1.285794" - y="-0.089270152" - height="1.1785403" - id="filter7256" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="6.6685268" - id="feGaussianBlur7258" /> - </filter> - <filter - inkscape:collect="always" - id="filter7348" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.8190732" - id="feGaussianBlur7350" /> - </filter> - <linearGradient - id="linearGradient7150"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop7152" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop7154" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient7150" - id="radialGradient7164" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" - cx="162.46797" - cy="-0.23275588" - fx="162.46797" - fy="-0.23275588" - r="25.9375" /> - <mask - maskUnits="userSpaceOnUse" - id="mask7160"> - <path - id="path7162" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="fill:url(#radialGradient7164);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - </mask> - <linearGradient - inkscape:collect="always" - id="linearGradient7136"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7138" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7140" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient7136" - id="linearGradient5542" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(102.53048,-57.275649)" - x1="70.316795" - y1="58" - x2="72.281242" - y2="15.908398" /> - <radialGradient - r="7.7821388" - fy="77.29686" - fx="56.1105" - cy="77.29686" - cx="56.1105" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-34.282576,64.562999)" - gradientUnits="userSpaceOnUse" - id="radialGradient8863" - xlink:href="#linearGradient3978" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3978"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3980" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3982" /> - </linearGradient> - <radialGradient - r="7.7821388" - fy="77.29686" - fx="56.1105" - cy="77.29686" - cx="56.1105" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-34.282576,64.562999)" - gradientUnits="userSpaceOnUse" - id="radialGradient8766" - xlink:href="#linearGradient3978" - inkscape:collect="always" /> - <filter - inkscape:collect="always" - x="-0.26761475" - width="1.5352294" - y="-0.062321238" - height="1.1246425" - id="filter6060" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.5675913" - id="feGaussianBlur6062" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient6064"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6066" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6068" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.013508443" - width="1.0270169" - y="-0.55384612" - height="2.1076922" - id="filter4997" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.23076923" - id="feGaussianBlur4999" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient4949"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4951" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4953" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4949" - id="radialGradient5116" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - cx="72" - cy="116" - fx="72" - fy="116" - r="20.5" /> - <linearGradient - id="linearGradient8830"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop8832" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop8834" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3872"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3874" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3876" /> - </linearGradient> - <linearGradient - id="linearGradient8819"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop8821" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop8823" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3722" - id="linearGradient8817" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7018405,0,0,0.7018405,-31.780516,17.907276)" - x1="88.188385" - y1="74.379738" - x2="47.238132" - y2="118.57565" /> - <linearGradient - id="linearGradient3722"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3724" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop3726" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3722" - id="linearGradient3523" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7018405,0,0,0.7018405,-31.780516,17.907276)" - x1="88.188385" - y1="74.379738" - x2="47.238132" - y2="118.57565" /> - <linearGradient - id="linearGradient3176"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3178-5" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop3180" /> - </linearGradient> - <linearGradient - id="linearGradient3166"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168" /> - <stop - id="stop3518" - offset="0.5990991" - style="stop-color:#ffffff;stop-opacity:0.82206404;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3170" /> - </linearGradient> - <linearGradient - id="linearGradient3611"> - <stop - id="stop3613" - offset="0" - style="stop-color:#818584;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.5" - id="stop3615" /> - <stop - id="stop3617" - offset="1" - style="stop-color:#818584;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient3149"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3151" /> - <stop - id="stop3157" - offset="0.34797296" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.65930116" - id="stop4061" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3153" /> - </linearGradient> - <linearGradient - id="linearGradient4029"> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="0" - id="stop4031" /> - <stop - id="stop4033" - offset="0.5" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="1" - id="stop4035" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.075877823" - width="1.1517557" - y="-0.78272969" - height="2.5654593" - id="filter3872" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.3045494" - id="feGaussianBlur3874" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient3802"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3804" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3806" /> - </linearGradient> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - id="perspective8778" /> - <inkscape:perspective - id="perspective9568" - inkscape:persp3d-origin="372.04724 : 350.78739 : 1" - inkscape:vp_z="744.09448 : 526.18109 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 526.18109 : 1" - sodipodi:type="inkscape:persp3d" /> - <radialGradient - r="20.631315" - fy="138.73308" - fx="71.368683" - cy="138.73308" - cx="71.368683" - gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" - gradientUnits="userSpaceOnUse" - id="radialGradient11107-9" - xlink:href="#linearGradient3802-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3802-8"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3804-2" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3806-3" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.075877823" - width="1.1517557" - y="-0.78272969" - height="2.5654593" - id="filter3872-5" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.3045494" - id="feGaussianBlur3874-0" /> - </filter> - <linearGradient - y2="122.43194" - x2="91.105286" - y1="122.43194" - x1="50.458698" - gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10996-4" - xlink:href="#linearGradient4029-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4029-4"> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="0" - id="stop4031-9" /> - <stop - id="stop4033-5" - offset="0.5" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="1" - id="stop4035-4" /> - </linearGradient> - <linearGradient - y2="124.48643" - x2="93.409775" - y1="124.48643" - x1="50.394154" - gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10993-9" - xlink:href="#linearGradient3149-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3149-4"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3151-8" /> - <stop - id="stop3157-6" - offset="0.34797296" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.65930116" - id="stop4061-9" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3153-4" /> - </linearGradient> - <linearGradient - y2="477.52972" - x2="742.16382" - y1="477.52972" - x1="555.14642" - gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990-7" - xlink:href="#linearGradient3611-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3611-2"> - <stop - id="stop3613-1" - offset="0" - style="stop-color:#818584;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.5" - id="stop3615-6" /> - <stop - id="stop3617-5" - offset="1" - style="stop-color:#818584;stop-opacity:1;" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="406.23959" - fx="648.6554" - cy="390.69016" - cx="648.65527" - gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" - gradientUnits="userSpaceOnUse" - id="radialGradient10987-3" - xlink:href="#linearGradient3166-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3166-4"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168-9" /> - <stop - id="stop3518-9" - offset="0.5990991" - style="stop-color:#ffffff;stop-opacity:0.82206404;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3170-1" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="639.22247" - fx="648.65515" - cy="639.22247" - cx="648.65515" - gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" - gradientUnits="userSpaceOnUse" - id="radialGradient10984-2" - xlink:href="#linearGradient3176-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3176-9"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3178-5-7" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop3180-1" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient10981-8" - xlink:href="#linearGradient3722-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3722-5"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3724-5" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop3726-3" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient7741" - xlink:href="#linearGradient3722-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7743"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop7745" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop7747" /> - </linearGradient> - <radialGradient - r="7.9898205" - fy="76.438904" - fx="55.989819" - cy="76.438904" - cx="55.989819" - gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" - gradientUnits="userSpaceOnUse" - id="radialGradient10977-2" - xlink:href="#linearGradient3872-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3872-5"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3874-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3876-7" /> - </linearGradient> - <linearGradient - y2="110.8287" - x2="73.38102" - y1="150.87357" - x1="73.38102" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10974-6" - xlink:href="#linearGradient3176-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7754"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7756" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop7758" /> - </linearGradient> - <radialGradient - r="20.5" - fy="116" - fx="72" - cy="116" - cx="72" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - gradientUnits="userSpaceOnUse" - id="radialGradient11105-5" - xlink:href="#linearGradient4949-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4949-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4951-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4953-9" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.013508443" - width="1.0270169" - y="-0.55384612" - height="2.1076922" - id="filter4997-1" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.23076923" - id="feGaussianBlur4999-6" /> - </filter> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientTransform="translate(1,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11103-0" - xlink:href="#linearGradient6064-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient6064-7"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6066-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6068-2" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.26761475" - width="1.5352294" - y="-0.062321238" - height="1.1246425" - id="filter6060-9" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.5675913" - id="feGaussianBlur6062-1" /> - </filter> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientUnits="userSpaceOnUse" - id="linearGradient11101-9" - xlink:href="#linearGradient6064-7" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-5" - id="radialGradient7694-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3978-5"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3980-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3982-5" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-5" - id="radialGradient7787" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - y2="15.908398" - x2="72.281242" - y1="58" - x1="70.316795" - gradientTransform="translate(102.53048,-57.275649)" - gradientUnits="userSpaceOnUse" - id="linearGradient11095-8" - xlink:href="#linearGradient7136-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7136-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7138-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7140-5" /> - </linearGradient> - <mask - maskUnits="userSpaceOnUse" - id="mask7160-6"> - <path - inkscape:connector-curvature="0" - id="path7162-5" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="fill:url(#radialGradient7164-2);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient7150-1" - id="radialGradient7164-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" - cx="162.46797" - cy="-0.23275588" - fx="162.46797" - fy="-0.23275588" - r="25.9375" /> - <linearGradient - id="linearGradient7150-1"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop7152-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop7154-5" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7348-8" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.8190732" - id="feGaussianBlur7350-8" /> - </filter> - <filter - inkscape:collect="always" - x="-0.14289699" - width="1.285794" - y="-0.089270152" - height="1.1785403" - id="filter7256-4" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="6.6685268" - id="feGaussianBlur7258-7" /> - </filter> - <filter - inkscape:collect="always" - id="filter7238-3" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.6674107" - id="feGaussianBlur7240-9" /> - </filter> - <linearGradient - gradientTransform="translate(2,927.73011)" - y2="18.691383" - x2="16.357016" - y1="92" - x1="36" - gradientUnits="userSpaceOnUse" - id="linearGradient10953-6" - xlink:href="#linearGradient4409-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4409-4"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4411-3" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4413-2" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4405-5" - x="-0.23281144" - width="1.4656229" - y="-0.048040453" - height="1.0960809" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.2610619" - id="feGaussianBlur4407-0" /> - </filter> - <linearGradient - y2="7.7186575" - x2="55.058228" - y1="-0.85672575" - x1="55.058228" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10950-7" - xlink:href="#linearGradient7354-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7354-9"> - <stop - style="stop-color:#929595;stop-opacity:1;" - offset="0" - id="stop7356-1" /> - <stop - style="stop-color:#929595;stop-opacity:0;" - offset="1" - id="stop7358-8" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" - gradientUnits="userSpaceOnUse" - id="linearGradient10947-9" - xlink:href="#linearGradient7394-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7394-5"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7396-6" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7398-9" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4648-2" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="4.6264466" - id="feGaussianBlur4650-4" /> - </filter> - <radialGradient - r="42.727272" - fy="44.909092" - fx="52.18182" - cy="44.909092" - cx="52.18182" - spreadMethod="reflect" - gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" - gradientUnits="userSpaceOnUse" - id="radialGradient11011-4" - xlink:href="#linearGradient3065-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3065-9"> - <stop - id="stop3067-5-2" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3073-0" /> - <stop - id="stop3069-6" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11013-4" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3167-3" - inkscape:collect="always"> - <stop - id="stop3169-4" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3171-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11015-4" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11017-5" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11019-7" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11021-1" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11023-0" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11025-7" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11027-9" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11029-5" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11031-0" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11033-2" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11035-2" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11037-2" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11039-1" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11041-3" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11043-6" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11045-0" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11047-4" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11049-3" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11051-8" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11053-4" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11055-6" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11057-2" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11059-0" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11061-5" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11063-6" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11065-3" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11067-1" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11069-3" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11071-6" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11073-7" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11075-6" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11077-2" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11079-2" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11081-4" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083-5" - xlink:href="#linearGradient3167-3" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11085-5" - xlink:href="#linearGradient3088-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3088-1"> - <stop - id="stop3090-4-5" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop3098-2" /> - <stop - id="stop3092-3" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11087-9" - xlink:href="#linearGradient3088-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8095"> - <stop - id="stop8097" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop8099" /> - <stop - id="stop8101" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="47.937988" - fy="111.93269" - fx="69.801033" - cy="88.499367" - cx="60.097603" - gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" - gradientUnits="userSpaceOnUse" - id="radialGradient11089-4" - xlink:href="#linearGradient3954-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3954-7"> - <stop - style="stop-color:#b3b3b3;stop-opacity:1;" - offset="0" - id="stop3956-0" /> - <stop - id="stop3962-9" - offset="0.52879584" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#c5c5c5;stop-opacity:1;" - offset="1" - id="stop3958-3" /> - </linearGradient> - <linearGradient - y2="32.457832" - x2="76.596703" - y1="148.57518" - x1="17.723173" - gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" - gradientUnits="userSpaceOnUse" - id="linearGradient11091-2" - xlink:href="#linearGradient4860-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4860-4"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4862-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4864-0" /> - </linearGradient> - <radialGradient - r="50.234375" - fy="8.0446291" - fx="43.034355" - cy="42.699898" - cx="43.620941" - gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" - gradientUnits="userSpaceOnUse" - id="radialGradient11093-0" - xlink:href="#linearGradient4875-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4875-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4877-5" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4879-0" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7312-0" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.1655606" - id="feGaussianBlur7314-3" /> - </filter> - <radialGradient - r="17.67767" - fy="55.875111" - fx="176.77669" - cy="65.774605" - cx="177.4838" - gradientUnits="userSpaceOnUse" - id="radialGradient11009-5" - xlink:href="#linearGradient7290-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7290-1"> - <stop - id="stop7292-6" - offset="0" - style="stop-color:#dddddd;stop-opacity:1;" /> - <stop - id="stop7294-4" - offset="1" - style="stop-color:#a7a7a7;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" - gradientUnits="userSpaceOnUse" - id="linearGradient10892-0" - xlink:href="#linearGradient7394-5" - inkscape:collect="always" /> - <linearGradient - y2="15.75" - x2="71.75" - y1="112.25" - x1="71.75" - gradientTransform="translate(-12,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11007-3" - xlink:href="#linearGradient3586-6" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3586-6"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3588-5" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3590-9" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.4752" - width="1.9504" - y="-0.012310881" - height="1.0246218" - id="filter3598-2" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.495" - id="feGaussianBlur3600-0" /> - </filter> - <linearGradient - y2="116.8996" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10888-2" - xlink:href="#linearGradient7365-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7365-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7367-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7369-5" /> - </linearGradient> - <linearGradient - y2="60.866104" - x2="73.467186" - y1="60.866104" - x1="72.201843" - gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" - gradientUnits="userSpaceOnUse" - id="linearGradient10883-0" - xlink:href="#linearGradient3576-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3576-8"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3578-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3580-2" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" - gradientUnits="userSpaceOnUse" - id="radialGradient10880-7" - xlink:href="#linearGradient3399-1-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3399-1-8"> - <stop - style="stop-color:#00a8ba;stop-opacity:1;" - offset="0" - id="stop3401-5" /> - <stop - style="stop-color:#00a8ba;stop-opacity:0;" - offset="1" - id="stop3403-3" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" - gradientUnits="userSpaceOnUse" - id="radialGradient11005-5" - xlink:href="#linearGradient3399-1-8" - inkscape:collect="always" /> - <filter - inkscape:collect="always" - x="-0.4660736" - width="1.9321471" - y="-0.038034502" - height="1.076069" - id="filter3469-7" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.146978" - id="feGaussianBlur3471-5" /> - </filter> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" - gradientUnits="userSpaceOnUse" - id="radialGradient10876-0" - xlink:href="#linearGradient3483-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3483-4"> - <stop - id="stop3485-6" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop3487-2" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.82944" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" - gradientUnits="userSpaceOnUse" - id="radialGradient11003-8" - xlink:href="#linearGradient3483-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8161"> - <stop - id="stop8163" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop8165" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.59694225" - width="2.1938846" - y="-0.074120946" - height="1.1482419" - id="filter4927-3" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.49701338" - id="feGaussianBlur4929-5" /> - </filter> - <radialGradient - r="26.75" - fy="-16.181448" - fx="60" - cy="-16.181448" - cx="60" - gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" - gradientUnits="userSpaceOnUse" - id="radialGradient10871-6" - xlink:href="#linearGradient7365-9" - inkscape:collect="always" /> - <linearGradient - y2="24.713068" - x2="60.428722" - y1="22.930367" - x1="60.428722" - gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" - gradientUnits="userSpaceOnUse" - id="linearGradient10867-7" - xlink:href="#linearGradient4878-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4878-5"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4880-1" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4882-6" /> - </linearGradient> - <filter - height="1.2056012" - y="-0.1028006" - width="1.1447796" - x="-0.072389819" - id="filter5346-0" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5348-2" - stdDeviation="3.0237831" - inkscape:collect="always" /> - </filter> - <filter - id="filter5214-8" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5216-2" - stdDeviation="0.94493222" - inkscape:collect="always" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5549-4-9" - id="linearGradient3381-7-4" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-302.8601,-193.7254)" - x1="-190.99445" - y1="75.382088" - x2="-190.99445" - y2="118.72548" /> - <linearGradient - id="linearGradient5549-4-9"> - <stop - style="stop-color:#cacaca;stop-opacity:1" - offset="0" - id="stop5551-6" /> - <stop - id="stop5553-1" - offset="0.61419845" - style="stop-color:#ebebeb;stop-opacity:1;" /> - <stop - style="stop-color:#cbcbcb;stop-opacity:1;" - offset="1" - id="stop5555-9" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5227-4" - id="radialGradient3383-8-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" - cx="-307.625" - cy="70.359375" - fx="-320.35294" - fy="87.258614" - r="50.125" /> - <linearGradient - id="linearGradient5227-4" - inkscape:collect="always"> - <stop - id="stop5229-1" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5231-4" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-8" - id="linearGradient3386-4" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient3604-8" - inkscape:collect="always"> - <stop - id="stop3606-9" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop3608-9" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <filter - id="filter3600-6" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3602-5" - stdDeviation="0.47186117" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-2" - id="radialGradient3388-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-322.72327" - cy="85.487053" - fx="-322.72327" - fy="85.487053" - r="18.133474" /> - <linearGradient - id="linearGradient5237-2" - inkscape:collect="always"> - <stop - id="stop5239-3" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.62162162" /> - <stop - id="stop5241-3" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <filter - height="1.2339463" - y="-0.11697313" - width="1.0979174" - x="-0.048958682" - id="filter5257-2" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5259-6" - stdDeviation="0.71942638" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-2" - id="radialGradient3390-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-317.63007" - cy="84.673492" - fx="-317.63007" - fy="84.673492" - r="18.133474" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5352-4" - id="linearGradient3392-6-1" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-377.3601,-71.225397)" - x1="-115.51489" - y1="-53.597103" - x2="-115.51489" - y2="-33.89423" /> - <linearGradient - id="linearGradient5352-4" - inkscape:collect="always"> - <stop - id="stop5354-5" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5356-4" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5267-8" - id="linearGradient3394-8-0" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-190.3601,-184.7254)" - x1="-296.75015" - y1="119.76865" - x2="-296.75015" - y2="92.064072" /> - <linearGradient - id="linearGradient5267-8" - inkscape:collect="always"> - <stop - id="stop5269-7" - offset="0" - style="stop-color:#050505;stop-opacity:1;" /> - <stop - id="stop5271-0" - offset="1" - style="stop-color:#050505;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-8" - id="linearGradient3396-0" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5406-1" - id="radialGradient3398-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" - cx="-107.83378" - cy="-43.067612" - fx="-107.83378" - fy="-43.067612" - r="12.374368" /> - <linearGradient - id="linearGradient5406-1" - inkscape:collect="always"> - <stop - id="stop5408-7" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5410-3" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <filter - height="1.9108608" - y="-0.45543039" - width="1.2504867" - x="-0.12524337" - id="filter5402-0" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5404-3" - stdDeviation="1.2915062" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-3" - id="radialGradient3400-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" - cx="-195.32214" - cy="133.89294" - fx="-195.32214" - fy="133.89294" - r="48.968639" /> - <linearGradient - id="linearGradient3653-4-3" - inkscape:collect="always"> - <stop - id="stop3655-7" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3657-3" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <filter - id="filter3649-2" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3651-7" - stdDeviation="0.53709441" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-3" - id="radialGradient3402-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" - cx="-195.32211" - cy="144.36551" - fx="-195.32211" - fy="144.36551" - r="48.968639" /> - <mask - id="mask5641-0" - maskUnits="userSpaceOnUse"> - <rect - y="-108.19437" - x="-548.99231" - height="26.352942" - width="100.99232" - id="rect5643-2" - style="fill:url(#radialGradient5645-7);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - r="50.496159" - fy="-97.979721" - fx="-498.49612" - cy="-97.979721" - cx="-498.49612" - gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" - gradientUnits="userSpaceOnUse" - id="radialGradient5645-7" - xlink:href="#linearGradient5631-3-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5631-3-2"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5633-5" /> - <stop - id="stop5639-2" - offset="0.30253538" - style="stop-color:#ffffff;stop-opacity:0.86666667;" /> - <stop - id="stop5637-7" - offset="0.70000011" - style="stop-color:#ffffff;stop-opacity:0.50980392;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5635-3" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5522-8" - id="radialGradient3404-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" - cx="-75.703278" - cy="119.10338" - fx="-75.703278" - fy="119.10338" - r="50.125" /> - <linearGradient - id="linearGradient5522-8"> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="0" - id="stop5524-9" /> - <stop - id="stop5526-9" - offset="0.52602422" - style="stop-color:#000000;stop-opacity:0.21428572;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop5528-2" /> - </linearGradient> - <filter - id="filter5178-9" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5180-7" - stdDeviation="0.42032926" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5114-1" - id="radialGradient3406-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" - cx="-75.711166" - cy="113.45824" - fx="-75.514481" - fy="99.224663" - r="50.125" /> - <linearGradient - id="linearGradient5114-1"> - <stop - id="stop5116-0" - offset="0" - style="stop-color:#000000;stop-opacity:0;" /> - <stop - style="stop-color:#000000;stop-opacity:0.21428572;" - offset="0.5" - id="stop5182-3" /> - <stop - id="stop5118-2" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5566-6" - id="linearGradient3408-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - x1="-190.20325" - y1="77.351906" - x2="-190.20325" - y2="102.10035" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5566-6"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5568-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5570-0" /> - </linearGradient> - <linearGradient - y2="15.411574" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10845-7" - xlink:href="#linearGradient7365-9" - inkscape:collect="always" /> - <radialGradient - r="94" - fy="-192.92754" - fx="-122.25" - cy="-192.92754" - cx="-122.25" - gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" - gradientUnits="userSpaceOnUse" - id="radialGradient10842-8" - xlink:href="#linearGradient3393-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3393-0"> - <stop - id="stop3395-2" - offset="0" - style="stop-color:#efefef;stop-opacity:1" /> - <stop - id="stop3397-0" - offset="1" - style="stop-color:#b8b8b8;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-228.88507" - x2="-100" - y1="-106.62158" - x1="-100" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10839-9" - xlink:href="#linearGradient3385-7-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3385-7-8"> - <stop - id="stop3387-0" - offset="0" - style="stop-color:#d6d6d6;stop-opacity:1;" /> - <stop - id="stop3389-3" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-208.05618" - x2="-80" - y1="-67.985718" - x1="-80" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10836-7" - xlink:href="#linearGradient3259-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3259-4"> - <stop - id="stop3261-0" - offset="0" - style="stop-color:#1f1f1f;stop-opacity:1;" /> - <stop - id="stop3263-9" - offset="1" - style="stop-color:#424242;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-275.16071" - x2="-127.61703" - y1="-310.29703" - x1="-127.61703" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" - gradientUnits="userSpaceOnUse" - id="linearGradient10833-1" - xlink:href="#linearGradient3303-2-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3303-2-3" - inkscape:collect="always"> - <stop - id="stop3305-5-3" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3307-4-9" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-166.52031" - fx="-120.37437" - cy="-150.6152" - cx="-120" - gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" - gradientUnits="userSpaceOnUse" - id="radialGradient10830-3" - xlink:href="#linearGradient3273-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3273-2" - inkscape:collect="always"> - <stop - id="stop3275-4" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3277-4" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-109.7959" - fx="-120" - cy="-109.7959" - cx="-120" - gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" - gradientUnits="userSpaceOnUse" - id="radialGradient10827-2" - xlink:href="#linearGradient3273-2" - inkscape:collect="always" /> - <linearGradient - y2="-124.49196" - x2="-11.793251" - y1="-0.17180708" - x1="-11.793251" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10823-3" - xlink:href="#linearGradient3427-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3427-6" - inkscape:collect="always"> - <stop - id="stop3429-2" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3431-8" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-158.88614" - x2="-90.485931" - y1="-60.000008" - x1="-132.38875" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10820-0" - xlink:href="#XMLID_18_-9" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="XMLID_18_-9"> - <stop - id="stop3354-6" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop3364-5" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <radialGradient - r="76" - fy="-120.68829" - fx="-526.78827" - cy="-120.68829" - cx="-526.78827" - gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" - gradientUnits="userSpaceOnUse" - id="radialGradient10817-1" - xlink:href="#XMLID_18_-9" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="linearGradient8333"> - <stop - id="stop8335" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop8337" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - y2="-141.69821" - x2="-474.70587" - y1="-349.57544" - x1="-519.00256" - gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" - gradientUnits="userSpaceOnUse" - id="linearGradient10814-3" - xlink:href="#linearGradient4376-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4376-3" - inkscape:collect="always"> - <stop - id="stop4378-3" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4380-7" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient11001-5" - xlink:href="#linearGradient4429-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4429-4"> - <stop - style="stop-color:#fff1c0;stop-opacity:1;" - offset="0" - id="stop4431-7" /> - <stop - style="stop-color:#fff1c0;stop-opacity:0;" - offset="1" - id="stop4433-7" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient10999-7" - xlink:href="#linearGradient4441-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4441-4"> - <stop - id="stop4443-1" - offset="0" - style="stop-color:#dbfaff;stop-opacity:1;" /> - <stop - id="stop4445-7" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient8482" - xlink:href="#linearGradient4441-4" - inkscape:collect="always" /> - <radialGradient - r="20.631315" - fy="138.73308" - fx="71.368683" - cy="138.73308" - cx="71.368683" - gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" - gradientUnits="userSpaceOnUse" - id="radialGradient11107-4" - xlink:href="#linearGradient3802-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3802-7"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3804-8" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3806-1" /> - </linearGradient> - <linearGradient - y2="122.43194" - x2="91.105286" - y1="122.43194" - x1="50.458698" - gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10996-2" - xlink:href="#linearGradient4029-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4029-9"> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="0" - id="stop4031-93" /> - <stop - id="stop4033-4" - offset="0.5" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="1" - id="stop4035-5" /> - </linearGradient> - <linearGradient - y2="124.48643" - x2="93.409775" - y1="124.48643" - x1="50.394154" - gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10993-6" - xlink:href="#linearGradient3149-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3149-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3151-1" /> - <stop - id="stop3157-9" - offset="0.34797296" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.65930116" - id="stop4061-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3153-0" /> - </linearGradient> - <linearGradient - y2="477.52972" - x2="742.16382" - y1="477.52972" - x1="555.14642" - gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990-4" - xlink:href="#linearGradient3611-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3611-5"> - <stop - id="stop3613-19" - offset="0" - style="stop-color:#818584;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.5" - id="stop3615-2" /> - <stop - id="stop3617-4" - offset="1" - style="stop-color:#818584;stop-opacity:1;" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="406.23959" - fx="648.6554" - cy="390.69016" - cx="648.65527" - gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" - gradientUnits="userSpaceOnUse" - id="radialGradient10987-1" - xlink:href="#linearGradient3166-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3166-5"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168-2" /> - <stop - id="stop3518-6" - offset="0.5990991" - style="stop-color:#ffffff;stop-opacity:0.82206404;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3170-8" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="639.22247" - fx="648.65515" - cy="639.22247" - cx="648.65515" - gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" - gradientUnits="userSpaceOnUse" - id="radialGradient10984-7" - xlink:href="#linearGradient3176-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3176-3"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3178-5-2" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop3180-6" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient10981-3" - xlink:href="#linearGradient3722-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3722-4"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3724-58" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop3726-8" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient7741-7" - xlink:href="#linearGradient3722-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7743-8"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop7745-1" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop7747-3" /> - </linearGradient> - <radialGradient - r="7.9898205" - fy="76.438904" - fx="55.989819" - cy="76.438904" - cx="55.989819" - gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" - gradientUnits="userSpaceOnUse" - id="radialGradient10977-5" - xlink:href="#linearGradient3872-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3872-0"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3874-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3876-79" /> - </linearGradient> - <linearGradient - y2="110.8287" - x2="73.38102" - y1="150.87357" - x1="73.38102" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10974-2" - xlink:href="#linearGradient3176-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7754-7"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7756-6" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop7758-7" /> - </linearGradient> - <radialGradient - r="20.5" - fy="116" - fx="72" - cy="116" - cx="72" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - gradientUnits="userSpaceOnUse" - id="radialGradient11105-0" - xlink:href="#linearGradient4949-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4949-5"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4951-1" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4953-6" /> - </linearGradient> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientTransform="translate(1,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11103-6" - xlink:href="#linearGradient6064-6" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient6064-6"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6066-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6068-9" /> - </linearGradient> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientUnits="userSpaceOnUse" - id="linearGradient11101-5" - xlink:href="#linearGradient6064-6" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-4" - id="radialGradient7694" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3978-4"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3980-1" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3982-3" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-4" - id="radialGradient7787-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - y2="15.908398" - x2="72.281242" - y1="58" - x1="70.316795" - gradientTransform="translate(102.53048,-57.275649)" - gradientUnits="userSpaceOnUse" - id="linearGradient11095-83" - xlink:href="#linearGradient7136-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7136-8"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7138-1" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7140-9" /> - </linearGradient> - <mask - maskUnits="userSpaceOnUse" - id="mask7160-8"> - <path - inkscape:connector-curvature="0" - id="path7162-56" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="fill:url(#radialGradient7164-0);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient7150-7" - id="radialGradient7164-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" - cx="162.46797" - cy="-0.23275588" - fx="162.46797" - fy="-0.23275588" - r="25.9375" /> - <linearGradient - id="linearGradient7150-7"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop7152-5" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop7154-6" /> - </linearGradient> - <linearGradient - gradientTransform="translate(2,927.73011)" - y2="18.691383" - x2="16.357016" - y1="92" - x1="36" - gradientUnits="userSpaceOnUse" - id="linearGradient10953-69" - xlink:href="#linearGradient4409-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4409-1"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4411-30" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4413-29" /> - </linearGradient> - <linearGradient - y2="7.7186575" - x2="55.058228" - y1="-0.85672575" - x1="55.058228" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10950-3" - xlink:href="#linearGradient7354-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7354-0"> - <stop - style="stop-color:#929595;stop-opacity:1;" - offset="0" - id="stop7356-4" /> - <stop - style="stop-color:#929595;stop-opacity:0;" - offset="1" - id="stop7358-2" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" - gradientUnits="userSpaceOnUse" - id="linearGradient10947-1" - xlink:href="#linearGradient7394-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7394-3"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7396-2" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7398-6" /> - </linearGradient> - <radialGradient - r="42.727272" - fy="44.909092" - fx="52.18182" - cy="44.909092" - cx="52.18182" - spreadMethod="reflect" - gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" - gradientUnits="userSpaceOnUse" - id="radialGradient11011-6" - xlink:href="#linearGradient3065-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3065-6"> - <stop - id="stop3067-5-0" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3073-2" /> - <stop - id="stop3069-5" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11013-5" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3167-2" - inkscape:collect="always"> - <stop - id="stop3169-1" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3171-6" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11015-7" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11017-7" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11019-79" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11021-2" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11023-8" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11025-3" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11027-1" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11029-3" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11031-1" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11033-3" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11035-4" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11037-5" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11039-3" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11041-1" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11043-9" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11045-6" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11047-41" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11049-5" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11051-84" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11053-1" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11055-66" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11057-5" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11059-2" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11061-2" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11063-7" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11065-5" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11067-0" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11069-5" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11071-2" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11073-8" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11075-66" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11077-6" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11079-9" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11081-8" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083-9" - xlink:href="#linearGradient3167-2" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11085-0" - xlink:href="#linearGradient3088-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3088-3"> - <stop - id="stop3090-4-6" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop3098-7" /> - <stop - id="stop3092-9" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11087-7" - xlink:href="#linearGradient3088-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8095-6"> - <stop - id="stop8097-5" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop8099-3" /> - <stop - id="stop8101-8" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="47.937988" - fy="111.93269" - fx="69.801033" - cy="88.499367" - cx="60.097603" - gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" - gradientUnits="userSpaceOnUse" - id="radialGradient11089-0" - xlink:href="#linearGradient3954-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3954-1"> - <stop - style="stop-color:#b3b3b3;stop-opacity:1;" - offset="0" - id="stop3956-4" /> - <stop - id="stop3962-3" - offset="0.52879584" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#c5c5c5;stop-opacity:1;" - offset="1" - id="stop3958-8" /> - </linearGradient> - <linearGradient - y2="32.457832" - x2="76.596703" - y1="148.57518" - x1="17.723173" - gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" - gradientUnits="userSpaceOnUse" - id="linearGradient11091-0" - xlink:href="#linearGradient4860-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4860-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4862-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4864-4" /> - </linearGradient> - <radialGradient - r="50.234375" - fy="8.0446291" - fx="43.034355" - cy="42.699898" - cx="43.620941" - gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" - gradientUnits="userSpaceOnUse" - id="radialGradient11093-6" - xlink:href="#linearGradient4875-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4875-7"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4877-53" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4879-1" /> - </linearGradient> - <radialGradient - r="17.67767" - fy="55.875111" - fx="176.77669" - cy="65.774605" - cx="177.4838" - gradientUnits="userSpaceOnUse" - id="radialGradient11009-7" - xlink:href="#linearGradient7290-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7290-9"> - <stop - id="stop7292-0" - offset="0" - style="stop-color:#dddddd;stop-opacity:1;" /> - <stop - id="stop7294-7" - offset="1" - style="stop-color:#a7a7a7;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" - gradientUnits="userSpaceOnUse" - id="linearGradient10892-03" - xlink:href="#linearGradient7394-3" - inkscape:collect="always" /> - <linearGradient - y2="15.75" - x2="71.75" - y1="112.25" - x1="71.75" - gradientTransform="translate(-12,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11007-1" - xlink:href="#linearGradient3586-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3586-8"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3588-2" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3590-2" /> - </linearGradient> - <linearGradient - y2="116.8996" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10888-9" - xlink:href="#linearGradient7365-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7365-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7367-9" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7369-0" /> - </linearGradient> - <linearGradient - y2="60.866104" - x2="73.467186" - y1="60.866104" - x1="72.201843" - gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" - gradientUnits="userSpaceOnUse" - id="linearGradient10883-4" - xlink:href="#linearGradient3576-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3576-5"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3578-5" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3580-4" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" - gradientUnits="userSpaceOnUse" - id="radialGradient10880-74" - xlink:href="#linearGradient3399-1-82" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3399-1-82"> - <stop - style="stop-color:#00a8ba;stop-opacity:1;" - offset="0" - id="stop3401-3" /> - <stop - style="stop-color:#00a8ba;stop-opacity:0;" - offset="1" - id="stop3403-7" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" - gradientUnits="userSpaceOnUse" - id="radialGradient11005-7" - xlink:href="#linearGradient3399-1-82" - inkscape:collect="always" /> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" - gradientUnits="userSpaceOnUse" - id="radialGradient10876-2" - xlink:href="#linearGradient3483-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3483-8"> - <stop - id="stop3485-61" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop3487-0" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.82944" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" - gradientUnits="userSpaceOnUse" - id="radialGradient11003-5" - xlink:href="#linearGradient3483-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8161-3"> - <stop - id="stop8163-5" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop8165-6" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="26.75" - fy="-16.181448" - fx="60" - cy="-16.181448" - cx="60" - gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" - gradientUnits="userSpaceOnUse" - id="radialGradient10871-0" - xlink:href="#linearGradient7365-1" - inkscape:collect="always" /> - <linearGradient - y2="24.713068" - x2="60.428722" - y1="22.930367" - x1="60.428722" - gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" - gradientUnits="userSpaceOnUse" - id="linearGradient10867-1" - xlink:href="#linearGradient4878-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4878-9"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4880-0" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4882-4" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5549-4-2" - id="linearGradient3381-7-5" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-302.8601,-193.7254)" - x1="-190.99445" - y1="75.382088" - x2="-190.99445" - y2="118.72548" /> - <linearGradient - id="linearGradient5549-4-2"> - <stop - style="stop-color:#cacaca;stop-opacity:1" - offset="0" - id="stop5551-2" /> - <stop - id="stop5553-6" - offset="0.61419845" - style="stop-color:#ebebeb;stop-opacity:1;" /> - <stop - style="stop-color:#cbcbcb;stop-opacity:1;" - offset="1" - id="stop5555-6" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5227-3" - id="radialGradient3383-8-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" - cx="-307.625" - cy="70.359375" - fx="-320.35294" - fy="87.258614" - r="50.125" /> - <linearGradient - id="linearGradient5227-3" - inkscape:collect="always"> - <stop - id="stop5229-3" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5231-5" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-5" - id="linearGradient3386-2" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient3604-5" - inkscape:collect="always"> - <stop - id="stop3606-3" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop3608-0" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-4" - id="radialGradient3388-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-322.72327" - cy="85.487053" - fx="-322.72327" - fy="85.487053" - r="18.133474" /> - <linearGradient - id="linearGradient5237-4" - inkscape:collect="always"> - <stop - id="stop5239-1" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.62162162" /> - <stop - id="stop5241-4" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-4" - id="radialGradient3390-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-317.63007" - cy="84.673492" - fx="-317.63007" - fy="84.673492" - r="18.133474" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5352-6" - id="linearGradient3392-6-10" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-377.3601,-71.225397)" - x1="-115.51489" - y1="-53.597103" - x2="-115.51489" - y2="-33.89423" /> - <linearGradient - id="linearGradient5352-6" - inkscape:collect="always"> - <stop - id="stop5354-6" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5356-8" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5267-7" - id="linearGradient3394-8-8" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-190.3601,-184.7254)" - x1="-296.75015" - y1="119.76865" - x2="-296.75015" - y2="92.064072" /> - <linearGradient - id="linearGradient5267-7" - inkscape:collect="always"> - <stop - id="stop5269-5" - offset="0" - style="stop-color:#050505;stop-opacity:1;" /> - <stop - id="stop5271-8" - offset="1" - style="stop-color:#050505;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-5" - id="linearGradient3396-4" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5406-2" - id="radialGradient3398-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" - cx="-107.83378" - cy="-43.067612" - fx="-107.83378" - fy="-43.067612" - r="12.374368" /> - <linearGradient - id="linearGradient5406-2" - inkscape:collect="always"> - <stop - id="stop5408-2" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5410-4" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-4" - id="radialGradient3400-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" - cx="-195.32214" - cy="133.89294" - fx="-195.32214" - fy="133.89294" - r="48.968639" /> - <linearGradient - id="linearGradient3653-4-4" - inkscape:collect="always"> - <stop - id="stop3655-0" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3657-7" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-4" - id="radialGradient3402-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" - cx="-195.32211" - cy="144.36551" - fx="-195.32211" - fy="144.36551" - r="48.968639" /> - <mask - id="mask5641-6" - maskUnits="userSpaceOnUse"> - <rect - y="-108.19437" - x="-548.99231" - height="26.352942" - width="100.99232" - id="rect5643-9" - style="fill:url(#radialGradient5645-4);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - r="50.496159" - fy="-97.979721" - fx="-498.49612" - cy="-97.979721" - cx="-498.49612" - gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" - gradientUnits="userSpaceOnUse" - id="radialGradient5645-4" - xlink:href="#linearGradient5631-3-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5631-3-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5633-52" /> - <stop - id="stop5639-1" - offset="0.30253538" - style="stop-color:#ffffff;stop-opacity:0.86666667;" /> - <stop - id="stop5637-2" - offset="0.70000011" - style="stop-color:#ffffff;stop-opacity:0.50980392;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5635-5" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5522-83" - id="radialGradient3404-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" - cx="-75.703278" - cy="119.10338" - fx="-75.703278" - fy="119.10338" - r="50.125" /> - <linearGradient - id="linearGradient5522-83"> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="0" - id="stop5524-2" /> - <stop - id="stop5526-90" - offset="0.52602422" - style="stop-color:#000000;stop-opacity:0.21428572;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop5528-7" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5114-4" - id="radialGradient3406-91" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" - cx="-75.711166" - cy="113.45824" - fx="-75.514481" - fy="99.224663" - r="50.125" /> - <linearGradient - id="linearGradient5114-4"> - <stop - id="stop5116-07" - offset="0" - style="stop-color:#000000;stop-opacity:0;" /> - <stop - style="stop-color:#000000;stop-opacity:0.21428572;" - offset="0.5" - id="stop5182-4" /> - <stop - id="stop5118-4" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5566-3" - id="linearGradient3408-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - x1="-190.20325" - y1="77.351906" - x2="-190.20325" - y2="102.10035" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5566-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5568-43" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5570-1" /> - </linearGradient> - <linearGradient - y2="15.411574" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10845-2" - xlink:href="#linearGradient7365-1" - inkscape:collect="always" /> - <radialGradient - r="94" - fy="-192.92754" - fx="-122.25" - cy="-192.92754" - cx="-122.25" - gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" - gradientUnits="userSpaceOnUse" - id="radialGradient10842-3" - xlink:href="#linearGradient3393-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3393-5"> - <stop - id="stop3395-28" - offset="0" - style="stop-color:#efefef;stop-opacity:1" /> - <stop - id="stop3397-9" - offset="1" - style="stop-color:#b8b8b8;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-228.88507" - x2="-100" - y1="-106.62158" - x1="-100" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10839-3" - xlink:href="#linearGradient3385-7-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3385-7-0"> - <stop - id="stop3387-7" - offset="0" - style="stop-color:#d6d6d6;stop-opacity:1;" /> - <stop - id="stop3389-6" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-208.05618" - x2="-80" - y1="-67.985718" - x1="-80" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10836-1" - xlink:href="#linearGradient3259-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3259-0"> - <stop - id="stop3261-8" - offset="0" - style="stop-color:#1f1f1f;stop-opacity:1;" /> - <stop - id="stop3263-0" - offset="1" - style="stop-color:#424242;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-275.16071" - x2="-127.61703" - y1="-310.29703" - x1="-127.61703" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" - gradientUnits="userSpaceOnUse" - id="linearGradient10833-3" - xlink:href="#linearGradient3303-2-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3303-2-8" - inkscape:collect="always"> - <stop - id="stop3305-5-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3307-4-2" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-166.52031" - fx="-120.37437" - cy="-150.6152" - cx="-120" - gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" - gradientUnits="userSpaceOnUse" - id="radialGradient10830-7" - xlink:href="#linearGradient3273-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3273-8" - inkscape:collect="always"> - <stop - id="stop3275-3" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3277-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-109.7959" - fx="-120" - cy="-109.7959" - cx="-120" - gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" - gradientUnits="userSpaceOnUse" - id="radialGradient10827-8" - xlink:href="#linearGradient3273-8" - inkscape:collect="always" /> - <linearGradient - y2="-124.49196" - x2="-11.793251" - y1="-0.17180708" - x1="-11.793251" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10823-37" - xlink:href="#linearGradient3427-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3427-4" - inkscape:collect="always"> - <stop - id="stop3429-21" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3431-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-158.88614" - x2="-90.485931" - y1="-60.000008" - x1="-132.38875" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10820-6" - xlink:href="#XMLID_18_-4" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="XMLID_18_-4"> - <stop - id="stop3354-3" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop3364-1" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <radialGradient - r="76" - fy="-120.68829" - fx="-526.78827" - cy="-120.68829" - cx="-526.78827" - gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" - gradientUnits="userSpaceOnUse" - id="radialGradient10817-2" - xlink:href="#XMLID_18_-4" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="linearGradient8333-7"> - <stop - id="stop8335-9" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop8337-3" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - y2="-141.69821" - x2="-474.70587" - y1="-349.57544" - x1="-519.00256" - gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" - gradientUnits="userSpaceOnUse" - id="linearGradient10814-0" - xlink:href="#linearGradient4376-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4376-2" - inkscape:collect="always"> - <stop - id="stop4378-0" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4380-9" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient11001-3" - xlink:href="#linearGradient4429-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4429-1"> - <stop - style="stop-color:#fff1c0;stop-opacity:1;" - offset="0" - id="stop4431-9" /> - <stop - style="stop-color:#fff1c0;stop-opacity:0;" - offset="1" - id="stop4433-3" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient10999-4" - xlink:href="#linearGradient4441-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4441-7"> - <stop - id="stop4443-4" - offset="0" - style="stop-color:#dbfaff;stop-opacity:1;" /> - <stop - id="stop4445-6" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient8482-5" - xlink:href="#linearGradient4441-7" - inkscape:collect="always" /> - <radialGradient - r="20.631315" - fy="138.73308" - fx="71.368683" - cy="138.73308" - cx="71.368683" - gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" - gradientUnits="userSpaceOnUse" - id="radialGradient11107-7" - xlink:href="#linearGradient3802-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3802-0"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3804-87" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3806-0" /> - </linearGradient> - <linearGradient - y2="122.43194" - x2="91.105286" - y1="122.43194" - x1="50.458698" - gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10996-8" - xlink:href="#linearGradient4029-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4029-3"> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="0" - id="stop4031-4" /> - <stop - id="stop4033-9" - offset="0.5" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="1" - id="stop4035-0" /> - </linearGradient> - <linearGradient - y2="124.48643" - x2="93.409775" - y1="124.48643" - x1="50.394154" - gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10993-2" - xlink:href="#linearGradient3149-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3149-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3151-7" /> - <stop - id="stop3157-4" - offset="0.34797296" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.65930116" - id="stop4061-96" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3153-45" /> - </linearGradient> - <linearGradient - y2="477.52972" - x2="742.16382" - y1="477.52972" - x1="555.14642" - gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990-5" - xlink:href="#linearGradient3611-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3611-9"> - <stop - id="stop3613-5" - offset="0" - style="stop-color:#818584;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.5" - id="stop3615-0" /> - <stop - id="stop3617-42" - offset="1" - style="stop-color:#818584;stop-opacity:1;" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="406.23959" - fx="648.6554" - cy="390.69016" - cx="648.65527" - gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" - gradientUnits="userSpaceOnUse" - id="radialGradient10987-5" - xlink:href="#linearGradient3166-46" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3166-46"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168-1" /> - <stop - id="stop3518-95" - offset="0.5990991" - style="stop-color:#ffffff;stop-opacity:0.82206404;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3170-17" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="639.22247" - fx="648.65515" - cy="639.22247" - cx="648.65515" - gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" - gradientUnits="userSpaceOnUse" - id="radialGradient10984-23" - xlink:href="#linearGradient3176-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3176-1"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3178-5-8" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop3180-4" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient10981-6" - xlink:href="#linearGradient3722-45" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3722-45"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3724-8" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop3726-6" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient7741-78" - xlink:href="#linearGradient3722-45" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7743-1"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop7745-8" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop7747-4" /> - </linearGradient> - <radialGradient - r="7.9898205" - fy="76.438904" - fx="55.989819" - cy="76.438904" - cx="55.989819" - gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" - gradientUnits="userSpaceOnUse" - id="radialGradient10977-7" - xlink:href="#linearGradient3872-52" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3872-52"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3874-82" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3876-4" /> - </linearGradient> - <linearGradient - y2="110.8287" - x2="73.38102" - y1="150.87357" - x1="73.38102" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10974-5" - xlink:href="#linearGradient3176-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7754-4"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7756-9" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop7758-9" /> - </linearGradient> - <radialGradient - r="20.5" - fy="116" - fx="72" - cy="116" - cx="72" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - gradientUnits="userSpaceOnUse" - id="radialGradient11105-2" - xlink:href="#linearGradient4949-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4949-2"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4951-0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4953-7" /> - </linearGradient> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientTransform="translate(1,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11103-09" - xlink:href="#linearGradient6064-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient6064-0"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6066-0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6068-3" /> - </linearGradient> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientUnits="userSpaceOnUse" - id="linearGradient11101-3" - xlink:href="#linearGradient6064-0" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-6" - id="radialGradient7694-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3978-6"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3980-6" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3982-8" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-6" - id="radialGradient7787-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - y2="15.908398" - x2="72.281242" - y1="58" - x1="70.316795" - gradientTransform="translate(102.53048,-57.275649)" - gradientUnits="userSpaceOnUse" - id="linearGradient11095-5" - xlink:href="#linearGradient7136-33" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7136-33"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7138-45" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7140-99" /> - </linearGradient> - <mask - maskUnits="userSpaceOnUse" - id="mask7160-1"> - <path - inkscape:connector-curvature="0" - id="path7162-1" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="fill:url(#radialGradient7164-03);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient7150-3" - id="radialGradient7164-03" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" - cx="162.46797" - cy="-0.23275588" - fx="162.46797" - fy="-0.23275588" - r="25.9375" /> - <linearGradient - id="linearGradient7150-3"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop7152-0" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop7154-2" /> - </linearGradient> - <linearGradient - gradientTransform="translate(2,927.73011)" - y2="18.691383" - x2="16.357016" - y1="92" - x1="36" - gradientUnits="userSpaceOnUse" - id="linearGradient10953-9" - xlink:href="#linearGradient4409-15" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4409-15"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4411-7" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4413-6" /> - </linearGradient> - <linearGradient - y2="7.7186575" - x2="55.058228" - y1="-0.85672575" - x1="55.058228" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10950-35" - xlink:href="#linearGradient7354-96" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7354-96"> - <stop - style="stop-color:#929595;stop-opacity:1;" - offset="0" - id="stop7356-0" /> - <stop - style="stop-color:#929595;stop-opacity:0;" - offset="1" - id="stop7358-3" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" - gradientUnits="userSpaceOnUse" - id="linearGradient10947-3" - xlink:href="#linearGradient7394-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7394-9"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7396-4" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7398-60" /> - </linearGradient> - <radialGradient - r="42.727272" - fy="44.909092" - fx="52.18182" - cy="44.909092" - cx="52.18182" - spreadMethod="reflect" - gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" - gradientUnits="userSpaceOnUse" - id="radialGradient11011-46" - xlink:href="#linearGradient3065-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3065-4"> - <stop - id="stop3067-5-3" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3073-5" /> - <stop - id="stop3069-8" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11013-2" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3167-6" - inkscape:collect="always"> - <stop - id="stop3169-5" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3171-9" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11015-78" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11017-4" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11019-5" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11021-4" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11023-09" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11025-8" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11027-5" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11029-6" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11031-9" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11033-26" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11035-3" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11037-7" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11039-7" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11041-7" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11043-4" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11045-8" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11047-47" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11049-4" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11051-0" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11053-19" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11055-8" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11057-0" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11059-4" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11061-4" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11063-5" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11065-34" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11067-5" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11069-7" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11071-9" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11073-9" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11075-9" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11077-8" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11079-95" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11081-48" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083-92" - xlink:href="#linearGradient3167-6" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11085-3" - xlink:href="#linearGradient3088-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3088-6"> - <stop - id="stop3090-4-9" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop3098-3" /> - <stop - id="stop3092-2" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11087-97" - xlink:href="#linearGradient3088-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8095-0"> - <stop - id="stop8097-59" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop8099-35" /> - <stop - id="stop8101-7" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="47.937988" - fy="111.93269" - fx="69.801033" - cy="88.499367" - cx="60.097603" - gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" - gradientUnits="userSpaceOnUse" - id="radialGradient11089-5" - xlink:href="#linearGradient3954-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3954-9"> - <stop - style="stop-color:#b3b3b3;stop-opacity:1;" - offset="0" - id="stop3956-42" /> - <stop - id="stop3962-4" - offset="0.52879584" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#c5c5c5;stop-opacity:1;" - offset="1" - id="stop3958-87" /> - </linearGradient> - <linearGradient - y2="32.457832" - x2="76.596703" - y1="148.57518" - x1="17.723173" - gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" - gradientUnits="userSpaceOnUse" - id="linearGradient11091-1" - xlink:href="#linearGradient4860-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4860-7"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4862-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4864-3" /> - </linearGradient> - <radialGradient - r="50.234375" - fy="8.0446291" - fx="43.034355" - cy="42.699898" - cx="43.620941" - gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" - gradientUnits="userSpaceOnUse" - id="radialGradient11093-7" - xlink:href="#linearGradient4875-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4875-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4877-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4879-3" /> - </linearGradient> - <radialGradient - r="17.67767" - fy="55.875111" - fx="176.77669" - cy="65.774605" - cx="177.4838" - gradientUnits="userSpaceOnUse" - id="radialGradient11009-3" - xlink:href="#linearGradient7290-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7290-5"> - <stop - id="stop7292-8" - offset="0" - style="stop-color:#dddddd;stop-opacity:1;" /> - <stop - id="stop7294-8" - offset="1" - style="stop-color:#a7a7a7;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" - gradientUnits="userSpaceOnUse" - id="linearGradient10892-00" - xlink:href="#linearGradient7394-9" - inkscape:collect="always" /> - <linearGradient - y2="15.75" - x2="71.75" - y1="112.25" - x1="71.75" - gradientTransform="translate(-12,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11007-7" - xlink:href="#linearGradient3586-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3586-2"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3588-57" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3590-5" /> - </linearGradient> - <linearGradient - y2="116.8996" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10888-3" - xlink:href="#linearGradient7365-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7365-0"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7367-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7369-7" /> - </linearGradient> - <linearGradient - y2="60.866104" - x2="73.467186" - y1="60.866104" - x1="72.201843" - gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" - gradientUnits="userSpaceOnUse" - id="linearGradient10883-8" - xlink:href="#linearGradient3576-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3576-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3578-1" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3580-7" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" - gradientUnits="userSpaceOnUse" - id="radialGradient10880-1" - xlink:href="#linearGradient3399-1-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3399-1-4"> - <stop - style="stop-color:#00a8ba;stop-opacity:1;" - offset="0" - id="stop3401-6" /> - <stop - style="stop-color:#00a8ba;stop-opacity:0;" - offset="1" - id="stop3403-1" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" - gradientUnits="userSpaceOnUse" - id="radialGradient11005-2" - xlink:href="#linearGradient3399-1-4" - inkscape:collect="always" /> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" - gradientUnits="userSpaceOnUse" - id="radialGradient10876-1" - xlink:href="#linearGradient3483-86" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3483-86"> - <stop - id="stop3485-69" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop3487-5" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.82944" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" - gradientUnits="userSpaceOnUse" - id="radialGradient11003-89" - xlink:href="#linearGradient3483-86" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8161-2"> - <stop - id="stop8163-0" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop8165-69" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="26.75" - fy="-16.181448" - fx="60" - cy="-16.181448" - cx="60" - gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" - gradientUnits="userSpaceOnUse" - id="radialGradient10871-69" - xlink:href="#linearGradient7365-0" - inkscape:collect="always" /> - <linearGradient - y2="24.713068" - x2="60.428722" - y1="22.930367" - x1="60.428722" - gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" - gradientUnits="userSpaceOnUse" - id="linearGradient10867-4" - xlink:href="#linearGradient4878-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4878-8"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4880-4" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4882-49" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5549-4-0" - id="linearGradient3381-7-7" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-302.8601,-193.7254)" - x1="-190.99445" - y1="75.382088" - x2="-190.99445" - y2="118.72548" /> - <linearGradient - id="linearGradient5549-4-0"> - <stop - style="stop-color:#cacaca;stop-opacity:1" - offset="0" - id="stop5551-5" /> - <stop - id="stop5553-8" - offset="0.61419845" - style="stop-color:#ebebeb;stop-opacity:1;" /> - <stop - style="stop-color:#cbcbcb;stop-opacity:1;" - offset="1" - id="stop5555-3" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5227-9" - id="radialGradient3383-8-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" - cx="-307.625" - cy="70.359375" - fx="-320.35294" - fy="87.258614" - r="50.125" /> - <linearGradient - id="linearGradient5227-9" - inkscape:collect="always"> - <stop - id="stop5229-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5231-48" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-3" - id="linearGradient3386-6" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient3604-3" - inkscape:collect="always"> - <stop - id="stop3606-99" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop3608-5" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-8" - id="radialGradient3388-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-322.72327" - cy="85.487053" - fx="-322.72327" - fy="85.487053" - r="18.133474" /> - <linearGradient - id="linearGradient5237-8" - inkscape:collect="always"> - <stop - id="stop5239-8" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.62162162" /> - <stop - id="stop5241-2" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-8" - id="radialGradient3390-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-317.63007" - cy="84.673492" - fx="-317.63007" - fy="84.673492" - r="18.133474" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5352-8" - id="linearGradient3392-6-9" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-377.3601,-71.225397)" - x1="-115.51489" - y1="-53.597103" - x2="-115.51489" - y2="-33.89423" /> - <linearGradient - id="linearGradient5352-8" - inkscape:collect="always"> - <stop - id="stop5354-66" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5356-6" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5267-9" - id="linearGradient3394-8-7" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-190.3601,-184.7254)" - x1="-296.75015" - y1="119.76865" - x2="-296.75015" - y2="92.064072" /> - <linearGradient - id="linearGradient5267-9" - inkscape:collect="always"> - <stop - id="stop5269-3" - offset="0" - style="stop-color:#050505;stop-opacity:1;" /> - <stop - id="stop5271-9" - offset="1" - style="stop-color:#050505;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-3" - id="linearGradient3396-44" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5406-25" - id="radialGradient3398-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" - cx="-107.83378" - cy="-43.067612" - fx="-107.83378" - fy="-43.067612" - r="12.374368" /> - <linearGradient - id="linearGradient5406-25" - inkscape:collect="always"> - <stop - id="stop5408-4" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5410-6" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-49" - id="radialGradient3400-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" - cx="-195.32214" - cy="133.89294" - fx="-195.32214" - fy="133.89294" - r="48.968639" /> - <linearGradient - id="linearGradient3653-4-49" - inkscape:collect="always"> - <stop - id="stop3655-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3657-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-49" - id="radialGradient3402-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" - cx="-195.32211" - cy="144.36551" - fx="-195.32211" - fy="144.36551" - r="48.968639" /> - <mask - id="mask5641-7" - maskUnits="userSpaceOnUse"> - <rect - y="-108.19437" - x="-548.99231" - height="26.352942" - width="100.99232" - id="rect5643-5" - style="fill:url(#radialGradient5645-9);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - r="50.496159" - fy="-97.979721" - fx="-498.49612" - cy="-97.979721" - cx="-498.49612" - gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" - gradientUnits="userSpaceOnUse" - id="radialGradient5645-9" - xlink:href="#linearGradient5631-3-6" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5631-3-6"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5633-6" /> - <stop - id="stop5639-9" - offset="0.30253538" - style="stop-color:#ffffff;stop-opacity:0.86666667;" /> - <stop - id="stop5637-4" - offset="0.70000011" - style="stop-color:#ffffff;stop-opacity:0.50980392;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5635-4" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5522-2" - id="radialGradient3404-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" - cx="-75.703278" - cy="119.10338" - fx="-75.703278" - fy="119.10338" - r="50.125" /> - <linearGradient - id="linearGradient5522-2"> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="0" - id="stop5524-3" /> - <stop - id="stop5526-1" - offset="0.52602422" - style="stop-color:#000000;stop-opacity:0.21428572;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop5528-1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5114-0" - id="radialGradient3406-92" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" - cx="-75.711166" - cy="113.45824" - fx="-75.514481" - fy="99.224663" - r="50.125" /> - <linearGradient - id="linearGradient5114-0"> - <stop - id="stop5116-7" - offset="0" - style="stop-color:#000000;stop-opacity:0;" /> - <stop - style="stop-color:#000000;stop-opacity:0.21428572;" - offset="0.5" - id="stop5182-7" /> - <stop - id="stop5118-0" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5566-32" - id="linearGradient3408-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - x1="-190.20325" - y1="77.351906" - x2="-190.20325" - y2="102.10035" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5566-32"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5568-0" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5570-5" /> - </linearGradient> - <linearGradient - y2="15.411574" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10845-4" - xlink:href="#linearGradient7365-0" - inkscape:collect="always" /> - <radialGradient - r="94" - fy="-192.92754" - fx="-122.25" - cy="-192.92754" - cx="-122.25" - gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" - gradientUnits="userSpaceOnUse" - id="radialGradient10842-4" - xlink:href="#linearGradient3393-56" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3393-56"> - <stop - id="stop3395-3" - offset="0" - style="stop-color:#efefef;stop-opacity:1" /> - <stop - id="stop3397-2" - offset="1" - style="stop-color:#b8b8b8;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-228.88507" - x2="-100" - y1="-106.62158" - x1="-100" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10839-8" - xlink:href="#linearGradient3385-7-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3385-7-1"> - <stop - id="stop3387-07" - offset="0" - style="stop-color:#d6d6d6;stop-opacity:1;" /> - <stop - id="stop3389-64" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-208.05618" - x2="-80" - y1="-67.985718" - x1="-80" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10836-5" - xlink:href="#linearGradient3259-07" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3259-07"> - <stop - id="stop3261-7" - offset="0" - style="stop-color:#1f1f1f;stop-opacity:1;" /> - <stop - id="stop3263-3" - offset="1" - style="stop-color:#424242;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-275.16071" - x2="-127.61703" - y1="-310.29703" - x1="-127.61703" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" - gradientUnits="userSpaceOnUse" - id="linearGradient10833-6" - xlink:href="#linearGradient3303-2-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3303-2-6" - inkscape:collect="always"> - <stop - id="stop3305-5-95" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3307-4-99" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-166.52031" - fx="-120.37437" - cy="-150.6152" - cx="-120" - gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" - gradientUnits="userSpaceOnUse" - id="radialGradient10830-4" - xlink:href="#linearGradient3273-80" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3273-80" - inkscape:collect="always"> - <stop - id="stop3275-7" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3277-2" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-109.7959" - fx="-120" - cy="-109.7959" - cx="-120" - gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" - gradientUnits="userSpaceOnUse" - id="radialGradient10827-29" - xlink:href="#linearGradient3273-80" - inkscape:collect="always" /> - <linearGradient - y2="-124.49196" - x2="-11.793251" - y1="-0.17180708" - x1="-11.793251" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10823-7" - xlink:href="#linearGradient3427-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3427-8" - inkscape:collect="always"> - <stop - id="stop3429-4" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3431-4" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-158.88614" - x2="-90.485931" - y1="-60.000008" - x1="-132.38875" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10820-4" - xlink:href="#XMLID_18_-98" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="XMLID_18_-98"> - <stop - id="stop3354-4" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop3364-18" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <radialGradient - r="76" - fy="-120.68829" - fx="-526.78827" - cy="-120.68829" - cx="-526.78827" - gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" - gradientUnits="userSpaceOnUse" - id="radialGradient10817-29" - xlink:href="#XMLID_18_-98" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="linearGradient8333-2"> - <stop - id="stop8335-7" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop8337-1" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - y2="-141.69821" - x2="-474.70587" - y1="-349.57544" - x1="-519.00256" - gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" - gradientUnits="userSpaceOnUse" - id="linearGradient10814-9" - xlink:href="#linearGradient4376-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4376-6" - inkscape:collect="always"> - <stop - id="stop4378-4" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4380-5" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient11001-34" - xlink:href="#linearGradient4429-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4429-2"> - <stop - style="stop-color:#fff1c0;stop-opacity:1;" - offset="0" - id="stop4431-4" /> - <stop - style="stop-color:#fff1c0;stop-opacity:0;" - offset="1" - id="stop4433-38" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient10999-2" - xlink:href="#linearGradient4441-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4441-5"> - <stop - id="stop4443-6" - offset="0" - style="stop-color:#dbfaff;stop-opacity:1;" /> - <stop - id="stop4445-69" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient8482-53" - xlink:href="#linearGradient4441-5" - inkscape:collect="always" /> - <radialGradient - r="20.631315" - fy="138.73308" - fx="71.368683" - cy="138.73308" - cx="71.368683" - gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" - gradientUnits="userSpaceOnUse" - id="radialGradient11107-3" - xlink:href="#linearGradient3802-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3802-5"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3804-1" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3806-2" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.075877823" - width="1.1517557" - y="-0.78272969" - height="2.5654593" - id="filter3872-8" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.3045494" - id="feGaussianBlur3874-33" /> - </filter> - <linearGradient - y2="122.43194" - x2="91.105286" - y1="122.43194" - x1="50.458698" - gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10996-26" - xlink:href="#linearGradient4029-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4029-1"> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="0" - id="stop4031-2" /> - <stop - id="stop4033-6" - offset="0.5" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="1" - id="stop4035-51" /> - </linearGradient> - <linearGradient - y2="124.48643" - x2="93.409775" - y1="124.48643" - x1="50.394154" - gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10993-4" - xlink:href="#linearGradient3149-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3149-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3151-17" /> - <stop - id="stop3157-3" - offset="0.34797296" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.65930116" - id="stop4061-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3153-8" /> - </linearGradient> - <linearGradient - y2="477.52972" - x2="742.16382" - y1="477.52972" - x1="555.14642" - gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990-3" - xlink:href="#linearGradient3611-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3611-0"> - <stop - id="stop3613-7" - offset="0" - style="stop-color:#818584;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.5" - id="stop3615-1" /> - <stop - id="stop3617-9" - offset="1" - style="stop-color:#818584;stop-opacity:1;" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="406.23959" - fx="648.6554" - cy="390.69016" - cx="648.65527" - gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" - gradientUnits="userSpaceOnUse" - id="radialGradient10987-51" - xlink:href="#linearGradient3166-51" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3166-51"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168-18" /> - <stop - id="stop3518-64" - offset="0.5990991" - style="stop-color:#ffffff;stop-opacity:0.82206404;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3170-2" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="639.22247" - fx="648.65515" - cy="639.22247" - cx="648.65515" - gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" - gradientUnits="userSpaceOnUse" - id="radialGradient10984-6" - xlink:href="#linearGradient3176-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3176-7"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3178-5-6" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop3180-9" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient10981-69" - xlink:href="#linearGradient3722-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3722-3"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3724-2" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop3726-5" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient7741-4" - xlink:href="#linearGradient3722-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7743-80"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop7745-7" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop7747-5" /> - </linearGradient> - <radialGradient - r="7.9898205" - fy="76.438904" - fx="55.989819" - cy="76.438904" - cx="55.989819" - gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" - gradientUnits="userSpaceOnUse" - id="radialGradient10977-3" - xlink:href="#linearGradient3872-05" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3872-05"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3874-6" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3876-0" /> - </linearGradient> - <linearGradient - y2="110.8287" - x2="73.38102" - y1="150.87357" - x1="73.38102" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10974-58" - xlink:href="#linearGradient3176-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7754-2"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7756-2" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop7758-1" /> - </linearGradient> - <radialGradient - r="20.5" - fy="116" - fx="72" - cy="116" - cx="72" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - gradientUnits="userSpaceOnUse" - id="radialGradient11105-7" - xlink:href="#linearGradient4949-35" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4949-35"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4951-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4953-1" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.013508443" - width="1.0270169" - y="-0.55384612" - height="2.1076922" - id="filter4997-9" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.23076923" - id="feGaussianBlur4999-0" /> - </filter> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientTransform="translate(1,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11103-9" - xlink:href="#linearGradient6064-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient6064-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6066-6" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6068-8" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.26761475" - width="1.5352294" - y="-0.062321238" - height="1.1246425" - id="filter6060-7" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.5675913" - id="feGaussianBlur6062-8" /> - </filter> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientUnits="userSpaceOnUse" - id="linearGradient11101-1" - xlink:href="#linearGradient6064-9" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-57" - id="radialGradient7694-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3978-57"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3980-9" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3982-54" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-57" - id="radialGradient7787-50" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - y2="15.908398" - x2="72.281242" - y1="58" - x1="70.316795" - gradientTransform="translate(102.53048,-57.275649)" - gradientUnits="userSpaceOnUse" - id="linearGradient11095-7" - xlink:href="#linearGradient7136-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7136-2"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7138-6" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7140-97" /> - </linearGradient> - <mask - maskUnits="userSpaceOnUse" - id="mask7160-61"> - <path - inkscape:connector-curvature="0" - id="path7162-9" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="fill:url(#radialGradient7164-09);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient7150-4" - id="radialGradient7164-09" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" - cx="162.46797" - cy="-0.23275588" - fx="162.46797" - fy="-0.23275588" - r="25.9375" /> - <linearGradient - id="linearGradient7150-4"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop7152-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop7154-7" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7348-78" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.8190732" - id="feGaussianBlur7350-77" /> - </filter> - <filter - inkscape:collect="always" - x="-0.14289699" - width="1.285794" - y="-0.089270152" - height="1.1785403" - id="filter7256-9" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="6.6685268" - id="feGaussianBlur7258-6" /> - </filter> - <filter - inkscape:collect="always" - id="filter7238-7" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.6674107" - id="feGaussianBlur7240-6" /> - </filter> - <linearGradient - gradientTransform="translate(2,927.73011)" - y2="18.691383" - x2="16.357016" - y1="92" - x1="36" - gradientUnits="userSpaceOnUse" - id="linearGradient10953-61" - xlink:href="#linearGradient4409-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4409-7"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4411-1" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4413-0" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4405-7" - x="-0.23281144" - width="1.4656229" - y="-0.048040453" - height="1.0960809" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.2610619" - id="feGaussianBlur4407-6" /> - </filter> - <linearGradient - y2="7.7186575" - x2="55.058228" - y1="-0.85672575" - x1="55.058228" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10950-5" - xlink:href="#linearGradient7354-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7354-4"> - <stop - style="stop-color:#929595;stop-opacity:1;" - offset="0" - id="stop7356-8" /> - <stop - style="stop-color:#929595;stop-opacity:0;" - offset="1" - id="stop7358-28" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" - gradientUnits="userSpaceOnUse" - id="linearGradient10947-6" - xlink:href="#linearGradient7394-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7394-1"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7396-63" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7398-5" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4648-7" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="4.6264466" - id="feGaussianBlur4650-5" /> - </filter> - <radialGradient - r="42.727272" - fy="44.909092" - fx="52.18182" - cy="44.909092" - cx="52.18182" - spreadMethod="reflect" - gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" - gradientUnits="userSpaceOnUse" - id="radialGradient11011-44" - xlink:href="#linearGradient3065-41" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3065-41"> - <stop - id="stop3067-5-32" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3073-02" /> - <stop - id="stop3069-2" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11013-8" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3167-28" - inkscape:collect="always"> - <stop - id="stop3169-43" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3171-8" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11015-5" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11017-55" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11019-3" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11021-0" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11023-1" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11025-1" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11027-4" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11029-9" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11031-08" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11033-7" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11035-33" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11037-70" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11039-9" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11041-34" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11043-2" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11045-68" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11047-2" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11049-9" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11051-03" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11053-11" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11055-7" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11057-6" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11059-9" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11061-53" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11063-60" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11065-4" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11067-9" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11069-4" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11071-0" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11073-0" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11075-4" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11077-0" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11079-8" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11081-9" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083-3" - xlink:href="#linearGradient3167-28" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11085-51" - xlink:href="#linearGradient3088-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3088-4"> - <stop - id="stop3090-4-0" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop3098-76" /> - <stop - id="stop3092-6" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11087-5" - xlink:href="#linearGradient3088-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8095-1"> - <stop - id="stop8097-7" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop8099-8" /> - <stop - id="stop8101-4" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="47.937988" - fy="111.93269" - fx="69.801033" - cy="88.499367" - cx="60.097603" - gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" - gradientUnits="userSpaceOnUse" - id="radialGradient11089-09" - xlink:href="#linearGradient3954-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3954-3"> - <stop - style="stop-color:#b3b3b3;stop-opacity:1;" - offset="0" - id="stop3956-8" /> - <stop - id="stop3962-0" - offset="0.52879584" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#c5c5c5;stop-opacity:1;" - offset="1" - id="stop3958-82" /> - </linearGradient> - <linearGradient - y2="32.457832" - x2="76.596703" - y1="148.57518" - x1="17.723173" - gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" - gradientUnits="userSpaceOnUse" - id="linearGradient11091-8" - xlink:href="#linearGradient4860-98" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4860-98"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4862-9" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4864-5" /> - </linearGradient> - <radialGradient - r="50.234375" - fy="8.0446291" - fx="43.034355" - cy="42.699898" - cx="43.620941" - gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" - gradientUnits="userSpaceOnUse" - id="radialGradient11093-8" - xlink:href="#linearGradient4875-99" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4875-99"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4877-1" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4879-7" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7312-8" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.1655606" - id="feGaussianBlur7314-4" /> - </filter> - <radialGradient - r="17.67767" - fy="55.875111" - fx="176.77669" - cy="65.774605" - cx="177.4838" - gradientUnits="userSpaceOnUse" - id="radialGradient11009-4" - xlink:href="#linearGradient7290-99" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7290-99"> - <stop - id="stop7292-4" - offset="0" - style="stop-color:#dddddd;stop-opacity:1;" /> - <stop - id="stop7294-6" - offset="1" - style="stop-color:#a7a7a7;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" - gradientUnits="userSpaceOnUse" - id="linearGradient10892-7" - xlink:href="#linearGradient7394-1" - inkscape:collect="always" /> - <linearGradient - y2="15.75" - x2="71.75" - y1="112.25" - x1="71.75" - gradientTransform="translate(-12,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11007-33" - xlink:href="#linearGradient3586-80" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3586-80"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3588-1" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3590-23" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.4752" - width="1.9504" - y="-0.012310881" - height="1.0246218" - id="filter3598-261" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.495" - id="feGaussianBlur3600-2" /> - </filter> - <linearGradient - y2="116.8996" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10888-6" - xlink:href="#linearGradient7365-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7365-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7367-27" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7369-3" /> - </linearGradient> - <linearGradient - y2="60.866104" - x2="73.467186" - y1="60.866104" - x1="72.201843" - gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" - gradientUnits="userSpaceOnUse" - id="linearGradient10883-1" - xlink:href="#linearGradient3576-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3576-2"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3578-21" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3580-1" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" - gradientUnits="userSpaceOnUse" - id="radialGradient10880-3" - xlink:href="#linearGradient3399-1-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3399-1-0"> - <stop - style="stop-color:#00a8ba;stop-opacity:1;" - offset="0" - id="stop3401-1" /> - <stop - style="stop-color:#00a8ba;stop-opacity:0;" - offset="1" - id="stop3403-9" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" - gradientUnits="userSpaceOnUse" - id="radialGradient11005-70" - xlink:href="#linearGradient3399-1-0" - inkscape:collect="always" /> - <filter - inkscape:collect="always" - x="-0.4660736" - width="1.9321471" - y="-0.038034502" - height="1.076069" - id="filter3469-0" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.146978" - id="feGaussianBlur3471-3" /> - </filter> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" - gradientUnits="userSpaceOnUse" - id="radialGradient10876-8" - xlink:href="#linearGradient3483-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3483-0"> - <stop - id="stop3485-62" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop3487-8" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.82944" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" - gradientUnits="userSpaceOnUse" - id="radialGradient11003-9" - xlink:href="#linearGradient3483-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient8161-31"> - <stop - id="stop8163-2" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop8165-8" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.59694225" - width="2.1938846" - y="-0.074120946" - height="1.1482419" - id="filter4927-9" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.49701338" - id="feGaussianBlur4929-52" /> - </filter> - <radialGradient - r="26.75" - fy="-16.181448" - fx="60" - cy="-16.181448" - cx="60" - gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" - gradientUnits="userSpaceOnUse" - id="radialGradient10871-5" - xlink:href="#linearGradient7365-3" - inkscape:collect="always" /> - <linearGradient - y2="24.713068" - x2="60.428722" - y1="22.930367" - x1="60.428722" - gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" - gradientUnits="userSpaceOnUse" - id="linearGradient10867-15" - xlink:href="#linearGradient4878-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4878-3"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4880-48" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4882-5" /> - </linearGradient> - <filter - height="1.2056012" - y="-0.1028006" - width="1.1447796" - x="-0.072389819" - id="filter5346-81" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5348-9" - stdDeviation="3.0237831" - inkscape:collect="always" /> - </filter> - <filter - id="filter5214-1" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5216-20" - stdDeviation="0.94493222" - inkscape:collect="always" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5549-4-1" - id="linearGradient3381-7-3" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-302.8601,-193.7254)" - x1="-190.99445" - y1="75.382088" - x2="-190.99445" - y2="118.72548" /> - <linearGradient - id="linearGradient5549-4-1"> - <stop - style="stop-color:#cacaca;stop-opacity:1" - offset="0" - id="stop5551-3" /> - <stop - id="stop5553-5" - offset="0.61419845" - style="stop-color:#ebebeb;stop-opacity:1;" /> - <stop - style="stop-color:#cbcbcb;stop-opacity:1;" - offset="1" - id="stop5555-4" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5227-5" - id="radialGradient3383-8-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" - cx="-307.625" - cy="70.359375" - fx="-320.35294" - fy="87.258614" - r="50.125" /> - <linearGradient - id="linearGradient5227-5" - inkscape:collect="always"> - <stop - id="stop5229-35" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5231-6" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-7" - id="linearGradient3386-41" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient3604-7" - inkscape:collect="always"> - <stop - id="stop3606-8" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop3608-98" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <filter - id="filter3600-3" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3602-1" - stdDeviation="0.47186117" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-80" - id="radialGradient3388-54" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-322.72327" - cy="85.487053" - fx="-322.72327" - fy="85.487053" - r="18.133474" /> - <linearGradient - id="linearGradient5237-80" - inkscape:collect="always"> - <stop - id="stop5239-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.62162162" /> - <stop - id="stop5241-7" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <filter - height="1.2339463" - y="-0.11697313" - width="1.0979174" - x="-0.048958682" - id="filter5257-87" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5259-8" - stdDeviation="0.71942638" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-80" - id="radialGradient3390-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-317.63007" - cy="84.673492" - fx="-317.63007" - fy="84.673492" - r="18.133474" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5352-9" - id="linearGradient3392-6-12" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-377.3601,-71.225397)" - x1="-115.51489" - y1="-53.597103" - x2="-115.51489" - y2="-33.89423" /> - <linearGradient - id="linearGradient5352-9" - inkscape:collect="always"> - <stop - id="stop5354-65" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5356-2" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5267-2" - id="linearGradient3394-8-3" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-190.3601,-184.7254)" - x1="-296.75015" - y1="119.76865" - x2="-296.75015" - y2="92.064072" /> - <linearGradient - id="linearGradient5267-2" - inkscape:collect="always"> - <stop - id="stop5269-6" - offset="0" - style="stop-color:#050505;stop-opacity:1;" /> - <stop - id="stop5271-95" - offset="1" - style="stop-color:#050505;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-7" - id="linearGradient3396-3" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5406-14" - id="radialGradient3398-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" - cx="-107.83378" - cy="-43.067612" - fx="-107.83378" - fy="-43.067612" - r="12.374368" /> - <linearGradient - id="linearGradient5406-14" - inkscape:collect="always"> - <stop - id="stop5408-49" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5410-5" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <filter - height="1.9108608" - y="-0.45543039" - width="1.2504867" - x="-0.12524337" - id="filter5402-4" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5404-2" - stdDeviation="1.2915062" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-9" - id="radialGradient3400-99" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" - cx="-195.32214" - cy="133.89294" - fx="-195.32214" - fy="133.89294" - r="48.968639" /> - <linearGradient - id="linearGradient3653-4-9" - inkscape:collect="always"> - <stop - id="stop3655-70" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3657-0" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <filter - id="filter3649-6" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3651-09" - stdDeviation="0.53709441" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-9" - id="radialGradient3402-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" - cx="-195.32211" - cy="144.36551" - fx="-195.32211" - fy="144.36551" - r="48.968639" /> - <mask - id="mask5641-70" - maskUnits="userSpaceOnUse"> - <rect - y="-108.19437" - x="-548.99231" - height="26.352942" - width="100.99232" - id="rect5643-96" - style="fill:url(#radialGradient5645-8);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - r="50.496159" - fy="-97.979721" - fx="-498.49612" - cy="-97.979721" - cx="-498.49612" - gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" - gradientUnits="userSpaceOnUse" - id="radialGradient5645-8" - xlink:href="#linearGradient5631-3-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5631-3-7"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5633-1" /> - <stop - id="stop5639-29" - offset="0.30253538" - style="stop-color:#ffffff;stop-opacity:0.86666667;" /> - <stop - id="stop5637-9" - offset="0.70000011" - style="stop-color:#ffffff;stop-opacity:0.50980392;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5635-34" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5522-7" - id="radialGradient3404-20" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" - cx="-75.703278" - cy="119.10338" - fx="-75.703278" - fy="119.10338" - r="50.125" /> - <linearGradient - id="linearGradient5522-7"> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="0" - id="stop5524-96" /> - <stop - id="stop5526-6" - offset="0.52602422" - style="stop-color:#000000;stop-opacity:0.21428572;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop5528-6" /> - </linearGradient> - <filter - id="filter5178-0" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5180-0" - stdDeviation="0.42032926" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5114-19" - id="radialGradient3406-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" - cx="-75.711166" - cy="113.45824" - fx="-75.514481" - fy="99.224663" - r="50.125" /> - <linearGradient - id="linearGradient5114-19"> - <stop - id="stop5116-5" - offset="0" - style="stop-color:#000000;stop-opacity:0;" /> - <stop - style="stop-color:#000000;stop-opacity:0.21428572;" - offset="0.5" - id="stop5182-31" /> - <stop - id="stop5118-1" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5566-1" - id="linearGradient3408-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - x1="-190.20325" - y1="77.351906" - x2="-190.20325" - y2="102.10035" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5566-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5568-8" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5570-2" /> - </linearGradient> - <linearGradient - y2="15.411574" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10845-3" - xlink:href="#linearGradient7365-3" - inkscape:collect="always" /> - <radialGradient - r="94" - fy="-192.92754" - fx="-122.25" - cy="-192.92754" - cx="-122.25" - gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" - gradientUnits="userSpaceOnUse" - id="radialGradient10842-0" - xlink:href="#linearGradient3393-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3393-9"> - <stop - id="stop3395-27" - offset="0" - style="stop-color:#efefef;stop-opacity:1" /> - <stop - id="stop3397-26" - offset="1" - style="stop-color:#b8b8b8;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-228.88507" - x2="-100" - y1="-106.62158" - x1="-100" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10839-81" - xlink:href="#linearGradient3385-7-14" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3385-7-14"> - <stop - id="stop3387-5" - offset="0" - style="stop-color:#d6d6d6;stop-opacity:1;" /> - <stop - id="stop3389-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-208.05618" - x2="-80" - y1="-67.985718" - x1="-80" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10836-16" - xlink:href="#linearGradient3259-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3259-7"> - <stop - id="stop3261-73" - offset="0" - style="stop-color:#1f1f1f;stop-opacity:1;" /> - <stop - id="stop3263-99" - offset="1" - style="stop-color:#424242;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-275.16071" - x2="-127.61703" - y1="-310.29703" - x1="-127.61703" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" - gradientUnits="userSpaceOnUse" - id="linearGradient10833-0" - xlink:href="#linearGradient3303-2-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3303-2-2" - inkscape:collect="always"> - <stop - id="stop3305-5-956" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3307-4-29" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-166.52031" - fx="-120.37437" - cy="-150.6152" - cx="-120" - gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" - gradientUnits="userSpaceOnUse" - id="radialGradient10830-1" - xlink:href="#linearGradient3273-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3273-3" - inkscape:collect="always"> - <stop - id="stop3275-74" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3277-7" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-109.7959" - fx="-120" - cy="-109.7959" - cx="-120" - gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" - gradientUnits="userSpaceOnUse" - id="radialGradient10827-9" - xlink:href="#linearGradient3273-3" - inkscape:collect="always" /> - <linearGradient - y2="-124.49196" - x2="-11.793251" - y1="-0.17180708" - x1="-11.793251" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10823-5" - xlink:href="#linearGradient3427-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3427-1" - inkscape:collect="always"> - <stop - id="stop3429-8" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3431-7" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-158.88614" - x2="-90.485931" - y1="-60.000008" - x1="-132.38875" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10820-9" - xlink:href="#XMLID_18_-6" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="XMLID_18_-6"> - <stop - id="stop3354-0" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop3364-0" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <radialGradient - r="76" - fy="-120.68829" - fx="-526.78827" - cy="-120.68829" - cx="-526.78827" - gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" - gradientUnits="userSpaceOnUse" - id="radialGradient10817-27" - xlink:href="#XMLID_18_-6" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="linearGradient8333-1"> - <stop - id="stop8335-3" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop8337-4" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - y2="-141.69821" - x2="-474.70587" - y1="-349.57544" - x1="-519.00256" - gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" - gradientUnits="userSpaceOnUse" - id="linearGradient10814-02" - xlink:href="#linearGradient4376-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4376-9" - inkscape:collect="always"> - <stop - id="stop4378-1" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4380-2" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient11001-9" - xlink:href="#linearGradient4429-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4429-3"> - <stop - style="stop-color:#fff1c0;stop-opacity:1;" - offset="0" - id="stop4431-3" /> - <stop - style="stop-color:#fff1c0;stop-opacity:0;" - offset="1" - id="stop4433-71" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient10999-5" - xlink:href="#linearGradient4441-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4441-6"> - <stop - id="stop4443-5" - offset="0" - style="stop-color:#dbfaff;stop-opacity:1;" /> - <stop - id="stop4445-9" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient8482-59" - xlink:href="#linearGradient4441-6" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-6" - id="radialGradient14192" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-4" - id="radialGradient14194" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-6" - id="radialGradient14202" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8202529,2.7584451e-7,-3.4561228e-7,0.07057628,821.43741,-19.640871)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-4" - id="radialGradient14206" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8202529,2.7584451e-7,-3.4561228e-7,0.07057628,821.43741,-19.640871)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - r="20.631315" - fy="138.73308" - fx="71.368683" - cy="138.73308" - cx="71.368683" - gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" - gradientUnits="userSpaceOnUse" - id="radialGradient11107-9-6" - xlink:href="#linearGradient3802-8-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3802-8-4"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3804-2-6" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3806-3-1" /> - </linearGradient> - <linearGradient - y2="122.43194" - x2="91.105286" - y1="122.43194" - x1="50.458698" - gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10996-4-5" - xlink:href="#linearGradient4029-4-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4029-4-4"> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="0" - id="stop4031-9-3" /> - <stop - id="stop4033-5-1" - offset="0.5" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="1" - id="stop4035-4-2" /> - </linearGradient> - <linearGradient - y2="124.48643" - x2="93.409775" - y1="124.48643" - x1="50.394154" - gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10993-9-8" - xlink:href="#linearGradient3149-4-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3149-4-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3151-8-0" /> - <stop - id="stop3157-6-6" - offset="0.34797296" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.65930116" - id="stop4061-9-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3153-4-1" /> - </linearGradient> - <linearGradient - y2="477.52972" - x2="742.16382" - y1="477.52972" - x1="555.14642" - gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990-7-2" - xlink:href="#linearGradient3611-2-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3611-2-8"> - <stop - id="stop3613-1-4" - offset="0" - style="stop-color:#818584;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.5" - id="stop3615-6-0" /> - <stop - id="stop3617-5-2" - offset="1" - style="stop-color:#818584;stop-opacity:1;" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="406.23959" - fx="648.6554" - cy="390.69016" - cx="648.65527" - gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" - gradientUnits="userSpaceOnUse" - id="radialGradient10987-3-0" - xlink:href="#linearGradient3166-4-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3166-4-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168-9-1" /> - <stop - id="stop3518-9-5" - offset="0.5990991" - style="stop-color:#ffffff;stop-opacity:0.82206404;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3170-1-0" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="639.22247" - fx="648.65515" - cy="639.22247" - cx="648.65515" - gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" - gradientUnits="userSpaceOnUse" - id="radialGradient10984-2-7" - xlink:href="#linearGradient3176-9-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3176-9-9"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3178-5-7-2" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop3180-1-6" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient10981-8-7" - xlink:href="#linearGradient3722-5-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3722-5-8"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3724-5-5" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop3726-3-8" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient14359" - xlink:href="#linearGradient3722-5-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient14361"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop14363" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop14365" /> - </linearGradient> - <radialGradient - r="7.9898205" - fy="76.438904" - fx="55.989819" - cy="76.438904" - cx="55.989819" - gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" - gradientUnits="userSpaceOnUse" - id="radialGradient10977-2-0" - xlink:href="#linearGradient3872-5-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3872-5-0"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3874-8-5" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3876-7-4" /> - </linearGradient> - <linearGradient - y2="110.8287" - x2="73.38102" - y1="150.87357" - x1="73.38102" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10974-6-3" - xlink:href="#linearGradient3176-9-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient14372"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop14374" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop14376" /> - </linearGradient> - <radialGradient - r="20.5" - fy="116" - fx="72" - cy="116" - cx="72" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - gradientUnits="userSpaceOnUse" - id="radialGradient11105-5-7" - xlink:href="#linearGradient4949-3-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4949-3-7"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4951-7-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4953-9-2" /> - </linearGradient> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientTransform="translate(1,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11103-0-9" - xlink:href="#linearGradient6064-7-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient6064-7-0"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6066-3-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6068-2-8" /> - </linearGradient> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientUnits="userSpaceOnUse" - id="linearGradient11101-9-0" - xlink:href="#linearGradient6064-7-0" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-5-3" - id="radialGradient14196-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3978-5-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3980-8-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3982-5-2" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-5-3" - id="radialGradient14405" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - y2="15.908398" - x2="72.281242" - y1="58" - x1="70.316795" - gradientTransform="translate(102.53048,-57.275649)" - gradientUnits="userSpaceOnUse" - id="linearGradient11095-8-3" - xlink:href="#linearGradient7136-3-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7136-3-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7138-4-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7140-5-7" /> - </linearGradient> - <mask - maskUnits="userSpaceOnUse" - id="mask7160-6-0"> - <path - inkscape:connector-curvature="0" - id="path7162-5-0" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="fill:url(#radialGradient7164-2-5);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient7150-1-5" - id="radialGradient7164-2-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" - cx="162.46797" - cy="-0.23275588" - fx="162.46797" - fy="-0.23275588" - r="25.9375" /> - <linearGradient - id="linearGradient7150-1-5"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop7152-8-0" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop7154-5-5" /> - </linearGradient> - <linearGradient - gradientTransform="translate(2,927.73011)" - y2="18.691383" - x2="16.357016" - y1="92" - x1="36" - gradientUnits="userSpaceOnUse" - id="linearGradient10953-6-5" - xlink:href="#linearGradient4409-4-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4409-4-7"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4411-3-8" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4413-2-5" /> - </linearGradient> - <linearGradient - y2="7.7186575" - x2="55.058228" - y1="-0.85672575" - x1="55.058228" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10950-7-9" - xlink:href="#linearGradient7354-9-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7354-9-5"> - <stop - style="stop-color:#929595;stop-opacity:1;" - offset="0" - id="stop7356-1-4" /> - <stop - style="stop-color:#929595;stop-opacity:0;" - offset="1" - id="stop7358-8-3" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" - gradientUnits="userSpaceOnUse" - id="linearGradient10947-9-7" - xlink:href="#linearGradient7394-5-3" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7394-5-3"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7396-6-6" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7398-9-1" /> - </linearGradient> - <radialGradient - r="42.727272" - fy="44.909092" - fx="52.18182" - cy="44.909092" - cx="52.18182" - spreadMethod="reflect" - gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" - gradientUnits="userSpaceOnUse" - id="radialGradient11011-4-3" - xlink:href="#linearGradient3065-9-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3065-9-0"> - <stop - id="stop3067-5-2-1" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3073-0-3" /> - <stop - id="stop3069-6-0" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11013-4-6" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3167-3-0" - inkscape:collect="always"> - <stop - id="stop3169-4-3" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3171-1-4" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11015-4-7" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11017-5-9" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11019-7-8" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11021-1-0" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11023-0-4" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11025-7-9" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11027-9-7" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11029-5-3" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11031-0-9" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11033-2-4" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11035-2-0" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11037-2-7" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11039-1-3" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11041-3-7" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11043-6-3" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11045-0-8" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11047-4-5" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11049-3-9" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11051-8-6" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11053-4-8" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11055-6-4" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11057-2-8" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11059-0-1" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11061-5-5" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11063-6-1" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11065-3-6" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11067-1-7" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11069-3-9" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11071-6-8" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11073-7-2" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11075-6-5" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11077-2-8" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11079-2-3" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11081-4-3" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083-5-8" - xlink:href="#linearGradient3167-3-0" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11085-5-7" - xlink:href="#linearGradient3088-1-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3088-1-2"> - <stop - id="stop3090-4-5-8" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop3098-2-1" /> - <stop - id="stop3092-3-1" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11087-9-2" - xlink:href="#linearGradient3088-1-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient14713"> - <stop - id="stop14715" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop14717" /> - <stop - id="stop14719" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="47.937988" - fy="111.93269" - fx="69.801033" - cy="88.499367" - cx="60.097603" - gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" - gradientUnits="userSpaceOnUse" - id="radialGradient11089-4-3" - xlink:href="#linearGradient3954-7-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3954-7-0"> - <stop - style="stop-color:#b3b3b3;stop-opacity:1;" - offset="0" - id="stop3956-0-8" /> - <stop - id="stop3962-9-1" - offset="0.52879584" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#c5c5c5;stop-opacity:1;" - offset="1" - id="stop3958-3-6" /> - </linearGradient> - <linearGradient - y2="32.457832" - x2="76.596703" - y1="148.57518" - x1="17.723173" - gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" - gradientUnits="userSpaceOnUse" - id="linearGradient11091-2-8" - xlink:href="#linearGradient4860-4-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4860-4-8"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4862-7-5" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4864-0-5" /> - </linearGradient> - <radialGradient - r="50.234375" - fy="8.0446291" - fx="43.034355" - cy="42.699898" - cx="43.620941" - gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" - gradientUnits="userSpaceOnUse" - id="radialGradient11093-0-6" - xlink:href="#linearGradient4875-3-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4875-3-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4877-5-5" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4879-0-0" /> - </linearGradient> - <radialGradient - r="17.67767" - fy="55.875111" - fx="176.77669" - cy="65.774605" - cx="177.4838" - gradientUnits="userSpaceOnUse" - id="radialGradient11009-5-8" - xlink:href="#linearGradient7290-1-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7290-1-6"> - <stop - id="stop7292-6-5" - offset="0" - style="stop-color:#dddddd;stop-opacity:1;" /> - <stop - id="stop7294-4-7" - offset="1" - style="stop-color:#a7a7a7;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" - gradientUnits="userSpaceOnUse" - id="linearGradient10892-0-8" - xlink:href="#linearGradient7394-5-3" - inkscape:collect="always" /> - <linearGradient - y2="15.75" - x2="71.75" - y1="112.25" - x1="71.75" - gradientTransform="translate(-12,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11007-3-1" - xlink:href="#linearGradient3586-6-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3586-6-5"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3588-5-4" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3590-9-6" /> - </linearGradient> - <linearGradient - y2="116.8996" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10888-2-9" - xlink:href="#linearGradient7365-9-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7365-9-5"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7367-2-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7369-5-2" /> - </linearGradient> - <linearGradient - y2="60.866104" - x2="73.467186" - y1="60.866104" - x1="72.201843" - gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" - gradientUnits="userSpaceOnUse" - id="linearGradient10883-0-8" - xlink:href="#linearGradient3576-8-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3576-8-0"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3578-2-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3580-2-8" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" - gradientUnits="userSpaceOnUse" - id="radialGradient10880-7-3" - xlink:href="#linearGradient3399-1-8-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3399-1-8-1"> - <stop - style="stop-color:#00a8ba;stop-opacity:1;" - offset="0" - id="stop3401-5-6" /> - <stop - style="stop-color:#00a8ba;stop-opacity:0;" - offset="1" - id="stop3403-3-1" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" - gradientUnits="userSpaceOnUse" - id="radialGradient11005-5-6" - xlink:href="#linearGradient3399-1-8-1" - inkscape:collect="always" /> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" - gradientUnits="userSpaceOnUse" - id="radialGradient10876-0-7" - xlink:href="#linearGradient3483-4-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3483-4-8"> - <stop - id="stop3485-6-1" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop3487-2-6" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.82944" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" - gradientUnits="userSpaceOnUse" - id="radialGradient11003-8-6" - xlink:href="#linearGradient3483-4-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient14779"> - <stop - id="stop14781" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop14783" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="26.75" - fy="-16.181448" - fx="60" - cy="-16.181448" - cx="60" - gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" - gradientUnits="userSpaceOnUse" - id="radialGradient10871-6-4" - xlink:href="#linearGradient7365-9-5" - inkscape:collect="always" /> - <linearGradient - y2="24.713068" - x2="60.428722" - y1="22.930367" - x1="60.428722" - gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" - gradientUnits="userSpaceOnUse" - id="linearGradient10867-7-9" - xlink:href="#linearGradient4878-5-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4878-5-4"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4880-1-5" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4882-6-6" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5549-4-9-7" - id="linearGradient3381-7-4-2" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-302.8601,-193.7254)" - x1="-190.99445" - y1="75.382088" - x2="-190.99445" - y2="118.72548" /> - <linearGradient - id="linearGradient5549-4-9-7"> - <stop - style="stop-color:#cacaca;stop-opacity:1" - offset="0" - id="stop5551-6-8" /> - <stop - id="stop5553-1-5" - offset="0.61419845" - style="stop-color:#ebebeb;stop-opacity:1;" /> - <stop - style="stop-color:#cbcbcb;stop-opacity:1;" - offset="1" - id="stop5555-9-7" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5227-4-0" - id="radialGradient3383-8-4-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" - cx="-307.625" - cy="70.359375" - fx="-320.35294" - fy="87.258614" - r="50.125" /> - <linearGradient - id="linearGradient5227-4-0" - inkscape:collect="always"> - <stop - id="stop5229-1-7" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5231-4-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-8-5" - id="linearGradient3386-4-3" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient3604-8-5" - inkscape:collect="always"> - <stop - id="stop3606-9-4" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop3608-9-9" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-2-9" - id="radialGradient3388-1-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-322.72327" - cy="85.487053" - fx="-322.72327" - fy="85.487053" - r="18.133474" /> - <linearGradient - id="linearGradient5237-2-9" - inkscape:collect="always"> - <stop - id="stop5239-3-7" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.62162162" /> - <stop - id="stop5241-3-6" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-2-9" - id="radialGradient3390-0-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-317.63007" - cy="84.673492" - fx="-317.63007" - fy="84.673492" - r="18.133474" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5352-4-8" - id="linearGradient3392-6-1-0" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-377.3601,-71.225397)" - x1="-115.51489" - y1="-53.597103" - x2="-115.51489" - y2="-33.89423" /> - <linearGradient - id="linearGradient5352-4-8" - inkscape:collect="always"> - <stop - id="stop5354-5-7" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5356-4-7" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5267-8-7" - id="linearGradient3394-8-0-4" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-190.3601,-184.7254)" - x1="-296.75015" - y1="119.76865" - x2="-296.75015" - y2="92.064072" /> - <linearGradient - id="linearGradient5267-8-7" - inkscape:collect="always"> - <stop - id="stop5269-7-0" - offset="0" - style="stop-color:#050505;stop-opacity:1;" /> - <stop - id="stop5271-0-8" - offset="1" - style="stop-color:#050505;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-8-5" - id="linearGradient3396-0-9" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5406-1-5" - id="radialGradient3398-1-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" - cx="-107.83378" - cy="-43.067612" - fx="-107.83378" - fy="-43.067612" - r="12.374368" /> - <linearGradient - id="linearGradient5406-1-5" - inkscape:collect="always"> - <stop - id="stop5408-7-0" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5410-3-0" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-3-3" - id="radialGradient3400-9-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" - cx="-195.32214" - cy="133.89294" - fx="-195.32214" - fy="133.89294" - r="48.968639" /> - <linearGradient - id="linearGradient3653-4-3-3" - inkscape:collect="always"> - <stop - id="stop3655-7-2" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3657-3-5" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-3-3" - id="radialGradient3402-4-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" - cx="-195.32211" - cy="144.36551" - fx="-195.32211" - fy="144.36551" - r="48.968639" /> - <mask - id="mask5641-0-7" - maskUnits="userSpaceOnUse"> - <rect - y="-108.19437" - x="-548.99231" - height="26.352942" - width="100.99232" - id="rect5643-2-4" - style="fill:url(#radialGradient5645-7-6);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - r="50.496159" - fy="-97.979721" - fx="-498.49612" - cy="-97.979721" - cx="-498.49612" - gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" - gradientUnits="userSpaceOnUse" - id="radialGradient5645-7-6" - xlink:href="#linearGradient5631-3-2-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5631-3-2-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5633-5-2" /> - <stop - id="stop5639-2-3" - offset="0.30253538" - style="stop-color:#ffffff;stop-opacity:0.86666667;" /> - <stop - id="stop5637-7-5" - offset="0.70000011" - style="stop-color:#ffffff;stop-opacity:0.50980392;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5635-3-3" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5522-8-7" - id="radialGradient3404-2-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" - cx="-75.703278" - cy="119.10338" - fx="-75.703278" - fy="119.10338" - r="50.125" /> - <linearGradient - id="linearGradient5522-8-7"> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="0" - id="stop5524-9-2" /> - <stop - id="stop5526-9-4" - offset="0.52602422" - style="stop-color:#000000;stop-opacity:0.21428572;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop5528-2-6" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5114-1-6" - id="radialGradient3406-9-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" - cx="-75.711166" - cy="113.45824" - fx="-75.514481" - fy="99.224663" - r="50.125" /> - <linearGradient - id="linearGradient5114-1-6"> - <stop - id="stop5116-0-3" - offset="0" - style="stop-color:#000000;stop-opacity:0;" /> - <stop - style="stop-color:#000000;stop-opacity:0.21428572;" - offset="0.5" - id="stop5182-3-1" /> - <stop - id="stop5118-2-3" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5566-6-3" - id="linearGradient3408-7-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - x1="-190.20325" - y1="77.351906" - x2="-190.20325" - y2="102.10035" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5566-6-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5568-4-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5570-0-4" /> - </linearGradient> - <linearGradient - y2="15.411574" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10845-7-7" - xlink:href="#linearGradient7365-9-5" - inkscape:collect="always" /> - <radialGradient - r="94" - fy="-192.92754" - fx="-122.25" - cy="-192.92754" - cx="-122.25" - gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" - gradientUnits="userSpaceOnUse" - id="radialGradient10842-8-0" - xlink:href="#linearGradient3393-0-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3393-0-8"> - <stop - id="stop3395-2-4" - offset="0" - style="stop-color:#efefef;stop-opacity:1" /> - <stop - id="stop3397-0-1" - offset="1" - style="stop-color:#b8b8b8;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-228.88507" - x2="-100" - y1="-106.62158" - x1="-100" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10839-9-6" - xlink:href="#linearGradient3385-7-8-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3385-7-8-0"> - <stop - id="stop3387-0-8" - offset="0" - style="stop-color:#d6d6d6;stop-opacity:1;" /> - <stop - id="stop3389-3-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-208.05618" - x2="-80" - y1="-67.985718" - x1="-80" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10836-7-7" - xlink:href="#linearGradient3259-4-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3259-4-9"> - <stop - id="stop3261-0-5" - offset="0" - style="stop-color:#1f1f1f;stop-opacity:1;" /> - <stop - id="stop3263-9-2" - offset="1" - style="stop-color:#424242;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-275.16071" - x2="-127.61703" - y1="-310.29703" - x1="-127.61703" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" - gradientUnits="userSpaceOnUse" - id="linearGradient10833-1-4" - xlink:href="#linearGradient3303-2-3-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3303-2-3-8" - inkscape:collect="always"> - <stop - id="stop3305-5-3-7" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3307-4-9-3" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-166.52031" - fx="-120.37437" - cy="-150.6152" - cx="-120" - gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" - gradientUnits="userSpaceOnUse" - id="radialGradient10830-3-2" - xlink:href="#linearGradient3273-2-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3273-2-2" - inkscape:collect="always"> - <stop - id="stop3275-4-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3277-4-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-109.7959" - fx="-120" - cy="-109.7959" - cx="-120" - gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" - gradientUnits="userSpaceOnUse" - id="radialGradient10827-2-6" - xlink:href="#linearGradient3273-2-2" - inkscape:collect="always" /> - <linearGradient - y2="-124.49196" - x2="-11.793251" - y1="-0.17180708" - x1="-11.793251" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10823-3-8" - xlink:href="#linearGradient3427-6-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3427-6-7" - inkscape:collect="always"> - <stop - id="stop3429-2-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3431-8-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-158.88614" - x2="-90.485931" - y1="-60.000008" - x1="-132.38875" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10820-0-1" - xlink:href="#XMLID_18_-9-3" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="XMLID_18_-9-3"> - <stop - id="stop3354-6-5" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop3364-5-0" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <radialGradient - r="76" - fy="-120.68829" - fx="-526.78827" - cy="-120.68829" - cx="-526.78827" - gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" - gradientUnits="userSpaceOnUse" - id="radialGradient10817-1-9" - xlink:href="#XMLID_18_-9-3" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="linearGradient14951"> - <stop - id="stop14953" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop14955" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - y2="-141.69821" - x2="-474.70587" - y1="-349.57544" - x1="-519.00256" - gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" - gradientUnits="userSpaceOnUse" - id="linearGradient10814-3-4" - xlink:href="#linearGradient4376-3-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4376-3-3" - inkscape:collect="always"> - <stop - id="stop4378-3-7" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4380-7-9" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient11001-5-4" - xlink:href="#linearGradient4429-4-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4429-4-5"> - <stop - style="stop-color:#fff1c0;stop-opacity:1;" - offset="0" - id="stop4431-7-9" /> - <stop - style="stop-color:#fff1c0;stop-opacity:0;" - offset="1" - id="stop4433-7-4" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient8482-6" - xlink:href="#linearGradient4441-4-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4441-4-8"> - <stop - id="stop4443-1-4" - offset="0" - style="stop-color:#dbfaff;stop-opacity:1;" /> - <stop - id="stop4445-7-3" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="20.631315" - fy="138.73308" - fx="71.368683" - cy="138.73308" - cx="71.368683" - gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" - gradientUnits="userSpaceOnUse" - id="radialGradient11107-0" - xlink:href="#linearGradient3802-04" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3802-04"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3804-0" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3806-4" /> - </linearGradient> - <linearGradient - y2="122.43194" - x2="91.105286" - y1="122.43194" - x1="50.458698" - gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10996-9" - xlink:href="#linearGradient4029-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4029-8"> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="0" - id="stop4031-3" /> - <stop - id="stop4033-99" - offset="0.5" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="1" - id="stop4035-52" /> - </linearGradient> - <linearGradient - y2="124.48643" - x2="93.409775" - y1="124.48643" - x1="50.394154" - gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10993-42" - xlink:href="#linearGradient3149-43" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3149-43"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3151-6" /> - <stop - id="stop3157-7" - offset="0.34797296" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.65930116" - id="stop4061-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3153-5" /> - </linearGradient> - <linearGradient - y2="477.52972" - x2="742.16382" - y1="477.52972" - x1="555.14642" - gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990-38" - xlink:href="#linearGradient3611-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3611-7"> - <stop - id="stop3613-8" - offset="0" - style="stop-color:#818584;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.5" - id="stop3615-65" /> - <stop - id="stop3617-40" - offset="1" - style="stop-color:#818584;stop-opacity:1;" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="406.23959" - fx="648.6554" - cy="390.69016" - cx="648.65527" - gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" - gradientUnits="userSpaceOnUse" - id="radialGradient10987-8" - xlink:href="#linearGradient3166-468" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3166-468"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168-0" /> - <stop - id="stop3518-4" - offset="0.5990991" - style="stop-color:#ffffff;stop-opacity:0.82206404;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3170-26" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="639.22247" - fx="648.65515" - cy="639.22247" - cx="648.65515" - gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" - gradientUnits="userSpaceOnUse" - id="radialGradient10984-62" - xlink:href="#linearGradient3176-15" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3176-15"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3178-5-1" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop3180-8" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient10981-9" - xlink:href="#linearGradient3722-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3722-6"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3724-0" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop3726-31" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient15004" - xlink:href="#linearGradient3722-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient15006"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop15008" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop15010" /> - </linearGradient> - <radialGradient - r="7.9898205" - fy="76.438904" - fx="55.989819" - cy="76.438904" - cx="55.989819" - gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" - gradientUnits="userSpaceOnUse" - id="radialGradient10977-73" - xlink:href="#linearGradient3872-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3872-4"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3874-4" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3876-6" /> - </linearGradient> - <linearGradient - y2="110.8287" - x2="73.38102" - y1="150.87357" - x1="73.38102" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10974-21" - xlink:href="#linearGradient3176-15" - inkscape:collect="always" /> - <linearGradient - id="linearGradient15017"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop15019" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop15021" /> - </linearGradient> - <radialGradient - r="20.5" - fy="116" - fx="72" - cy="116" - cx="72" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - gradientUnits="userSpaceOnUse" - id="radialGradient11105-6" - xlink:href="#linearGradient4949-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4949-8"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4951-9" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4953-2" /> - </linearGradient> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientTransform="translate(1,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11103-7" - xlink:href="#linearGradient6064-67" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient6064-67"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6066-9" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6068-39" /> - </linearGradient> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientUnits="userSpaceOnUse" - id="linearGradient11101-6" - xlink:href="#linearGradient6064-67" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-7" - id="radialGradient14198-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3978-7"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3980-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3982-0" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-7" - id="radialGradient15050" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - y2="15.908398" - x2="72.281242" - y1="58" - x1="70.316795" - gradientTransform="translate(102.53048,-57.275649)" - gradientUnits="userSpaceOnUse" - id="linearGradient11095-0" - xlink:href="#linearGradient7136-0" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7136-0"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7138-2" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7140-95" /> - </linearGradient> - <mask - maskUnits="userSpaceOnUse" - id="mask7160-85"> - <path - inkscape:connector-curvature="0" - id="path7162-4" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="fill:url(#radialGradient7164-29);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient7150-2" - id="radialGradient7164-29" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" - cx="162.46797" - cy="-0.23275588" - fx="162.46797" - fy="-0.23275588" - r="25.9375" /> - <linearGradient - id="linearGradient7150-2"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop7152-08" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop7154-53" /> - </linearGradient> - <linearGradient - gradientTransform="translate(2,927.73011)" - y2="18.691383" - x2="16.357016" - y1="92" - x1="36" - gradientUnits="userSpaceOnUse" - id="linearGradient10953-1" - xlink:href="#linearGradient4409-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4409-5"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4411-0" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4413-23" /> - </linearGradient> - <linearGradient - y2="7.7186575" - x2="55.058228" - y1="-0.85672575" - x1="55.058228" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10950-0" - xlink:href="#linearGradient7354-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7354-7"> - <stop - style="stop-color:#929595;stop-opacity:1;" - offset="0" - id="stop7356-3" /> - <stop - style="stop-color:#929595;stop-opacity:0;" - offset="1" - id="stop7358-31" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" - gradientUnits="userSpaceOnUse" - id="linearGradient10947-2" - xlink:href="#linearGradient7394-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7394-8"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7396-9" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7398-8" /> - </linearGradient> - <radialGradient - r="42.727272" - fy="44.909092" - fx="52.18182" - cy="44.909092" - cx="52.18182" - spreadMethod="reflect" - gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" - gradientUnits="userSpaceOnUse" - id="radialGradient11011-7" - xlink:href="#linearGradient3065-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3065-7"> - <stop - id="stop3067-5-37" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3073-28" /> - <stop - id="stop3069-66" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11013-0" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3167-4" - inkscape:collect="always"> - <stop - id="stop3169-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3171-63" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11015-2" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11017-45" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11019-6" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11021-7" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11023-18" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11025-0" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11027-8" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11029-1" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11031-5" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11033-1" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11035-6" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11037-3" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11039-0" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11041-4" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11043-0" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11045-3" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11047-3" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11049-7" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11051-9" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11053-2" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11055-9" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11057-7" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11059-07" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11061-9" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11063-66" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11065-6" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11067-91" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11069-2" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11071-4" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11073-79" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11075-7" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11077-7" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11079-1" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11081-6" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083-96" - xlink:href="#linearGradient3167-4" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11085-9" - xlink:href="#linearGradient3088-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3088-5"> - <stop - id="stop3090-4-2" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop3098-21" /> - <stop - id="stop3092-25" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11087-6" - xlink:href="#linearGradient3088-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient15358"> - <stop - id="stop15360" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop15362" /> - <stop - id="stop15364" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="47.937988" - fy="111.93269" - fx="69.801033" - cy="88.499367" - cx="60.097603" - gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" - gradientUnits="userSpaceOnUse" - id="radialGradient11089-9" - xlink:href="#linearGradient3954-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3954-6"> - <stop - style="stop-color:#b3b3b3;stop-opacity:1;" - offset="0" - id="stop3956-00" /> - <stop - id="stop3962-40" - offset="0.52879584" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#c5c5c5;stop-opacity:1;" - offset="1" - id="stop3958-7" /> - </linearGradient> - <linearGradient - y2="32.457832" - x2="76.596703" - y1="148.57518" - x1="17.723173" - gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" - gradientUnits="userSpaceOnUse" - id="linearGradient11091-3" - xlink:href="#linearGradient4860-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4860-8"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4862-5" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4864-1" /> - </linearGradient> - <radialGradient - r="50.234375" - fy="8.0446291" - fx="43.034355" - cy="42.699898" - cx="43.620941" - gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" - gradientUnits="userSpaceOnUse" - id="radialGradient11093-9" - xlink:href="#linearGradient4875-8" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4875-8"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4877-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4879-5" /> - </linearGradient> - <radialGradient - r="17.67767" - fy="55.875111" - fx="176.77669" - cy="65.774605" - cx="177.4838" - gradientUnits="userSpaceOnUse" - id="radialGradient11009-2" - xlink:href="#linearGradient7290-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7290-3"> - <stop - id="stop7292-68" - offset="0" - style="stop-color:#dddddd;stop-opacity:1;" /> - <stop - id="stop7294-45" - offset="1" - style="stop-color:#a7a7a7;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" - gradientUnits="userSpaceOnUse" - id="linearGradient10892-01" - xlink:href="#linearGradient7394-8" - inkscape:collect="always" /> - <linearGradient - y2="15.75" - x2="71.75" - y1="112.25" - x1="71.75" - gradientTransform="translate(-12,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11007-72" - xlink:href="#linearGradient3586-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3586-4"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3588-17" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3590-20" /> - </linearGradient> - <linearGradient - y2="116.8996" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10888-0" - xlink:href="#linearGradient7365-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7365-4"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7367-1" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7369-54" /> - </linearGradient> - <linearGradient - y2="60.866104" - x2="73.467186" - y1="60.866104" - x1="72.201843" - gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" - gradientUnits="userSpaceOnUse" - id="linearGradient10883-6" - xlink:href="#linearGradient3576-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3576-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3578-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3580-5" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" - gradientUnits="userSpaceOnUse" - id="radialGradient10880-2" - xlink:href="#linearGradient3399-1-83" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3399-1-83"> - <stop - style="stop-color:#00a8ba;stop-opacity:1;" - offset="0" - id="stop3401-9" /> - <stop - style="stop-color:#00a8ba;stop-opacity:0;" - offset="1" - id="stop3403-18" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" - gradientUnits="userSpaceOnUse" - id="radialGradient11005-6" - xlink:href="#linearGradient3399-1-83" - inkscape:collect="always" /> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" - gradientUnits="userSpaceOnUse" - id="radialGradient10876-18" - xlink:href="#linearGradient3483-03" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3483-03"> - <stop - id="stop3485-3" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop3487-1" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.82944" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" - gradientUnits="userSpaceOnUse" - id="radialGradient11003-3" - xlink:href="#linearGradient3483-03" - inkscape:collect="always" /> - <linearGradient - id="linearGradient15424"> - <stop - id="stop15426" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop15428" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="26.75" - fy="-16.181448" - fx="60" - cy="-16.181448" - cx="60" - gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" - gradientUnits="userSpaceOnUse" - id="radialGradient10871-9" - xlink:href="#linearGradient7365-4" - inkscape:collect="always" /> - <linearGradient - y2="24.713068" - x2="60.428722" - y1="22.930367" - x1="60.428722" - gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" - gradientUnits="userSpaceOnUse" - id="linearGradient10867-2" - xlink:href="#linearGradient4878-51" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4878-51"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4880-8" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4882-66" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5549-4-05" - id="linearGradient3381-7-1" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-302.8601,-193.7254)" - x1="-190.99445" - y1="75.382088" - x2="-190.99445" - y2="118.72548" /> - <linearGradient - id="linearGradient5549-4-05"> - <stop - style="stop-color:#cacaca;stop-opacity:1" - offset="0" - id="stop5551-69" /> - <stop - id="stop5553-65" - offset="0.61419845" - style="stop-color:#ebebeb;stop-opacity:1;" /> - <stop - style="stop-color:#cbcbcb;stop-opacity:1;" - offset="1" - id="stop5555-7" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5227-0" - id="radialGradient3383-8-72" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" - cx="-307.625" - cy="70.359375" - fx="-320.35294" - fy="87.258614" - r="50.125" /> - <linearGradient - id="linearGradient5227-0" - inkscape:collect="always"> - <stop - id="stop5229-90" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5231-0" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-1" - id="linearGradient3386-45" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient3604-1" - inkscape:collect="always"> - <stop - id="stop3606-7" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop3608-56" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-5" - id="radialGradient3388-19" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-322.72327" - cy="85.487053" - fx="-322.72327" - fy="85.487053" - r="18.133474" /> - <linearGradient - id="linearGradient5237-5" - inkscape:collect="always"> - <stop - id="stop5239-96" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.62162162" /> - <stop - id="stop5241-8" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-5" - id="radialGradient3390-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-317.63007" - cy="84.673492" - fx="-317.63007" - fy="84.673492" - r="18.133474" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5352-5" - id="linearGradient3392-6-7" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-377.3601,-71.225397)" - x1="-115.51489" - y1="-53.597103" - x2="-115.51489" - y2="-33.89423" /> - <linearGradient - id="linearGradient5352-5" - inkscape:collect="always"> - <stop - id="stop5354-0" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5356-45" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5267-25" - id="linearGradient3394-8-81" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-190.3601,-184.7254)" - x1="-296.75015" - y1="119.76865" - x2="-296.75015" - y2="92.064072" /> - <linearGradient - id="linearGradient5267-25" - inkscape:collect="always"> - <stop - id="stop5269-53" - offset="0" - style="stop-color:#050505;stop-opacity:1;" /> - <stop - id="stop5271-6" - offset="1" - style="stop-color:#050505;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-1" - id="linearGradient3396-5" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5406-3" - id="radialGradient3398-53" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" - cx="-107.83378" - cy="-43.067612" - fx="-107.83378" - fy="-43.067612" - r="12.374368" /> - <linearGradient - id="linearGradient5406-3" - inkscape:collect="always"> - <stop - id="stop5408-9" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5410-0" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-90" - id="radialGradient3400-15" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" - cx="-195.32214" - cy="133.89294" - fx="-195.32214" - fy="133.89294" - r="48.968639" /> - <linearGradient - id="linearGradient3653-4-90" - inkscape:collect="always"> - <stop - id="stop3655-2" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3657-8" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-90" - id="radialGradient3402-44" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" - cx="-195.32211" - cy="144.36551" - fx="-195.32211" - fy="144.36551" - r="48.968639" /> - <mask - id="mask5641-64" - maskUnits="userSpaceOnUse"> - <rect - y="-108.19437" - x="-548.99231" - height="26.352942" - width="100.99232" - id="rect5643-98" - style="fill:url(#radialGradient5645-0);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - r="50.496159" - fy="-97.979721" - fx="-498.49612" - cy="-97.979721" - cx="-498.49612" - gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" - gradientUnits="userSpaceOnUse" - id="radialGradient5645-0" - xlink:href="#linearGradient5631-3-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5631-3-4"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5633-61" /> - <stop - id="stop5639-93" - offset="0.30253538" - style="stop-color:#ffffff;stop-opacity:0.86666667;" /> - <stop - id="stop5637-6" - offset="0.70000011" - style="stop-color:#ffffff;stop-opacity:0.50980392;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5635-42" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5522-9" - id="radialGradient3404-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" - cx="-75.703278" - cy="119.10338" - fx="-75.703278" - fy="119.10338" - r="50.125" /> - <linearGradient - id="linearGradient5522-9"> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="0" - id="stop5524-5" /> - <stop - id="stop5526-8" - offset="0.52602422" - style="stop-color:#000000;stop-opacity:0.21428572;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop5528-8" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5114-8" - id="radialGradient3406-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" - cx="-75.711166" - cy="113.45824" - fx="-75.514481" - fy="99.224663" - r="50.125" /> - <linearGradient - id="linearGradient5114-8"> - <stop - id="stop5116-3" - offset="0" - style="stop-color:#000000;stop-opacity:0;" /> - <stop - style="stop-color:#000000;stop-opacity:0.21428572;" - offset="0.5" - id="stop5182-5" /> - <stop - id="stop5118-9" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5566-5" - id="linearGradient3408-6" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - x1="-190.20325" - y1="77.351906" - x2="-190.20325" - y2="102.10035" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5566-5"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5568-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5570-7" /> - </linearGradient> - <linearGradient - y2="15.411574" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10845-21" - xlink:href="#linearGradient7365-4" - inkscape:collect="always" /> - <radialGradient - r="94" - fy="-192.92754" - fx="-122.25" - cy="-192.92754" - cx="-122.25" - gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" - gradientUnits="userSpaceOnUse" - id="radialGradient10842-5" - xlink:href="#linearGradient3393-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3393-6"> - <stop - id="stop3395-1" - offset="0" - style="stop-color:#efefef;stop-opacity:1" /> - <stop - id="stop3397-5" - offset="1" - style="stop-color:#b8b8b8;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-228.88507" - x2="-100" - y1="-106.62158" - x1="-100" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10839-6" - xlink:href="#linearGradient3385-7-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3385-7-7"> - <stop - id="stop3387-1" - offset="0" - style="stop-color:#d6d6d6;stop-opacity:1;" /> - <stop - id="stop3389-9" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-208.05618" - x2="-80" - y1="-67.985718" - x1="-80" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10836-6" - xlink:href="#linearGradient3259-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3259-6"> - <stop - id="stop3261-72" - offset="0" - style="stop-color:#1f1f1f;stop-opacity:1;" /> - <stop - id="stop3263-8" - offset="1" - style="stop-color:#424242;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-275.16071" - x2="-127.61703" - y1="-310.29703" - x1="-127.61703" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" - gradientUnits="userSpaceOnUse" - id="linearGradient10833-02" - xlink:href="#linearGradient3303-2-39" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3303-2-39" - inkscape:collect="always"> - <stop - id="stop3305-5-2" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3307-4-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-166.52031" - fx="-120.37437" - cy="-150.6152" - cx="-120" - gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" - gradientUnits="userSpaceOnUse" - id="radialGradient10830-78" - xlink:href="#linearGradient3273-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3273-9" - inkscape:collect="always"> - <stop - id="stop3275-1" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3277-5" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-109.7959" - fx="-120" - cy="-109.7959" - cx="-120" - gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" - gradientUnits="userSpaceOnUse" - id="radialGradient10827-0" - xlink:href="#linearGradient3273-9" - inkscape:collect="always" /> - <linearGradient - y2="-124.49196" - x2="-11.793251" - y1="-0.17180708" - x1="-11.793251" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10823-9" - xlink:href="#linearGradient3427-10" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3427-10" - inkscape:collect="always"> - <stop - id="stop3429-85" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3431-15" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-158.88614" - x2="-90.485931" - y1="-60.000008" - x1="-132.38875" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10820-1" - xlink:href="#XMLID_18_-40" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="XMLID_18_-40"> - <stop - id="stop3354-9" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop3364-4" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <radialGradient - r="76" - fy="-120.68829" - fx="-526.78827" - cy="-120.68829" - cx="-526.78827" - gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" - gradientUnits="userSpaceOnUse" - id="radialGradient10817-3" - xlink:href="#XMLID_18_-40" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="linearGradient15596"> - <stop - id="stop15598" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop15600" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - y2="-141.69821" - x2="-474.70587" - y1="-349.57544" - x1="-519.00256" - gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" - gradientUnits="userSpaceOnUse" - id="linearGradient10814-029" - xlink:href="#linearGradient4376-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4376-7" - inkscape:collect="always"> - <stop - id="stop4378-5" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4380-0" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient11001-97" - xlink:href="#linearGradient4429-30" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4429-30"> - <stop - style="stop-color:#fff1c0;stop-opacity:1;" - offset="0" - id="stop4431-1" /> - <stop - style="stop-color:#fff1c0;stop-opacity:0;" - offset="1" - id="stop4433-6" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient10999-8" - xlink:href="#linearGradient4441-2" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4441-2"> - <stop - id="stop4443-8" - offset="0" - style="stop-color:#dbfaff;stop-opacity:1;" /> - <stop - id="stop4445-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient15880" - xlink:href="#linearGradient4441-2" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-7" - id="radialGradient18331" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-5-3" - id="radialGradient18333" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-5-3" - id="radialGradient18396" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8202529,2.7584451e-7,-3.4561228e-7,0.07057628,821.43741,-19.640871)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-7" - id="radialGradient18400" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8202529,2.7584451e-7,-3.4561228e-7,0.07057628,821.43741,-19.640871)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - r="20.631315" - fy="138.73308" - fx="71.368683" - cy="138.73308" - cx="71.368683" - gradientTransform="matrix(1,0,0,0.4145347,-12,66.679773)" - gradientUnits="userSpaceOnUse" - id="radialGradient11107-3-7" - xlink:href="#linearGradient3802-5-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3802-5-2"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3804-1-7" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3806-2-1" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.075877823" - width="1.1517557" - y="-0.78272969" - height="2.5654593" - id="filter3872-8-2" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.3045494" - id="feGaussianBlur3874-33-2" /> - </filter> - <linearGradient - y2="122.43194" - x2="91.105286" - y1="122.43194" - x1="50.458698" - gradientTransform="matrix(0.7766365,0,0,0.7590329,-33.91783,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10996-26-9" - xlink:href="#linearGradient4029-1-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4029-1-7"> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="0" - id="stop4031-2-2" /> - <stop - id="stop4033-6-1" - offset="0.5" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#818584;stop-opacity:1;" - offset="1" - id="stop4035-51-9" /> - </linearGradient> - <linearGradient - y2="124.48643" - x2="93.409775" - y1="124.48643" - x1="50.394154" - gradientTransform="matrix(0.6467724,0,0,0.7590329,-24.567619,941.24081)" - gradientUnits="userSpaceOnUse" - id="linearGradient10993-4-9" - xlink:href="#linearGradient3149-3-8" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3149-3-8"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3151-17-7" /> - <stop - id="stop3157-3-4" - offset="0.34797296" - style="stop-color:#ffffff;stop-opacity:0;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0.65930116" - id="stop4061-3-9" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop3153-8-8" /> - </linearGradient> - <linearGradient - y2="477.52972" - x2="742.16382" - y1="477.52972" - x1="555.14642" - gradientTransform="matrix(0.181271,0,0,0.1538757,-95.403796,918.25015)" - gradientUnits="userSpaceOnUse" - id="linearGradient10990-3-4" - xlink:href="#linearGradient3611-0-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3611-0-9"> - <stop - id="stop3613-7-3" - offset="0" - style="stop-color:#818584;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.5" - id="stop3615-1-3" /> - <stop - id="stop3617-9-5" - offset="1" - style="stop-color:#818584;stop-opacity:1;" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="406.23959" - fx="648.6554" - cy="390.69016" - cx="648.65527" - gradientTransform="matrix(0.1605894,0,0,1.6695341,-81.988663,310.60869)" - gradientUnits="userSpaceOnUse" - id="radialGradient10987-51-5" - xlink:href="#linearGradient3166-51-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3166-51-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3168-18-2" /> - <stop - id="stop3518-64-7" - offset="0.5990991" - style="stop-color:#ffffff;stop-opacity:0.82206404;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3170-2-5" /> - </linearGradient> - <radialGradient - r="93.508705" - fy="639.22247" - fx="648.65515" - cy="639.22247" - cx="648.65515" - gradientTransform="matrix(0.4526982,0,0,0.5009139,-271.4665,743.67293)" - gradientUnits="userSpaceOnUse" - id="radialGradient10984-6-9" - xlink:href="#linearGradient3176-7-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3176-7-3"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3178-5-6-3" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop3180-9-5" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient10981-69-1" - xlink:href="#linearGradient3722-3-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3722-3-7"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop3724-2-5" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop3726-5-4" /> - </linearGradient> - <linearGradient - y2="118.57565" - x2="47.238132" - y1="74.379738" - x1="88.188385" - gradientTransform="matrix(0.70184052,0,0,0.70184052,-29.762519,937.36333)" - gradientUnits="userSpaceOnUse" - id="linearGradient18453" - xlink:href="#linearGradient3722-3-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient18455"> - <stop - style="stop-color:#ececec;stop-opacity:1;" - offset="0" - id="stop18457" /> - <stop - style="stop-color:#404040;stop-opacity:1;" - offset="1" - id="stop18459" /> - </linearGradient> - <radialGradient - r="7.9898205" - fy="76.438904" - fx="55.989819" - cy="76.438904" - cx="55.989819" - gradientTransform="matrix(0.7142317,0,0,0.03788519,-20.854876,998.79221)" - gradientUnits="userSpaceOnUse" - id="radialGradient10977-3-0" - xlink:href="#linearGradient3872-05-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3872-05-7"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3874-6-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3876-0-9" /> - </linearGradient> - <linearGradient - y2="110.8287" - x2="73.38102" - y1="150.87357" - x1="73.38102" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-29.425656,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10974-58-1" - xlink:href="#linearGradient3176-7-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient18466"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop18468" /> - <stop - style="stop-color:#afb0b0;stop-opacity:0;" - offset="1" - id="stop18470" /> - </linearGradient> - <radialGradient - r="20.5" - fy="116" - fx="72" - cy="116" - cx="72" - gradientTransform="matrix(1.9498,0,0,0.02439024,-68.385598,116.07073)" - gradientUnits="userSpaceOnUse" - id="radialGradient11105-7-5" - xlink:href="#linearGradient4949-35-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4949-35-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4951-8-1" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4953-1-5" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.013508443" - width="1.0270169" - y="-0.55384612" - height="2.1076922" - id="filter4997-9-0" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.23076923" - id="feGaussianBlur4999-0-7" /> - </filter> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientTransform="translate(1,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11103-9-5" - xlink:href="#linearGradient6064-9-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient6064-9-9"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop6066-6-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop6068-8-4" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.26761475" - width="1.5352294" - y="-0.062321238" - height="1.1246425" - id="filter6060-7-4" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.5675913" - id="feGaussianBlur6062-8-8" /> - </filter> - <linearGradient - y2="71.111115" - x2="67.047623" - y1="69.079369" - x1="89.39682" - gradientUnits="userSpaceOnUse" - id="linearGradient11101-1-1" - xlink:href="#linearGradient6064-9-9" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-57-1" - id="radialGradient18402-0" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3978-57-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3980-9-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3982-54-9" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-57-1" - id="radialGradient18499" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <linearGradient - y2="15.908398" - x2="72.281242" - y1="58" - x1="70.316795" - gradientTransform="translate(102.53048,-57.275649)" - gradientUnits="userSpaceOnUse" - id="linearGradient11095-7-7" - xlink:href="#linearGradient7136-2-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7136-2-4"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7138-6-3" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7140-97-2" /> - </linearGradient> - <mask - maskUnits="userSpaceOnUse" - id="mask7160-61-2"> - <path - inkscape:connector-curvature="0" - id="path7162-9-6" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467363 -0.84375,1.03125 l 0,50.43749993 c 4.94936,0.590117 10.01102,0.90625001 15.15625,0.90625001 12.91618,0 25.27421,-1.91555594 36.71875,-5.43749994 l 0,-45.90625 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="fill:url(#radialGradient7164-09-2);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient7150-4-7" - id="radialGradient7164-09-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7001186,0,0,2.7816652,48.721132,1.3717999)" - cx="162.46797" - cy="-0.23275588" - fx="162.46797" - fy="-0.23275588" - r="25.9375" /> - <linearGradient - id="linearGradient7150-4-7"> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="0" - id="stop7152-7-0" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="1" - id="stop7154-7-4" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7348-78-6" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.8190732" - id="feGaussianBlur7350-77-3" /> - </filter> - <filter - inkscape:collect="always" - x="-0.14289699" - width="1.285794" - y="-0.089270152" - height="1.1785403" - id="filter7256-9-3" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="6.6685268" - id="feGaussianBlur7258-6-7" /> - </filter> - <filter - inkscape:collect="always" - id="filter7238-7-0" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.6674107" - id="feGaussianBlur7240-6-6" /> - </filter> - <linearGradient - gradientTransform="translate(2,927.73011)" - y2="18.691383" - x2="16.357016" - y1="92" - x1="36" - gradientUnits="userSpaceOnUse" - id="linearGradient10953-61-0" - xlink:href="#linearGradient4409-7-6" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4409-7-6"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4411-1-7" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4413-0-0" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4405-7-1" - x="-0.23281144" - width="1.4656229" - y="-0.048040453" - height="1.0960809" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.2610619" - id="feGaussianBlur4407-6-8" /> - </filter> - <linearGradient - y2="7.7186575" - x2="55.058228" - y1="-0.85672575" - x1="55.058228" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - gradientUnits="userSpaceOnUse" - id="linearGradient10950-5-3" - xlink:href="#linearGradient7354-4-7" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7354-4-7"> - <stop - style="stop-color:#929595;stop-opacity:1;" - offset="0" - id="stop7356-8-2" /> - <stop - style="stop-color:#929595;stop-opacity:0;" - offset="1" - id="stop7358-28-4" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-21.044265,949.06235)" - gradientUnits="userSpaceOnUse" - id="linearGradient10947-6-0" - xlink:href="#linearGradient7394-1-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7394-1-2"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop7396-63-5" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop7398-5-6" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4648-7-4" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="4.6264466" - id="feGaussianBlur4650-5-4" /> - </filter> - <radialGradient - r="42.727272" - fy="44.909092" - fx="52.18182" - cy="44.909092" - cx="52.18182" - spreadMethod="reflect" - gradientTransform="matrix(0.03627192,0,0,0.03627192,50.28909,43.28016)" - gradientUnits="userSpaceOnUse" - id="radialGradient11011-44-0" - xlink:href="#linearGradient3065-41-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3065-41-9"> - <stop - id="stop3067-5-32-7" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop3073-02-4" /> - <stop - id="stop3069-2-5" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11013-8-1" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3167-28-1" - inkscape:collect="always"> - <stop - id="stop3169-43-5" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3171-8-5" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11015-5-7" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11017-55-0" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11019-3-0" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11021-0-7" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11023-1-1" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11025-1-7" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11027-4-7" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11029-9-9" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11031-08-4" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11033-7-9" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientUnits="userSpaceOnUse" - id="linearGradient11035-33-0" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11037-70-2" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11039-9-3" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11041-34-9" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11043-2-4" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11045-68-7" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11047-2-1" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11049-9-9" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11051-03-4" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11053-11-7" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11055-7-5" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11057-6-9" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11059-9-0" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="102.51018" - x2="109.74034" - y1="102.51018" - x1="18.323191" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11061-53-4" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="99.515198" - x2="106.948" - y1="99.515198" - x1="21.546816" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11063-60-8" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="95.837486" - x2="103.29436" - y1="95.837486" - x1="24.78966" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11065-4-4" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="93.015648" - x2="99.591179" - y1="93.015648" - x1="28.398565" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11067-9-9" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="89.83168" - x2="95.735374" - y1="89.83168" - x1="32.581299" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11069-4-9" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="86.228287" - x2="92.4534" - y1="86.228287" - x1="35.859703" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11071-0-8" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="82.811371" - x2="89.398872" - y1="82.811371" - x1="39.510841" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11073-0-6" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="79.42601" - x2="85.897781" - y1="79.42601" - x1="43.011932" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11075-4-4" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="76.170418" - x2="82.39669" - y1="76.170418" - x1="46.613056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11077-0-5" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="73.089386" - x2="78.395447" - y1="73.089386" - x1="49.814056" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11079-8-8" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="66.396431" - x2="71.893417" - y1="66.396431" - x1="57.0163" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11081-9-4" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <linearGradient - y2="69.983421" - x2="75.094414" - y1="69.983421" - x1="53.315147" - spreadMethod="reflect" - gradientTransform="matrix(-1,0,0,-1,129.1953,120.3685)" - gradientUnits="userSpaceOnUse" - id="linearGradient11083-3-2" - xlink:href="#linearGradient3167-28-1" - inkscape:collect="always" /> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11085-51-1" - xlink:href="#linearGradient3088-4-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3088-4-1"> - <stop - id="stop3090-4-0-2" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop3098-76-0" /> - <stop - id="stop3092-6-7" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="42.988293" - fy="44.909092" - fx="9.1935272" - cy="44.909092" - cx="9.1935272" - spreadMethod="pad" - gradientUnits="userSpaceOnUse" - id="radialGradient11087-5-1" - xlink:href="#linearGradient3088-4-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient18807"> - <stop - id="stop18809" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="0.73626375" - id="stop18811" /> - <stop - id="stop18813" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="47.937988" - fy="111.93269" - fx="69.801033" - cy="88.499367" - cx="60.097603" - gradientTransform="matrix(1.253787,0,0,1.12287,-15.95288,-7.801198)" - gradientUnits="userSpaceOnUse" - id="radialGradient11089-09-2" - xlink:href="#linearGradient3954-3-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3954-3-9"> - <stop - style="stop-color:#b3b3b3;stop-opacity:1;" - offset="0" - id="stop3956-8-6" /> - <stop - id="stop3962-0-3" - offset="0.52879584" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#c5c5c5;stop-opacity:1;" - offset="1" - id="stop3958-82-6" /> - </linearGradient> - <linearGradient - y2="32.457832" - x2="76.596703" - y1="148.57518" - x1="17.723173" - gradientTransform="matrix(0.983096,-0.218338,0.197651,0.957902,-11.96469,20.07203)" - gradientUnits="userSpaceOnUse" - id="linearGradient11091-8-5" - xlink:href="#linearGradient4860-98-5" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4860-98-5"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4862-9-7" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4864-5-2" /> - </linearGradient> - <radialGradient - r="50.234375" - fy="8.0446291" - fx="43.034355" - cy="42.699898" - cx="43.620941" - gradientTransform="matrix(0.787852,0.838765,-1.034944,0.955842,62.28262,-38.62105)" - gradientUnits="userSpaceOnUse" - id="radialGradient11093-8-2" - xlink:href="#linearGradient4875-99-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4875-99-2"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4877-1-1" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4879-7-2" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter7312-8-8" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.1655606" - id="feGaussianBlur7314-4-9" /> - </filter> - <radialGradient - r="17.67767" - fy="55.875111" - fx="176.77669" - cy="65.774605" - cx="177.4838" - gradientUnits="userSpaceOnUse" - id="radialGradient11009-4-9" - xlink:href="#linearGradient7290-99-9" - inkscape:collect="always" /> - <linearGradient - id="linearGradient7290-99-9"> - <stop - id="stop7292-4-8" - offset="0" - style="stop-color:#dddddd;stop-opacity:1;" /> - <stop - id="stop7294-6-7" - offset="1" - style="stop-color:#a7a7a7;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="51.904549" - x2="56" - y1="51.904549" - x1="61.06786" - gradientTransform="matrix(0.7142317,0,0,0.6896645,-65.630704,949.07759)" - gradientUnits="userSpaceOnUse" - id="linearGradient10892-7-7" - xlink:href="#linearGradient7394-1-2" - inkscape:collect="always" /> - <linearGradient - y2="15.75" - x2="71.75" - y1="112.25" - x1="71.75" - gradientTransform="translate(-12,0)" - gradientUnits="userSpaceOnUse" - id="linearGradient11007-33-4" - xlink:href="#linearGradient3586-80-4" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3586-80-4"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3588-1-5" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3590-23-8" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.4752" - width="1.9504" - y="-0.012310881" - height="1.0246218" - id="filter3598-261-9" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.495" - id="feGaussianBlur3600-2-7" /> - </filter> - <linearGradient - y2="116.8996" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10888-6-2" - xlink:href="#linearGradient7365-3-1" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient7365-3-1"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop7367-27-9" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop7369-3-9" /> - </linearGradient> - <linearGradient - y2="60.866104" - x2="73.467186" - y1="60.866104" - x1="72.201843" - gradientTransform="matrix(0.9521067,0,0,0.6896645,-46.34386,948.01815)" - gradientUnits="userSpaceOnUse" - id="linearGradient10883-1-4" - xlink:href="#linearGradient3576-2-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3576-2-2"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3578-21-1" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3580-1-3" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.3999016,-341.14641,514.82532)" - gradientUnits="userSpaceOnUse" - id="radialGradient10880-3-5" - xlink:href="#linearGradient3399-1-0-9" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient3399-1-0-9"> - <stop - style="stop-color:#00a8ba;stop-opacity:1;" - offset="0" - id="stop3401-1-0" /> - <stop - style="stop-color:#00a8ba;stop-opacity:0;" - offset="1" - id="stop3403-9-0" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.9641203,0,0,16.515012,-622.20407,-5010.3794)" - gradientUnits="userSpaceOnUse" - id="radialGradient11005-70-8" - xlink:href="#linearGradient3399-1-0-9" - inkscape:collect="always" /> - <filter - inkscape:collect="always" - x="-0.4660736" - width="1.9321471" - y="-0.038034502" - height="1.076069" - id="filter3469-0-2" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.146978" - id="feGaussianBlur3471-3-5" /> - </filter> - <radialGradient - r="2.953125" - fy="322.9375" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(0.5638103,0,0,1.0617818,-341.14641,680.80132)" - gradientUnits="userSpaceOnUse" - id="radialGradient10876-8-2" - xlink:href="#linearGradient3483-0-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3483-0-3"> - <stop - id="stop3485-62-9" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop3487-8-0" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="2.953125" - fy="322.82944" - fx="645.35938" - cy="322.9375" - cx="645.35938" - gradientTransform="matrix(1.2224264,-1.6710861e-5,5.915982e-5,4.33076,-727.92261,-1290.212)" - gradientUnits="userSpaceOnUse" - id="radialGradient11003-9-2" - xlink:href="#linearGradient3483-0-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient18873"> - <stop - id="stop18875" - offset="0" - style="stop-color:#ba0000;stop-opacity:1;" /> - <stop - id="stop18877" - offset="1" - style="stop-color:#ba0000;stop-opacity:0;" /> - </linearGradient> - <filter - inkscape:collect="always" - x="-0.59694225" - width="2.1938846" - y="-0.074120946" - height="1.1482419" - id="filter4927-9-8" - color-interpolation-filters="sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.49701338" - id="feGaussianBlur4929-52-9" /> - </filter> - <radialGradient - r="26.75" - fy="-16.181448" - fx="60" - cy="-16.181448" - cx="60" - gradientTransform="matrix(0.8532437,0,0,-0.1079439,-29.190523,1028.5458)" - gradientUnits="userSpaceOnUse" - id="radialGradient10871-5-2" - xlink:href="#linearGradient7365-3-1" - inkscape:collect="always" /> - <linearGradient - y2="24.713068" - x2="60.428722" - y1="22.930367" - x1="60.428722" - gradientTransform="matrix(0.2967767,0,0,2.8050314,3.0062893,884.40935)" - gradientUnits="userSpaceOnUse" - id="linearGradient10867-15-7" - xlink:href="#linearGradient4878-3-6" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient4878-3-6"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4880-48-6" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4882-5-2" /> - </linearGradient> - <filter - height="1.2056012" - y="-0.1028006" - width="1.1447796" - x="-0.072389819" - id="filter5346-81-3" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5348-9-7" - stdDeviation="3.0237831" - inkscape:collect="always" /> - </filter> - <filter - id="filter5214-1-1" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5216-20-2" - stdDeviation="0.94493222" - inkscape:collect="always" /> - </filter> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5549-4-1-4" - id="linearGradient3381-7-3-9" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-302.8601,-193.7254)" - x1="-190.99445" - y1="75.382088" - x2="-190.99445" - y2="118.72548" /> - <linearGradient - id="linearGradient5549-4-1-4"> - <stop - style="stop-color:#cacaca;stop-opacity:1" - offset="0" - id="stop5551-3-2" /> - <stop - id="stop5553-5-0" - offset="0.61419845" - style="stop-color:#ebebeb;stop-opacity:1;" /> - <stop - style="stop-color:#cbcbcb;stop-opacity:1;" - offset="1" - id="stop5555-4-8" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5227-5-3" - id="radialGradient3383-8-3-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.2680305,-0.0211603,0.00907596,0.5438769,-108.5458,-159.1423)" - cx="-307.625" - cy="70.359375" - fx="-320.35294" - fy="87.258614" - r="50.125" /> - <linearGradient - id="linearGradient5227-5-3" - inkscape:collect="always"> - <stop - id="stop5229-35-3" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5231-6-1" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-7-4" - id="linearGradient3386-41-4" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <linearGradient - id="linearGradient3604-7-4" - inkscape:collect="always"> - <stop - id="stop3606-8-2" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop3608-98-2" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <filter - id="filter3600-3-6" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3602-1-9" - stdDeviation="0.47186117" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-80-0" - id="radialGradient3388-54-4" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-322.72327" - cy="85.487053" - fx="-322.72327" - fy="85.487053" - r="18.133474" /> - <linearGradient - id="linearGradient5237-80-0" - inkscape:collect="always"> - <stop - id="stop5239-9-8" - offset="0" - style="stop-color:#ffffff;stop-opacity:0.62162162" /> - <stop - id="stop5241-7-4" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <filter - height="1.2339463" - y="-0.11697313" - width="1.0979174" - x="-0.048958682" - id="filter5257-87-4" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5259-8-9" - stdDeviation="0.71942638" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5237-80-0" - id="radialGradient3390-7-5" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4273864,0,0,0.434579,-52.49666,-139.76369)" - cx="-317.63007" - cy="84.673492" - fx="-317.63007" - fy="84.673492" - r="18.133474" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5352-9-6" - id="linearGradient3392-6-12-9" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-377.3601,-71.225397)" - x1="-115.51489" - y1="-53.597103" - x2="-115.51489" - y2="-33.89423" /> - <linearGradient - id="linearGradient5352-9-6" - inkscape:collect="always"> - <stop - id="stop5354-65-3" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5356-2-5" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5267-2-7" - id="linearGradient3394-8-3-8" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-190.3601,-184.7254)" - x1="-296.75015" - y1="119.76865" - x2="-296.75015" - y2="92.064072" /> - <linearGradient - id="linearGradient5267-2-7" - inkscape:collect="always"> - <stop - id="stop5269-6-4" - offset="0" - style="stop-color:#050505;stop-opacity:1;" /> - <stop - id="stop5271-95-1" - offset="1" - style="stop-color:#050505;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3604-7-4" - id="linearGradient3396-3-9" - gradientUnits="userSpaceOnUse" - x1="-190.20325" - y1="80.369522" - x2="-190.20325" - y2="112.08436" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5406-14-5" - id="radialGradient3398-5-3" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.275,-377.3601,-90.187081)" - cx="-107.83378" - cy="-43.067612" - fx="-107.83378" - fy="-43.067612" - r="12.374368" /> - <linearGradient - id="linearGradient5406-14-5" - inkscape:collect="always"> - <stop - id="stop5408-49-1" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5410-5-6" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <filter - height="1.9108608" - y="-0.45543039" - width="1.2504867" - x="-0.12524337" - id="filter5402-4-6" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5404-2-7" - stdDeviation="1.2915062" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-9-9" - id="radialGradient3400-99-1" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.4809016,0,0,0.3819503,-208.92937,-132.80629)" - cx="-195.32214" - cy="133.89294" - fx="-195.32214" - fy="133.89294" - r="48.968639" /> - <linearGradient - id="linearGradient3653-4-9-9" - inkscape:collect="always"> - <stop - id="stop3655-70-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3657-0-6" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <filter - id="filter3649-6-3" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur3651-09-3" - stdDeviation="0.53709441" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3653-4-9-9" - id="radialGradient3402-7-8" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.5314418,0,0,0.3819503,-394.3799,-132.80629)" - cx="-195.32211" - cy="144.36551" - fx="-195.32211" - fy="144.36551" - r="48.968639" /> - <mask - id="mask5641-70-0" - maskUnits="userSpaceOnUse"> - <rect - y="-108.19437" - x="-548.99231" - height="26.352942" - width="100.99232" - id="rect5643-96-4" - style="fill:url(#radialGradient5645-8-3);fill-opacity:1;stroke:none" /> - </mask> - <radialGradient - r="50.496159" - fy="-97.979721" - fx="-498.49612" - cy="-97.979721" - cx="-498.49612" - gradientTransform="matrix(1.1439156,0,0,1.0941763,71.741347,8.9484288)" - gradientUnits="userSpaceOnUse" - id="radialGradient5645-8-3" - xlink:href="#linearGradient5631-3-7-2" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5631-3-7-2"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5633-1-2" /> - <stop - id="stop5639-29-9" - offset="0.30253538" - style="stop-color:#ffffff;stop-opacity:0.86666667;" /> - <stop - id="stop5637-9-8" - offset="0.70000011" - style="stop-color:#ffffff;stop-opacity:0.50980392;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5635-34-1" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5522-7-7" - id="radialGradient3404-20-7" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.8313727,1.0103332e-7,-1.1142552e-8,0.3289326,19.372101,67.439863)" - cx="-75.703278" - cy="119.10338" - fx="-75.703278" - fy="119.10338" - r="50.125" /> - <linearGradient - id="linearGradient5522-7-7"> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="0" - id="stop5524-96-0" /> - <stop - id="stop5526-6-0" - offset="0.52602422" - style="stop-color:#000000;stop-opacity:0.21428572;" /> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="1" - id="stop5528-6-5" /> - </linearGradient> - <filter - id="filter5178-0-0" - inkscape:collect="always" - color-interpolation-filters="sRGB"> - <feGaussianBlur - id="feGaussianBlur5180-0-9" - stdDeviation="0.42032926" - inkscape:collect="always" /> - </filter> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5114-19-2" - id="radialGradient3406-5-9" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.8505064,-1.1660576e-7,3.1421449e-8,0.4986511,-54.882697,47.225801)" - cx="-75.711166" - cy="113.45824" - fx="-75.514481" - fy="99.224663" - r="50.125" /> - <linearGradient - id="linearGradient5114-19-2"> - <stop - id="stop5116-5-1" - offset="0" - style="stop-color:#000000;stop-opacity:0;" /> - <stop - style="stop-color:#000000;stop-opacity:0.21428572;" - offset="0.5" - id="stop5182-31-5" /> - <stop - id="stop5118-1-9" - offset="1" - style="stop-color:#000000;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5566-1-3" - id="linearGradient3408-3-2" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - x1="-190.20325" - y1="77.351906" - x2="-190.20325" - y2="102.10035" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5566-1-3"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop5568-8-5" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5570-2-2" /> - </linearGradient> - <linearGradient - y2="15.411574" - x2="59.5" - y1="5.2390494" - x1="59.5" - gradientTransform="matrix(0.7278361,0,0,0.2955704,-21.162041,951.17836)" - gradientUnits="userSpaceOnUse" - id="linearGradient10845-3-4" - xlink:href="#linearGradient7365-3-1" - inkscape:collect="always" /> - <radialGradient - r="94" - fy="-192.92754" - fx="-122.25" - cy="-192.92754" - cx="-122.25" - gradientTransform="matrix(0.9982816,-2.6839922e-8,1.9717777e-8,0.7333812,196.60376,1081.8504)" - gradientUnits="userSpaceOnUse" - id="radialGradient10842-0-7" - xlink:href="#linearGradient3393-9-3" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3393-9-3"> - <stop - id="stop3395-27-0" - offset="0" - style="stop-color:#efefef;stop-opacity:1" /> - <stop - id="stop3397-26-0" - offset="1" - style="stop-color:#b8b8b8;stop-opacity:1" /> - </linearGradient> - <linearGradient - y2="-228.88507" - x2="-100" - y1="-106.62158" - x1="-100" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10839-81-8" - xlink:href="#linearGradient3385-7-14-1" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3385-7-14-1"> - <stop - id="stop3387-5-2" - offset="0" - style="stop-color:#d6d6d6;stop-opacity:1;" /> - <stop - id="stop3389-1-2" - offset="1" - style="stop-color:#ffffff;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-208.05618" - x2="-80" - y1="-67.985718" - x1="-80" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10836-16-4" - xlink:href="#linearGradient3259-7-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3259-7-6"> - <stop - id="stop3261-73-6" - offset="0" - style="stop-color:#1f1f1f;stop-opacity:1;" /> - <stop - id="stop3263-99-5" - offset="1" - style="stop-color:#424242;stop-opacity:1;" /> - </linearGradient> - <linearGradient - y2="-275.16071" - x2="-127.61703" - y1="-310.29703" - x1="-127.61703" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1117.6163)" - gradientUnits="userSpaceOnUse" - id="linearGradient10833-0-5" - xlink:href="#linearGradient3303-2-2-0" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3303-2-2-0" - inkscape:collect="always"> - <stop - id="stop3305-5-956-2" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3307-4-29-4" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-166.52031" - fx="-120.37437" - cy="-150.6152" - cx="-120" - gradientTransform="matrix(1.3748192,0,2.1992226e-8,1.5795433,240.97831,1187.1926)" - gradientUnits="userSpaceOnUse" - id="radialGradient10830-1-0" - xlink:href="#linearGradient3273-3-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3273-3-5" - inkscape:collect="always"> - <stop - id="stop3275-74-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3277-7-0" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="78" - fy="-109.7959" - fx="-120" - cy="-109.7959" - cx="-120" - gradientTransform="matrix(0.8183544,-4.8352507e-8,1.3249178e-7,2.242391,174.20254,1259.9705)" - gradientUnits="userSpaceOnUse" - id="radialGradient10827-9-4" - xlink:href="#linearGradient3273-3-5" - inkscape:collect="always" /> - <linearGradient - y2="-124.49196" - x2="-11.793251" - y1="-0.17180708" - x1="-11.793251" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10823-5-1" - xlink:href="#linearGradient3427-1-4" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3427-1-4" - inkscape:collect="always"> - <stop - id="stop3429-8-5" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop3431-7-8" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - y2="-158.88614" - x2="-90.485931" - y1="-60.000008" - x1="-132.38875" - gradientTransform="matrix(0.6382979,0,0,0.6382979,152.59575,1050.7865)" - gradientUnits="userSpaceOnUse" - id="linearGradient10820-9-4" - xlink:href="#XMLID_18_-6-0" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="XMLID_18_-6-0"> - <stop - id="stop3354-0-1" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop3364-0-9" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <radialGradient - r="76" - fy="-120.68829" - fx="-526.78827" - cy="-120.68829" - cx="-526.78827" - gradientTransform="matrix(2.5032896,0,0,0.8793526,1356.4536,1117.5523)" - gradientUnits="userSpaceOnUse" - id="radialGradient10817-27-4" - xlink:href="#XMLID_18_-6-0" - inkscape:collect="always" /> - <linearGradient - y2="69" - x2="220" - y1="69" - x1="26" - gradientUnits="userSpaceOnUse" - id="linearGradient19045"> - <stop - id="stop19047" - style="stop-color:#3383E6" - offset="0" /> - <stop - id="stop19049" - style="stop-color:#6ECAF7" - offset="1" /> - </linearGradient> - <linearGradient - y2="-141.69821" - x2="-474.70587" - y1="-349.57544" - x1="-519.00256" - gradientTransform="matrix(0.6382979,0,0,0.6382979,393.87233,1090.3609)" - gradientUnits="userSpaceOnUse" - id="linearGradient10814-02-5" - xlink:href="#linearGradient4376-9-6" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4376-9-6" - inkscape:collect="always"> - <stop - id="stop4378-1-9" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4380-2-8" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient11001-9-9" - xlink:href="#linearGradient4429-3-7" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4429-3-7"> - <stop - style="stop-color:#fff1c0;stop-opacity:1;" - offset="0" - id="stop4431-3-9" /> - <stop - style="stop-color:#fff1c0;stop-opacity:0;" - offset="1" - id="stop4433-71-3" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient8482-59-1" - xlink:href="#linearGradient4441-6-5" - inkscape:collect="always" /> - <linearGradient - id="linearGradient4441-6-5"> - <stop - id="stop4443-5-0" - offset="0" - style="stop-color:#dbfaff;stop-opacity:1;" /> - <stop - id="stop4445-9-7" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <radialGradient - r="1" - fy="107" - fx="-1" - cy="107" - cx="-1" - gradientUnits="userSpaceOnUse" - id="radialGradient19194" - xlink:href="#linearGradient4441-6-5" - inkscape:collect="always" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-57" - id="radialGradient44624" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-5" - id="radialGradient44626" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978" - id="radialGradient44628" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3978-57-1" - id="radialGradient44630" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7142317,4.7729983e-7,-8.7526637e-8,0.1221197,-32.282576,992.29311)" - cx="56.1105" - cy="77.29686" - fx="56.1105" - fy="77.29686" - r="7.7821388" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="177.72109" - inkscape:cy="264.03201" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1366" - inkscape:window-height="740" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="0" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-308.2677)"> - <rect - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:3, 1;stroke-dashoffset:0" - id="rect13400-2" - width="240" - height="481.2778" - x="47.878166" - y="461.70676" - ry="31.428572" /> - <g - transform="translate(92.938079,-420.29111)" - id="layer1-6" - inkscape:label="Camada 1"> - <rect - transform="matrix(0.7755201,0,0,1.4537453,-24.041606,856.9683)" - ry="0.51796591" - rx="0.26239562" - y="120" - x="38.73737" - height="4" - width="41.26263" - id="rect3800" - style="opacity:0.73260073;fill:url(#radialGradient11107);fill-opacity:1;stroke:none;filter:url(#filter3872)" /> - <path - sodipodi:nodetypes="ccccssccc" - id="rect3570" - d="m 10.196797,1029.5867 23.606406,0 c 0.109026,0 0.196797,0.086 0.196797,0.1923 l 0,5.7472 c 0,0.1066 -0.09002,0.1704 -0.196797,0.1924 -5.185241,1.0645 -18.154888,1.4166 -23.606406,0 C 10.091311,1035.6911 10,1035.6328 10,1035.5262 l 0,-5.7472 c 0,-0.1065 0.08777,-0.1923 0.196797,-0.1923 z" - style="fill:url(#linearGradient10996);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccc" - id="rect4022" - d="m 12.168776,1029.5867 c -0.09079,0 -0.168776,0.083 -0.168776,0.1898 l 0,5.7401 c 0,0.1066 0.07798,0.2135 0.168776,0.2135 l 3.888187,0 0,-6.1434 -3.888187,0 z m 13.84135,0 0,6.1434 5.821098,0 c 0.09079,0 0.168776,-0.1069 0.168776,-0.2135 l 0,-5.7401 c 0,-0.1066 -0.07798,-0.1898 -0.168776,-0.1898 l -5.821098,0 z" - style="fill:url(#linearGradient10993);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.7237271" - rx="1.7851298" - y="951.72955" - x="2.0005379" - height="80.001083" - width="39.996975" - id="rect2175" - style="fill:url(#linearGradient10990);fill-opacity:1;stroke:none" /> - <rect - style="opacity:0.70695974;fill:url(#radialGradient10987);fill-opacity:1;stroke:none" - id="rect3164" - width="39.996975" - height="80.001083" - x="2.0005379" - y="951.72955" - rx="1.7155496" - ry="1.6565403" /> - <rect - style="fill:url(#radialGradient10984);fill-opacity:1;stroke:none" - id="rect3174" - width="39.996975" - height="33.089149" - x="2.0005379" - y="998.62677" - rx="1.6431732" - ry="1.3948433" /> - <text - transform="scale(0.99108136,1.0089989)" - id="text3658" - y="1013.8896" - x="7.6162062" - style="font-size:1.91842496px;font-style:normal;font-weight:bold;fill:url(#linearGradient10981);fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" - xml:space="preserve"><tspan - style="fill:url(#linearGradient10981);fill-opacity:1" - y="1013.8896" - x="7.6162062" - id="tspan3660" - sodipodi:role="line">OXYGEN</tspan></text> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.3854" - x="13.428246" - height="0.6053918" - width="11.413166" - id="rect3870" - style="opacity:0.73260073;fill:url(#radialGradient10977);fill-opacity:1;stroke:none" /> - <rect - ry="1.6160318" - rx="1.6160318" - y="1011.7048" - x="2.0005379" - height="20.011065" - width="39.996975" - id="rect4018" - style="fill:url(#linearGradient10974);fill-opacity:1;stroke:none" /> - <rect - transform="matrix(0,1,-1,0,0,0)" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" - id="rect7275" - width="0.2382233" - height="18.519377" - x="1012.42" - y="-41.999535" /> - <path - transform="matrix(0.7968167,0,0,0.6896645,-35.37178,948.26401)" - id="path4947" - d="m 52,118.9 40,0" - style="opacity:0.63003666;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient11105);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4997)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="cccc" - id="path5021" - d="M 85.933333,5.8497359 C 85.266404,34.586754 87.338901,93.798793 83.459589,114.50486 69.128393,112.87262 68.975828,41.187138 72.111111,5.5042329 l 13.822222,0.345503 z" - style="opacity:0.60439561;fill:url(#linearGradient11103);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(-0.7142317,0,0,0.6896645,65.083446,948.97091)" - style="opacity:0.76190479;fill:url(#linearGradient11101);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060)" - d="M 85.733333,5.7497359 C 85.066404,34.486754 84.984404,99.894031 82.459589,114.50486 66.698764,114.86601 77.87361,31.982082 71.111111,5.5042329 l 14.622222,0.245503 z" - id="path6072" - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" /> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.1423" - x="2.297204" - height="1.9007041" - width="10.992223" - id="rect3976" - style="opacity:0.73260073;fill:url(#radialGradient44628);fill-opacity:1;stroke:none" /> - <path - sodipodi:nodetypes="ccccccccc" - id="path3489" - d="m 2.0119272,957.29764 0,0.46099 L 13,957.73011 l 0,42.99999 -11,0 0.014258,0.3494 11.398186,0 0,-43.78186 -11.4005166,0 z" - style="fill:#3e3e3e;fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <use - x="0" - y="0" - xlink:href="#rect3976" - id="use7065" - transform="matrix(0,3.9486526,-0.5779271,0,593.11395,948.91009)" - width="128" - height="128" /> - <path - transform="matrix(0.686221,0,0,0.7025015,-89.189728,989.64483)" - mask="url(#mask7160)" - id="rect7115" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467362 -0.84375,1.03125 l 0,50.43749973 c 4.94936,0.59011697 10.01102,0.90624997 15.15625,0.90624997 12.91618,0 25.27421,-1.915556 36.71875,-5.4375 l 0,-45.9062497 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="opacity:0.28937731;fill:url(#linearGradient11095);fill-opacity:1;stroke:none;filter:url(#filter7348)" - inkscape:connector-curvature="0" /> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,33.868415,978.72071)" - id="g7260"> - <path - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256)" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7242" - inkscape:connector-curvature="0" /> - <path - id="path7188" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238)" - inkscape:connector-curvature="0" /> - <path - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7180" - inkscape:connector-curvature="0" /> - </g> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,32.340621,978.72071)" - id="g7265"> - <path - id="path7267" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256)" - inkscape:connector-curvature="0" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238)" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7269" - inkscape:connector-curvature="0" /> - <path - id="path7271" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <path - sodipodi:nodetypes="cccc" - id="path4351" - d="m 29,952.73011 0,56.99999 c 0.05534,2.4723 1.203156,4.3984 5,5 l 7,0" - style="fill:none;stroke:url(#linearGradient10953);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4405)" - inkscape:connector-curvature="0" /> - <rect - ry="1.6565403" - rx="1.7155496" - y="951.72955" - x="2.0005379" - height="16.551949" - width="39.996975" - id="rect7352" - style="fill:url(#linearGradient10950);fill-opacity:1;stroke:none" /> - <rect - ry="0" - rx="0" - y="951.7348" - x="18.964886" - height="74.995308" - width="3.0351143" - id="rect7392" - style="opacity:0.20879122;fill:url(#linearGradient10947);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.04732946,0,0,0.04570148,37.211866,1014.3973)" - id="g4652"> - <path - transform="matrix(0.950204,0,0,-0.9781022,-140.58731,145.38383)" - inkscape:r_cy="true" - inkscape:r_cx="true" - d="m 127.31551,65.540108 c 0,34.873682 -28.270709,63.144382 -63.14439,63.144382 -34.873682,0 -63.1443866,-28.2707 -63.1443866,-63.144382 0,-34.873682 28.2707046,-63.1443866 63.1443866,-63.1443866 34.873681,0 63.14439,28.2707046 63.14439,63.1443866 z" - sodipodi:ry="63.144386" - sodipodi:rx="63.144386" - sodipodi:cy="65.540108" - sodipodi:cx="64.17112" - id="path4887" - style="opacity:0.9157509;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4648)" - sodipodi:type="arc" /> - <g - id="g4542" - transform="translate(-142.96868,16.982986)"> - <g - transform="matrix(1.034003,0,0,1.034003,-3.571961,-1.953362)" - id="g3443"> - <path - sodipodi:type="arc" - style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path1315" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.727272" - sodipodi:ry="42.727272" - d="m 94.909092,44.909092 c 0,23.597621 -19.129651,42.727272 -42.727272,42.727272 -23.597621,0 -42.7272721,-19.129651 -42.7272721,-42.727272 0,-23.597621 19.1296511,-42.7272721 42.7272721,-42.7272721 23.597621,0 42.727272,19.1296511 42.727272,42.7272721 z" - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" /> - <path - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path2190" - style="opacity:0.11885244;fill:url(#radialGradient11011);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <g - id="g3357" - style="opacity:0.57786889"> - <path - id="path3138" - d="m 18.32319,89.008621 c 0.08929,0.161616 0.195172,0.304391 0.286126,0.464954 -0.09422,-0.152925 -0.19341,-0.311012 -0.286126,-0.464954 z m 91.41715,0 c -0.0927,0.153942 -0.1919,0.312029 -0.28612,0.464954 0.091,-0.160563 0.19683,-0.303338 0.28612,-0.464954 z m -90.987961,0.786846 c 9.012499,15.667623 25.919,26.216263 45.279382,26.216263 19.360383,0 36.266889,-10.54864 45.279399,-26.216263 -9.425234,15.074563 -26.202555,25.071753 -45.279399,25.071753 -19.076844,0 -35.854164,-9.99719 -45.279382,-25.071753 z" - style="fill:url(#linearGradient11013);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11015);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 21.546815,86.902153 c 0.08342,0.150981 0.182328,0.28436 0.267297,0.434357 -0.08802,-0.142862 -0.180682,-0.290546 -0.267297,-0.434357 z m 85.401185,0 c -0.0866,0.143811 -0.17929,0.291495 -0.2673,0.434357 0.085,-0.149997 0.18388,-0.283376 0.2673,-0.434357 z m -85.00024,0.735065 c 8.419408,14.636582 24.213332,24.491032 42.299653,24.491032 18.086322,0 33.880242,-9.85445 42.299647,-24.491032 -8.804957,14.082532 -24.478205,23.421842 -42.299647,23.421842 -17.821442,0 -33.494685,-9.33931 -42.299653,-23.421842 z" - id="path3143" - inkscape:connector-curvature="0" /> - <path - id="path3145" - d="m 24.78966,84.242991 c 0.07668,0.138787 0.167604,0.261396 0.245712,0.399281 -0.08091,-0.131326 -0.166091,-0.267083 -0.245712,-0.399281 z m 78.5047,0 c -0.0796,0.132198 -0.1648,0.267955 -0.24572,0.399281 0.0781,-0.137885 0.16904,-0.260494 0.24572,-0.399281 z m -78.136133,0.675706 c 7.739507,13.454618 22.258007,22.513283 38.883784,22.513283 16.625777,0 31.144276,-9.058666 38.883779,-22.513283 -8.093927,12.945319 -22.501492,21.530433 -38.883779,21.530433 -16.382289,0 -30.789854,-8.585114 -38.883784,-21.530433 z" - style="fill:url(#linearGradient11017);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11019);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 28.398565,82.501092 c 0.06954,0.125862 0.151993,0.23705 0.222826,0.362091 -0.07337,-0.119094 -0.150621,-0.242206 -0.222826,-0.362091 z m 71.192615,0 c -0.07221,0.119885 -0.14946,0.242997 -0.222835,0.362091 0.07084,-0.125041 0.153293,-0.236229 0.222835,-0.362091 z m -70.858377,0.612769 c 7.018633,12.201428 20.184848,20.416349 35.262068,20.416349 15.077217,0 28.243433,-8.214922 35.262067,-20.416349 -7.340046,11.739565 -20.405662,19.525049 -35.262067,19.525049 -14.856408,0 -27.922024,-7.785484 -35.262068,-19.525049 z" - id="path3147" - inkscape:connector-curvature="0" /> - <path - id="path3149" - d="m 32.581299,80.504353 c 0.06169,0.11165 0.134832,0.210283 0.197666,0.321206 -0.06509,-0.105646 -0.133615,-0.214858 -0.197666,-0.321206 z m 63.154077,0 c -0.06405,0.106348 -0.132583,0.21556 -0.197673,0.321206 0.06284,-0.110923 0.135981,-0.209556 0.197673,-0.321206 z m -62.857579,0.543579 c 6.226141,10.823734 17.905727,18.111084 31.280539,18.111084 13.37481,0 25.054396,-7.287351 31.280538,-18.111084 -6.511262,10.414022 -18.101606,17.320425 -31.280538,17.320425 -13.178933,0 -24.769278,-6.906403 -31.280539,-17.320425 z" - style="fill:url(#linearGradient11021);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11023);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 35.859703,78.248887 c 0.05528,0.09552 0.120825,0.179894 0.177132,0.274788 -0.05833,-0.09038 -0.119734,-0.183809 -0.177132,-0.274788 z m 56.593697,0 c -0.0574,0.09098 -0.11881,0.184409 -0.177139,0.274788 0.05631,-0.09489 0.121856,-0.179272 0.177139,-0.274788 z m -56.327998,0.465024 c 5.579375,9.259547 16.045697,15.493769 28.031148,15.493769 11.98545,0 22.451772,-6.234223 28.031148,-15.493769 -5.834879,8.909044 -16.221229,14.817372 -28.031148,14.817372 -11.809919,0 -22.196271,-5.908328 -28.031148,-14.817372 z" - id="path3151" - inkscape:connector-curvature="0" /> - <path - id="path3153" - d="m 39.510842,76.25898 c 0.04873,0.07843 0.106509,0.147722 0.156144,0.225645 -0.05141,-0.07422 -0.105548,-0.150937 -0.156144,-0.225645 z m 49.888034,0 c -0.0506,0.07471 -0.104733,0.151429 -0.15615,0.225645 0.04964,-0.07792 0.107418,-0.14721 0.15615,-0.225645 z m -49.653817,0.381861 c 4.918287,7.603605 14.144477,12.722922 24.709799,12.722922 10.56532,0 19.79151,-5.119317 24.709798,-12.722922 -5.143517,7.315785 -14.299211,12.16749 -24.709798,12.16749 -10.410587,0 -19.566283,-4.851705 -24.709799,-12.16749 z" - style="fill:url(#linearGradient11025);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11027);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 43.011934,73.358075 c 0.04189,0.07264 0.09156,0.1368 0.134228,0.208962 -0.0442,-0.06873 -0.09073,-0.139778 -0.134228,-0.208962 z m 42.88585,0 c -0.0435,0.06918 -0.09003,0.140234 -0.134233,0.208962 0.04267,-0.07216 0.09234,-0.136327 0.134233,-0.208962 z m -42.684507,0.353628 c 4.227966,7.041427 12.159186,11.782245 21.241581,11.782245 9.082393,0 17.013613,-4.740818 21.24158,-11.782245 -4.421583,6.774887 -12.292202,11.267879 -21.24158,11.267879 -8.949378,0 -16.819999,-4.492992 -21.241581,-11.267879 z" - id="path3157" - inkscape:connector-curvature="0" /> - <path - id="path3159" - d="m 46.613057,70.957326 c 0.03495,0.0624 0.0764,0.117528 0.111999,0.179523 -0.03688,-0.05904 -0.07571,-0.120085 -0.111999,-0.179523 z m 35.783635,0 c -0.03629,0.05944 -0.07512,0.120478 -0.112003,0.179523 0.0356,-0.06199 0.07705,-0.117121 0.112003,-0.179523 z m -35.615636,0.303809 c 3.527784,6.049434 10.145535,10.122367 17.723817,10.122367 7.578282,0 14.196033,-4.072933 17.723817,-10.122367 -3.689336,5.820444 -10.256522,9.680464 -17.723817,9.680464 -7.467294,0 -14.034482,-3.86002 -17.723817,-9.680464 z" - style="fill:url(#linearGradient11029);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11031);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 49.814056,68.456546 c 0.02792,0.05546 0.06102,0.104447 0.08946,0.159541 -0.02946,-0.05247 -0.06047,-0.106718 -0.08946,-0.159541 z m 28.581388,0 c -0.02899,0.05282 -0.06,0.107068 -0.08946,0.159541 0.02844,-0.05509 0.06154,-0.104085 0.08946,-0.159541 z M 49.948241,68.72654 c 2.81774,5.376095 8.103523,8.995687 14.156508,8.995687 6.052985,0 11.338768,-3.619592 14.156507,-8.995687 -2.946775,5.172593 -8.19217,8.602971 -14.156507,8.602971 -5.964336,0 -11.209733,-3.430378 -14.156508,-8.602971 z" - id="path3161" - inkscape:connector-curvature="0" /> - <path - id="path3163" - d="m 57.016302,64.055173 c 0.01453,0.02803 0.03176,0.05278 0.04656,0.08063 -0.01533,-0.02652 -0.03148,-0.05393 -0.04656,-0.08063 z m 14.877113,0 c -0.01509,0.02669 -0.03123,0.05411 -0.04657,0.08063 0.0148,-0.02784 0.03203,-0.0526 0.04657,-0.08063 z m -14.807268,0.136444 c 1.466683,2.716869 4.218026,4.54607 7.368711,4.54607 3.150685,0 5.902027,-1.829201 7.36871,-4.54607 -1.533848,2.614028 -4.264168,4.347606 -7.36871,4.347606 -3.104542,0 -5.834862,-1.733578 -7.368711,-4.347606 z" - style="fill:url(#linearGradient11033);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11035);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 53.315147,66.555953 c 0.02127,0.04103 0.0465,0.07727 0.06817,0.118032 -0.02245,-0.03882 -0.04608,-0.07895 -0.06817,-0.118032 z m 21.779266,0 c -0.02209,0.03908 -0.04572,0.07921 -0.06817,0.118032 0.02167,-0.04076 0.0469,-0.077 0.06817,-0.118032 z m -21.677017,0.199746 c 2.147143,3.977346 6.174956,6.655194 10.787383,6.655194 4.612428,0 8.64024,-2.677848 10.787382,-6.655194 -2.245468,3.826792 -6.242505,6.364654 -10.787382,6.364654 -4.544877,0 -8.541913,-2.537862 -10.787383,-6.364654 z" - id="path3165" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3293" - style="opacity:0.28688528"> - <path - style="opacity:0.73360656;fill:url(#linearGradient11037);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - id="path3197" - inkscape:connector-curvature="0" /> - <path - id="path3199" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - style="opacity:0.73360656;fill:url(#linearGradient11039);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11041);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - id="path3201" - inkscape:connector-curvature="0" /> - <path - id="path3203" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - style="opacity:0.73360656;fill:url(#linearGradient11043);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11045);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - id="path3205" - inkscape:connector-curvature="0" /> - <path - id="path3207" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - style="opacity:0.73360656;fill:url(#linearGradient11047);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11049);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - id="path3209" - inkscape:connector-curvature="0" /> - <path - id="path3211" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - style="opacity:0.73360656;fill:url(#linearGradient11051);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11053);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - id="path3213" - inkscape:connector-curvature="0" /> - <path - id="path3215" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - style="opacity:0.73360656;fill:url(#linearGradient11055);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11057);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - id="path3217" - inkscape:connector-curvature="0" /> - <path - id="path3219" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - style="opacity:0.73360656;fill:url(#linearGradient11059);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3307" - transform="translate(-0.565862,0.282931)" - style="opacity:0.28688528"> - <path - id="path3309" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - style="opacity:0.73360656;fill:url(#linearGradient11061);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11063);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - id="path3311" - inkscape:connector-curvature="0" /> - <path - id="path3313" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - style="opacity:0.73360656;fill:url(#linearGradient11065);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11067);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - id="path3315" - inkscape:connector-curvature="0" /> - <path - id="path3317" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - style="opacity:0.73360656;fill:url(#linearGradient11069);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11071);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - id="path3319" - inkscape:connector-curvature="0" /> - <path - id="path3321" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - style="opacity:0.73360656;fill:url(#linearGradient11073);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11075);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - id="path3323" - inkscape:connector-curvature="0" /> - <path - id="path3325" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - style="opacity:0.73360656;fill:url(#linearGradient11077);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11079);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - id="path3327" - inkscape:connector-curvature="0" /> - <path - id="path3329" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - style="opacity:0.73360656;fill:url(#linearGradient11081);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11083);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - id="path3331" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(1.400964,0,0,1.400964,-10.24782,-2.576398)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path3086" - style="opacity:0.15983605;fill:url(#radialGradient11085);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:0.19672134;fill:url(#radialGradient11087);fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path3100" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.988293" - sodipodi:ry="42.988293" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - transform="matrix(-1.400964,0,0,1.400964,135.9619,-2.576398)" /> - <path - id="path3570" - d="m 40.9375,19.34375 c -1.378982,0.08425 -2.721284,0.544956 -3.875,1.3125 -5.160376,3.349464 -9.759998,7.797045 -13.40625,13.1875 -7.292501,10.780907 -9.542508,23.591287 -7.25,35.46875 2.292507,11.877459 9.156596,22.92625 19.9375,30.21875 10.780909,7.2925 23.591285,9.54251 35.46875,7.25 11.877462,-2.29251 22.957499,-9.156596 30.25,-19.9375 7.2925,-10.780908 9.5425,-23.591289 7.25,-35.46875 C 107.01999,39.497538 100.1559,28.448751 89.375,21.15625 85.785149,18.722745 80.902255,19.660149 78.46875,23.25 c -2.433505,3.589851 -1.496101,8.472745 2.09375,10.90625 7.265039,4.914273 11.806943,12.22532 13.34375,20.1875 1.536801,7.962181 0.07052,16.45371 -4.84375,23.71875 C 84.148228,85.327539 76.80593,89.838193 68.84375,91.375 60.881568,92.911807 52.390041,91.445523 45.125,86.53125 37.859968,81.616982 33.349307,74.305937 31.8125,66.34375 30.275694,58.381572 31.741981,49.890035 36.65625,42.625 c 2.457137,-3.632522 5.528356,-6.579432 8.96875,-8.8125 2.968319,-1.884093 4.32342,-5.507692 3.3125,-8.875 -1.01092,-3.367307 -4.141021,-5.656122 -7.65625,-5.59375 -0.117417,0.0019 -0.226887,-0.0071 -0.34375,0 z m 21.4375,21 c -1.937828,0.12532 -3.767515,0.973547 -5.125,2.375 -1.447987,1.494885 -2.253965,3.512862 -2.21875,5.59375 -10e-7,1.266966 0,24.0625 0,24.0625 -0.137593,2.885743 1.33379,5.609689 3.8125,7.09375 2.478711,1.484059 5.55254,1.484061 8.03125,0 2.478713,-1.484063 3.950093,-4.208007 3.8125,-7.09375 0,0 -10e-7,-22.795621 0,-24.0625 0.0358,-2.118777 -0.785781,-4.154894 -2.28125,-5.65625 -1.495467,-1.501357 -3.537348,-2.339972 -5.65625,-2.3125 -0.13006,0.0019 -0.245811,-0.0084 -0.375,0 z" - style="fill:url(#radialGradient11089);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:4" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4855" - d="M 89.052758,110.33731 C 115.83808,95.818903 126.60843,63.173429 113.08007,36.784006 c -3.14854,-6.141789 -7.35212,-11.402152 -12.28011,-15.71269 4.52788,4.044347 8.37165,8.938861 11.28913,14.629954 13.10314,25.559983 2.28328,57.263399 -24.150142,70.76265 -26.43342,13.49924 -58.52431,3.70984 -71.62745,-21.850166 C 3.2083579,59.053773 14.028228,27.350338 40.461648,13.851101 52.955568,7.4706054 66.709008,6.3080926 79.127588,9.5390554 65.940318,5.9457846 51.268668,7.0675156 37.954728,13.86679 10.230318,28.025312 -1.1178821,61.276793 12.625218,88.085107 c 13.74309,26.808323 47.40094,37.075733 75.12534,22.917223 0.4332,-0.22125 0.87703,-0.43458 1.3022,-0.66502 z M 80.055218,9.7786728 c -0.30005,-0.087287 -0.59939,-0.1708794 -0.90105,-0.2531907 0.3006,0.07834 0.60207,0.1696947 0.90105,0.2531907 z" - style="fill:url(#linearGradient11091);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4868" - d="M 60.886675,3.5011061 C 30.994595,4.4513813 7.0114547,29.083452 7.0114647,59.284292 c 0,15.796568 6.5792803,30.076913 17.1118103,40.23189 C 60.218215,87.621632 71.214115,42.093571 109.07913,28.465026 99.107975,13.412218 82.025115,3.5011061 62.664525,3.5011061 c -0.60001,0 -1.18239,-0.018932 -1.77785,0 z" - style="opacity:0.57674417;fill:url(#radialGradient11093);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.7399)" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" - sodipodi:ry="17.67767" - sodipodi:rx="17.67767" - sodipodi:cy="65.774605" - sodipodi:cx="177.4838" - id="path7278" - style="opacity:0.54945056;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7312)" - sodipodi:type="arc" /> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.5922)" - sodipodi:type="arc" - style="fill:url(#radialGradient11009);fill-opacity:1;stroke:none" - id="path7280" - sodipodi:cx="177.4838" - sodipodi:cy="65.774605" - sodipodi:rx="17.67767" - sodipodi:ry="17.67767" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" /> - <rect - transform="scale(-1,1)" - style="opacity:0.29304026;fill:url(#linearGradient10892);fill-opacity:1;stroke:none" - id="rect7402" - width="2.6215534" - height="74.980072" - x="-25.621553" - y="951.75006" - rx="0" - ry="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - id="path3584" - d="m 62,112 -2,0 0,-96" - style="fill:none;stroke:url(#linearGradient11007);stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3598)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsscsc" - id="rect7363" - d="m 3.9884152,952.73011 36.3115848,0 c 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - style="opacity:0.56306308;fill:url(#linearGradient10888);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="0.16450633" - rx="0.25630134" - y="955.68286" - x="22.000366" - height="70.530472" - width="1.4270998" - id="rect3186" - style="fill:#000000;fill-opacity:1;stroke:none" /> - <rect - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3572" - width="1.4270998" - height="70.530472" - x="22.000366" - y="955.68286" - rx="0.25630134" - ry="0.16450633" /> - <rect - ry="0.16450633" - rx="0.11117215" - y="954.7301" - x="22.399998" - height="70.530472" - width="0.61901248" - id="rect3574" - style="opacity:0.71794876;fill:url(#linearGradient10883);fill-opacity:1;stroke:none" /> - <path - id="rect3394" - d="m 22.000285,962.77201 0,8.26816 1.427204,0 0,-8.26816 -1.427204,0 z" - style="fill:url(#radialGradient10880);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.4837111,0,0,0.1142406,-289.45421,930.01349)" - style="opacity:0.46520146;fill:url(#radialGradient11005);fill-opacity:1;stroke:none;filter:url(#filter3469)" - d="m 642.40625,286.75 0,72.375 5.90625,0 0,-72.375 -5.90625,0 z" - id="path3407" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient10876);fill-opacity:1;stroke:none" - d="m 22.000285,1020.5549 0,6.2712 1.427204,0 0,-6.2712 -1.427204,0 z" - id="path4287" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="ccccc" - id="path4787" - d="m 59.301763,96.79545 -4.52e-4,15.95387 3.500264,0 L 62.7,96.79545 l -3.398237,0 z" - style="opacity:0.54945056;fill:url(#radialGradient11003);fill-opacity:1;stroke:none;filter:url(#filter4927)" - inkscape:connector-curvature="0" /> - <rect - y="951.72955" - x="22.015116" - height="6.0287628" - width="0.54780781" - id="rect7273" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" /> - <path - style="opacity:0.47985349;fill:url(#radialGradient10871);fill-opacity:1;stroke:none" - d="m 4.1483093,1030.7925 35.7115847,0 c 0.692448,0 1.249906,-0.2307 1.249906,-0.5173 -11.979557,-4.1048 -26.09051,-3.5144 -38.2113962,0 0,0.2866 0.5574578,0.5173 1.2499055,0.5173 z" - id="path7406" - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" /> - <g - id="Livello_1" - transform="matrix(0.5,0,0,0.5,190,942.59711)" /> - <rect - ry="1.6761006" - rx="1.6761006" - y="951.7301" - x="2" - height="4" - width="40.000008" - id="rect4876" - style="opacity:0.65315312;fill:url(#linearGradient10867);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.6010762,0,0,0.6010762,374.33595,1083.6037)" - id="g5647"> - <path - style="opacity:0.481982;fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5346)" - d="m -498,-139.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.311808 -10.96875,3.718748 -11.9257,1.21541 -23.53125,7.587115 -23.53125,13.687495 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687495 -3.99292,-0.40694 -9.15288,-1.293738 -10.96875,-3.718748 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-139.31937 z" - id="path5328" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5184" - d="m -498,-141.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.215408 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.31937 z" - style="fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5214)" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient3381-7);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - id="path3435" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient3383-8);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -497.9851,-141.63165 -14.5625,5.4375 c 0.0823,0.2115 0.14371,0.53213 0.21875,0.90625 l 14.34375,-5.34375 14.28125,5.34375 c 0.0786,-0.3886 0.19552,-0.70835 0.28125,-0.90625 l -14.5625,-5.4375 z m -13.5625,21.21875 c -0.0808,6.89711 -0.65883,13.728 -2.0625,15.375 -1.9651,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.92571,1.21541 -23.53125,7.587123 -23.53125,13.687503 0,0.144795 0.0214,0.294549 0.0313,0.4375 0.692,-5.921036 11.94697,-11.947572 23.5,-13.125003 3.99292,-0.40694 9.00365,-1.413 10.96875,-3.71875 1.47226,-1.72748 2.02909,-9.1492 2.0625,-16.375 z m 27.125,2.0625 c 0.12575,6.40052 0.70665,12.54356 2.03125,14.3125 1.81587,2.42501 6.97582,3.31181 10.96875,3.71875 11.63062,1.18534 22.94516,7.039381 23.5,13.218753 0.0146,-0.173402 0.0625,-0.355119 0.0625,-0.53125 -1e-5,-6.350323 -11.6368,-12.472093 -23.5625,-13.687503 -3.99293,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -1.25624,-1.67765 -1.86615,-7.27675 -2.03125,-13.3125 z" - id="path5218" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - sodipodi:nodetypes="cscscscc" - id="path5281" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.41058,-0.396513 -21.97647,-1.083033 -39.53125,0 z" - style="opacity:0.11711713;fill:url(#linearGradient3386);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccc" - style="opacity:0.46846846;fill:url(#radialGradient3388);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257)" - d="m -511.82885,-112.6004 c -0.0609,5.48859 -0.3553,10.83813 -8.03125,11.25 -3.86166,0.69826 -4.19519,2.151173 -4.875,3.531253 9.03627,-1.36341 19.4666,-4.011823 26.94953,-2.786613 l 0.13258,-8.98705 c -4.24239,-1.08888 -9.97027,-1.89853 -14.17586,-3.00759 z" - id="path5235" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccccc" - style="opacity:0.4099099;fill:url(#radialGradient3390);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257)" - d="m -510.4226,-109.2254 c -0.35428,4.99035 -5.21804,8.28427 -9.96166,9.09727 5.05584,-0.89459 16.56776,-1.03031 22.5324,-1.04798 l 0.11048,-6.20554 c -3.46184,-0.52011 -8.29888,-0.68808 -12.68122,-1.84375 z" - id="path5261" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsccscc" - id="path5350" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 l 53.15625,0 c -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="fill:url(#linearGradient3392-6);fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5265" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="opacity:0.5495496;fill:none;stroke:url(#linearGradient3394-8);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.11711713;fill:url(#linearGradient3396);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600)" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.15799,-0.507294 -21.02253,-0.676229 -39.53125,0 z" - id="path3569" - sodipodi:nodetypes="cscscscc" - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.55405405;fill:#000000;fill-opacity:0.49729728;fill-rule:evenodd;stroke:url(#radialGradient3398);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter5402)" - d="m -484.9792,-110.89486 c -0.0309,6.01372 -3.42647,8.66713 -12.45647,8.86418 13.73668,-0.71873 21.51974,1.32042 27.66815,2.278495 -3.12515,-1.117485 -8.27754,-1.167505 -11.4047,-2.985595 -3.35231,-1.94899 -3.48432,-5.07232 -3.80698,-8.15708 z" - id="path5360" - sodipodi:nodetypes="cccsc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - style="opacity:0.43243247;fill:url(#radialGradient3400);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649)" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.5131,9.379008 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.75355,-6.234085 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - id="path3620" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - id="path5543" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.41916,9.028413 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.72354,-6.122102 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - style="fill:url(#radialGradient3402);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649)" - inkscape:connector-curvature="0" /> - <g - id="g5608" - mask="url(#mask5641)"> - <path - style="opacity:0.27027025;fill:url(#radialGradient3404);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178)" - d="m -221.76796,93.20625 c -9.66876,0.985393 -19.22404,5.312612 -22.36077,10.23165 -2.95517,4.63431 6.61982,3.87902 10.65303,2.25713 9.14413,-3.49527 22.59713,-3.45175 37.58274,-3.45175 17.89278,0 33.6687,0.89525 42.39208,5.61044 5.43293,2.93663 9.21476,-0.42103 8.02165,-3.09878 -2.41912,-5.429356 -12.55538,-10.470722 -23.13248,-11.54869 -30.70887,-2.692478 -35.76778,-1.861224 -53.15625,0 z" - id="path5283" - sodipodi:nodetypes="cscssscc" - transform="matrix(0.9478225,0,0,0.9234897,-313.03905,-186.89507)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9410153,0,0,0.9168573,-314.3667,-186.17274)" - sodipodi:nodetypes="cscscccc" - id="path3661" - d="m -221.76796,93.20625 c -9.8876,1.007694 -19.55436,5.201049 -22.5707,10.56315 -2.20296,3.91619 6.14869,3.79059 10.73888,1.97324 9.1757,-3.44127 22.65328,-3.63195 37.70682,-3.63195 17.80642,0 33.44474,0.99076 42.26424,5.67477 5.13681,3.01365 9.64454,-0.29612 8.02046,-3.33328 -2.45487,-5.409725 -12.61965,-10.187663 -23.00345,-11.24593 -29.41254,-2.955932 -35.37204,-1.884684 -53.15625,0 z" - style="opacity:0.27027025;fill:url(#radialGradient3406);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.14864867;fill:url(#linearGradient3408);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600)" - d="m -499.8125,-102.09375 c -4.83212,0.0399 -10.33985,0.16863 -16.84375,0.40625 1.68391,0.54236 3.18431,1.28749 4.03125,2.28125 1.26736,1.487077 1.80071,7.479387 1.90625,13.6875 l 11.25,0 c 0.91468,0 1.65625,-0.832157 1.65625,-1.84375 l 0,-14.53125 c -0.66994,0.002 -1.30348,-0.006 -2,0 z" - id="path5557" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - id="g3290" - transform="matrix(0.5,0,0,0.5,218,951.29176)" /> - <path - style="opacity:0.56306308;fill:url(#linearGradient10845);fill-opacity:1;stroke:none" - d="m 3.9884152,952.73011 c 11.9179838,-0.55763 23.8669268,-1.02239 36.3115848,0 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - id="path4347" - sodipodi:nodetypes="ccsscsc" - inkscape:connector-curvature="0" /> - <rect - y="936.7301" - x="26" - height="78" - width="101" - id="rect3383" - style="fill:url(#radialGradient10842);fill-opacity:1;stroke:none" - rx="5.1142359" - ry="5.1142359" /> - <rect - ry="4.9999995" - rx="4.9999995" - style="fill:url(#linearGradient10839);fill-opacity:1;stroke:none" - id="rect3311" - width="100" - height="77" - x="26.5" - y="937.2301" /> - <rect - y="938.7301" - x="28" - height="73" - width="96" - id="rect3271" - style="fill:url(#linearGradient10836);fill-opacity:1;stroke:none" - rx="2.5754218" - ry="2.5754218" /> - <path - sodipodi:nodetypes="ccccccccc" - id="rect3298" - d="m 30.568278,938.72476 c -1.426781,0 -2.573138,1.14636 -2.573138,2.57314 l 0,1.9149 c 0,-1.42679 1.146357,-3.21144 2.573138,-3.21144 l 91.858582,-0.0111 c 1.42679,0 2.57314,1.78465 2.57314,3.21143 l 0,-1.91489 c 0,-1.42678 -1.14635,-2.57314 -2.57314,-2.57314 l -91.858582,0.0111 z" - style="fill:url(#linearGradient10833);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.3000005" - rx="1.3000005" - style="opacity:0.70720712;fill:url(#radialGradient10830);fill-opacity:1;stroke:none" - id="rect3281" - width="87" - height="64.999992" - x="32.5" - y="942.2301" /> - <rect - y="942.2301" - x="32.5" - height="65" - width="87" - id="rect5414" - style="opacity:0.70720712;fill:url(#radialGradient10827);fill-opacity:1;stroke:none" - rx="1.3000005" - ry="1.3000005" /> - <rect - ry="0.64175582" - rx="0.64175582" - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3267" - width="86" - height="64.000023" - x="33" - y="942.7301" /> - <path - sodipodi:nodetypes="cccscccc" - id="path3420" - d="m 30.6,938.73011 c -1.426782,0 -2.573139,1.14636 -2.573139,2.57314 L 28,979.73011 c 15.082806,2.00954 22.213417,2.81832 39.622346,2.81832 24.127254,0 38.223634,-2.1432 57.377654,-5.84441 l -0.0252,-35.40077 c 4e-5,-1.42678 -1.14631,-2.57314 -2.5731,-2.57314 l -91.8017,0 z" - style="fill:url(#linearGradient10823);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - y="943.7301" - x="34" - height="62" - width="84" - id="rect2487" - style="fill:url(#linearGradient10820);fill-opacity:1;stroke:none" /> - <rect - style="fill:url(#radialGradient10817);fill-opacity:1;stroke:none" - id="rect4321" - width="82" - height="60" - x="35" - y="944.7301" /> - <path - sodipodi:nodetypes="cccc" - id="rect4373" - d="m 34.5,944.23011 82.5,0 -82.5,60.99999 0,-60.99999 z" - style="fill:url(#linearGradient10814);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(1.7320754,0,0,1.7320754,24.34579,838.31798)" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="107" - sodipodi:cx="-1" - id="path4419" - style="fill:url(#radialGradient11001);fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:url(#radialGradient10999);fill-opacity:1;stroke:none" - id="path4437" - sodipodi:cx="-1" - sodipodi:cy="107" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - transform="matrix(1.7320754,0,0,1.7320754,24.34579,780.95949)" /> - </g> - <g - transform="translate(92.938079,-295.36479)" - id="layer1-6-5" - inkscape:label="Camada 1"> - <rect - transform="matrix(0.7755201,0,0,1.4537453,-24.041606,856.9683)" - ry="0.51796591" - rx="0.26239562" - y="120" - x="38.73737" - height="4" - width="41.26263" - id="rect3800-5" - style="opacity:0.73260073;fill:url(#radialGradient11107-9);fill-opacity:1;stroke:none;filter:url(#filter3872-5)" /> - <path - sodipodi:nodetypes="ccccssccc" - id="rect3570-3" - d="m 10.196797,1029.5867 23.606406,0 c 0.109026,0 0.196797,0.086 0.196797,0.1923 l 0,5.7472 c 0,0.1066 -0.09002,0.1704 -0.196797,0.1924 -5.185241,1.0645 -18.154888,1.4166 -23.606406,0 C 10.091311,1035.6911 10,1035.6328 10,1035.5262 l 0,-5.7472 c 0,-0.1065 0.08777,-0.1923 0.196797,-0.1923 z" - style="fill:url(#linearGradient10996-4);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccc" - id="rect4022-8" - d="m 12.168776,1029.5867 c -0.09079,0 -0.168776,0.083 -0.168776,0.1898 l 0,5.7401 c 0,0.1066 0.07798,0.2135 0.168776,0.2135 l 3.888187,0 0,-6.1434 -3.888187,0 z m 13.84135,0 0,6.1434 5.821098,0 c 0.09079,0 0.168776,-0.1069 0.168776,-0.2135 l 0,-5.7401 c 0,-0.1066 -0.07798,-0.1898 -0.168776,-0.1898 l -5.821098,0 z" - style="fill:url(#linearGradient10993-9);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.7237271" - rx="1.7851298" - y="951.72955" - x="2.0005379" - height="80.001083" - width="39.996975" - id="rect2175-6" - style="fill:url(#linearGradient10990-7);fill-opacity:1;stroke:none" /> - <rect - style="opacity:0.70695974;fill:url(#radialGradient10987-3);fill-opacity:1;stroke:none" - id="rect3164-6" - width="39.996975" - height="80.001083" - x="2.0005379" - y="951.72955" - rx="1.7155496" - ry="1.6565403" /> - <rect - style="fill:url(#radialGradient10984-2);fill-opacity:1;stroke:none" - id="rect3174-3" - width="39.996975" - height="33.089149" - x="2.0005379" - y="998.62677" - rx="1.6431732" - ry="1.3948433" /> - <text - transform="scale(0.99108136,1.0089989)" - id="text3658-0" - y="1013.8896" - x="7.6162062" - style="font-size:1.91842496px;font-style:normal;font-weight:bold;fill:url(#linearGradient10981-8);fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" - xml:space="preserve"><tspan - style="fill:url(#linearGradient10981-8);fill-opacity:1" - y="1013.8896" - x="7.6162062" - id="tspan3660-0" - sodipodi:role="line">OXYGEN</tspan></text> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.3854" - x="13.428246" - height="0.6053918" - width="11.413166" - id="rect3870-5" - style="opacity:0.73260073;fill:url(#radialGradient10977-2);fill-opacity:1;stroke:none" /> - <rect - ry="1.6160318" - rx="1.6160318" - y="1011.7048" - x="2.0005379" - height="20.011065" - width="39.996975" - id="rect4018-6" - style="fill:url(#linearGradient10974-6);fill-opacity:1;stroke:none" /> - <rect - transform="matrix(0,1,-1,0,0,0)" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" - id="rect7275-8" - width="0.2382233" - height="18.519377" - x="1012.42" - y="-41.999535" /> - <path - transform="matrix(0.7968167,0,0,0.6896645,-35.37178,948.26401)" - id="path4947-7" - d="m 52,118.9 40,0" - style="opacity:0.63003666;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient11105-5);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4997-1)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="cccc" - id="path5021-4" - d="M 85.933333,5.8497359 C 85.266404,34.586754 87.338901,93.798793 83.459589,114.50486 69.128393,112.87262 68.975828,41.187138 72.111111,5.5042329 l 13.822222,0.345503 z" - style="opacity:0.60439561;fill:url(#linearGradient11103-0);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060-9)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(-0.7142317,0,0,0.6896645,65.083446,948.97091)" - style="opacity:0.76190479;fill:url(#linearGradient11101-9);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060-9)" - d="M 85.733333,5.7497359 C 85.066404,34.486754 84.984404,99.894031 82.459589,114.50486 66.698764,114.86601 77.87361,31.982082 71.111111,5.5042329 l 14.622222,0.245503 z" - id="path6072-1" - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" /> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.1423" - x="2.297204" - height="1.9007041" - width="10.992223" - id="rect3976-8" - style="opacity:0.73260073;fill:url(#radialGradient44626);fill-opacity:1;stroke:none" /> - <path - sodipodi:nodetypes="ccccccccc" - id="path3489-1" - d="m 2.0119272,957.29764 0,0.46099 L 13,957.73011 l 0,42.99999 -11,0 0.014258,0.3494 11.398186,0 0,-43.78186 -11.4005166,0 z" - style="fill:#3e3e3e;fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <use - x="0" - y="0" - xlink:href="#rect3976-8" - id="use7065-6" - transform="matrix(0,3.9486526,-0.5779271,0,593.11395,948.91009)" - width="128" - height="128" /> - <path - transform="matrix(0.686221,0,0,0.7025015,-89.189728,989.64483)" - mask="url(#mask7160-6)" - id="rect7115-1" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467362 -0.84375,1.03125 l 0,50.43749973 c 4.94936,0.59011697 10.01102,0.90624997 15.15625,0.90624997 12.91618,0 25.27421,-1.915556 36.71875,-5.4375 l 0,-45.9062497 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="opacity:0.28937731;fill:url(#linearGradient11095-8);fill-opacity:1;stroke:none;filter:url(#filter7348-8)" - inkscape:connector-curvature="0" /> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,33.868415,978.72071)" - id="g7260-6"> - <path - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256-4)" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7242-1" - inkscape:connector-curvature="0" /> - <path - id="path7188-5" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238-3)" - inkscape:connector-curvature="0" /> - <path - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7180-6" - inkscape:connector-curvature="0" /> - </g> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,32.340621,978.72071)" - id="g7265-6"> - <path - id="path7267-9" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256-4)" - inkscape:connector-curvature="0" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238-3)" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7269-3" - inkscape:connector-curvature="0" /> - <path - id="path7271-3" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <path - sodipodi:nodetypes="cccc" - id="path4351-9" - d="m 29,952.73011 0,56.99999 c 0.05534,2.4723 1.203156,4.3984 5,5 l 7,0" - style="fill:none;stroke:url(#linearGradient10953-6);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4405-5)" - inkscape:connector-curvature="0" /> - <rect - ry="1.6565403" - rx="1.7155496" - y="951.72955" - x="2.0005379" - height="16.551949" - width="39.996975" - id="rect7352-8" - style="fill:url(#linearGradient10950-7);fill-opacity:1;stroke:none" /> - <rect - ry="0" - rx="0" - y="951.7348" - x="18.964886" - height="74.995308" - width="3.0351143" - id="rect7392-6" - style="opacity:0.20879122;fill:url(#linearGradient10947-9);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.04732946,0,0,0.04570148,37.211866,1014.3973)" - id="g4652-6"> - <path - transform="matrix(0.950204,0,0,-0.9781022,-140.58731,145.38383)" - inkscape:r_cy="true" - inkscape:r_cx="true" - d="m 127.31551,65.540108 c 0,34.873682 -28.270709,63.144382 -63.14439,63.144382 -34.873682,0 -63.1443866,-28.2707 -63.1443866,-63.144382 0,-34.873682 28.2707046,-63.1443866 63.1443866,-63.1443866 34.873681,0 63.14439,28.2707046 63.14439,63.1443866 z" - sodipodi:ry="63.144386" - sodipodi:rx="63.144386" - sodipodi:cy="65.540108" - sodipodi:cx="64.17112" - id="path4887-5" - style="opacity:0.9157509;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4648-2)" - sodipodi:type="arc" /> - <g - id="g4542-3" - transform="translate(-142.96868,16.982986)"> - <g - transform="matrix(1.034003,0,0,1.034003,-3.571961,-1.953362)" - id="g3443-1"> - <path - sodipodi:type="arc" - style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path1315-4" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.727272" - sodipodi:ry="42.727272" - d="m 94.909092,44.909092 c 0,23.597621 -19.129651,42.727272 -42.727272,42.727272 -23.597621,0 -42.7272721,-19.129651 -42.7272721,-42.727272 0,-23.597621 19.1296511,-42.7272721 42.7272721,-42.7272721 23.597621,0 42.727272,19.1296511 42.727272,42.7272721 z" - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" /> - <path - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path2190-0" - style="opacity:0.11885244;fill:url(#radialGradient11011-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <g - id="g3357-7" - style="opacity:0.57786889"> - <path - id="path3138-9" - d="m 18.32319,89.008621 c 0.08929,0.161616 0.195172,0.304391 0.286126,0.464954 -0.09422,-0.152925 -0.19341,-0.311012 -0.286126,-0.464954 z m 91.41715,0 c -0.0927,0.153942 -0.1919,0.312029 -0.28612,0.464954 0.091,-0.160563 0.19683,-0.303338 0.28612,-0.464954 z m -90.987961,0.786846 c 9.012499,15.667623 25.919,26.216263 45.279382,26.216263 19.360383,0 36.266889,-10.54864 45.279399,-26.216263 -9.425234,15.074563 -26.202555,25.071753 -45.279399,25.071753 -19.076844,0 -35.854164,-9.99719 -45.279382,-25.071753 z" - style="fill:url(#linearGradient11013-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11015-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 21.546815,86.902153 c 0.08342,0.150981 0.182328,0.28436 0.267297,0.434357 -0.08802,-0.142862 -0.180682,-0.290546 -0.267297,-0.434357 z m 85.401185,0 c -0.0866,0.143811 -0.17929,0.291495 -0.2673,0.434357 0.085,-0.149997 0.18388,-0.283376 0.2673,-0.434357 z m -85.00024,0.735065 c 8.419408,14.636582 24.213332,24.491032 42.299653,24.491032 18.086322,0 33.880242,-9.85445 42.299647,-24.491032 -8.804957,14.082532 -24.478205,23.421842 -42.299647,23.421842 -17.821442,0 -33.494685,-9.33931 -42.299653,-23.421842 z" - id="path3143-2" - inkscape:connector-curvature="0" /> - <path - id="path3145-0" - d="m 24.78966,84.242991 c 0.07668,0.138787 0.167604,0.261396 0.245712,0.399281 -0.08091,-0.131326 -0.166091,-0.267083 -0.245712,-0.399281 z m 78.5047,0 c -0.0796,0.132198 -0.1648,0.267955 -0.24572,0.399281 0.0781,-0.137885 0.16904,-0.260494 0.24572,-0.399281 z m -78.136133,0.675706 c 7.739507,13.454618 22.258007,22.513283 38.883784,22.513283 16.625777,0 31.144276,-9.058666 38.883779,-22.513283 -8.093927,12.945319 -22.501492,21.530433 -38.883779,21.530433 -16.382289,0 -30.789854,-8.585114 -38.883784,-21.530433 z" - style="fill:url(#linearGradient11017-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11019-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 28.398565,82.501092 c 0.06954,0.125862 0.151993,0.23705 0.222826,0.362091 -0.07337,-0.119094 -0.150621,-0.242206 -0.222826,-0.362091 z m 71.192615,0 c -0.07221,0.119885 -0.14946,0.242997 -0.222835,0.362091 0.07084,-0.125041 0.153293,-0.236229 0.222835,-0.362091 z m -70.858377,0.612769 c 7.018633,12.201428 20.184848,20.416349 35.262068,20.416349 15.077217,0 28.243433,-8.214922 35.262067,-20.416349 -7.340046,11.739565 -20.405662,19.525049 -35.262067,19.525049 -14.856408,0 -27.922024,-7.785484 -35.262068,-19.525049 z" - id="path3147-4" - inkscape:connector-curvature="0" /> - <path - id="path3149-0" - d="m 32.581299,80.504353 c 0.06169,0.11165 0.134832,0.210283 0.197666,0.321206 -0.06509,-0.105646 -0.133615,-0.214858 -0.197666,-0.321206 z m 63.154077,0 c -0.06405,0.106348 -0.132583,0.21556 -0.197673,0.321206 0.06284,-0.110923 0.135981,-0.209556 0.197673,-0.321206 z m -62.857579,0.543579 c 6.226141,10.823734 17.905727,18.111084 31.280539,18.111084 13.37481,0 25.054396,-7.287351 31.280538,-18.111084 -6.511262,10.414022 -18.101606,17.320425 -31.280538,17.320425 -13.178933,0 -24.769278,-6.906403 -31.280539,-17.320425 z" - style="fill:url(#linearGradient11021-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11023-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 35.859703,78.248887 c 0.05528,0.09552 0.120825,0.179894 0.177132,0.274788 -0.05833,-0.09038 -0.119734,-0.183809 -0.177132,-0.274788 z m 56.593697,0 c -0.0574,0.09098 -0.11881,0.184409 -0.177139,0.274788 0.05631,-0.09489 0.121856,-0.179272 0.177139,-0.274788 z m -56.327998,0.465024 c 5.579375,9.259547 16.045697,15.493769 28.031148,15.493769 11.98545,0 22.451772,-6.234223 28.031148,-15.493769 -5.834879,8.909044 -16.221229,14.817372 -28.031148,14.817372 -11.809919,0 -22.196271,-5.908328 -28.031148,-14.817372 z" - id="path3151-0" - inkscape:connector-curvature="0" /> - <path - id="path3153-3" - d="m 39.510842,76.25898 c 0.04873,0.07843 0.106509,0.147722 0.156144,0.225645 -0.05141,-0.07422 -0.105548,-0.150937 -0.156144,-0.225645 z m 49.888034,0 c -0.0506,0.07471 -0.104733,0.151429 -0.15615,0.225645 0.04964,-0.07792 0.107418,-0.14721 0.15615,-0.225645 z m -49.653817,0.381861 c 4.918287,7.603605 14.144477,12.722922 24.709799,12.722922 10.56532,0 19.79151,-5.119317 24.709798,-12.722922 -5.143517,7.315785 -14.299211,12.16749 -24.709798,12.16749 -10.410587,0 -19.566283,-4.851705 -24.709799,-12.16749 z" - style="fill:url(#linearGradient11025-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11027-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 43.011934,73.358075 c 0.04189,0.07264 0.09156,0.1368 0.134228,0.208962 -0.0442,-0.06873 -0.09073,-0.139778 -0.134228,-0.208962 z m 42.88585,0 c -0.0435,0.06918 -0.09003,0.140234 -0.134233,0.208962 0.04267,-0.07216 0.09234,-0.136327 0.134233,-0.208962 z m -42.684507,0.353628 c 4.227966,7.041427 12.159186,11.782245 21.241581,11.782245 9.082393,0 17.013613,-4.740818 21.24158,-11.782245 -4.421583,6.774887 -12.292202,11.267879 -21.24158,11.267879 -8.949378,0 -16.819999,-4.492992 -21.241581,-11.267879 z" - id="path3157-7" - inkscape:connector-curvature="0" /> - <path - id="path3159-1" - d="m 46.613057,70.957326 c 0.03495,0.0624 0.0764,0.117528 0.111999,0.179523 -0.03688,-0.05904 -0.07571,-0.120085 -0.111999,-0.179523 z m 35.783635,0 c -0.03629,0.05944 -0.07512,0.120478 -0.112003,0.179523 0.0356,-0.06199 0.07705,-0.117121 0.112003,-0.179523 z m -35.615636,0.303809 c 3.527784,6.049434 10.145535,10.122367 17.723817,10.122367 7.578282,0 14.196033,-4.072933 17.723817,-10.122367 -3.689336,5.820444 -10.256522,9.680464 -17.723817,9.680464 -7.467294,0 -14.034482,-3.86002 -17.723817,-9.680464 z" - style="fill:url(#linearGradient11029-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11031-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 49.814056,68.456546 c 0.02792,0.05546 0.06102,0.104447 0.08946,0.159541 -0.02946,-0.05247 -0.06047,-0.106718 -0.08946,-0.159541 z m 28.581388,0 c -0.02899,0.05282 -0.06,0.107068 -0.08946,0.159541 0.02844,-0.05509 0.06154,-0.104085 0.08946,-0.159541 z M 49.948241,68.72654 c 2.81774,5.376095 8.103523,8.995687 14.156508,8.995687 6.052985,0 11.338768,-3.619592 14.156507,-8.995687 -2.946775,5.172593 -8.19217,8.602971 -14.156507,8.602971 -5.964336,0 -11.209733,-3.430378 -14.156508,-8.602971 z" - id="path3161-3" - inkscape:connector-curvature="0" /> - <path - id="path3163-0" - d="m 57.016302,64.055173 c 0.01453,0.02803 0.03176,0.05278 0.04656,0.08063 -0.01533,-0.02652 -0.03148,-0.05393 -0.04656,-0.08063 z m 14.877113,0 c -0.01509,0.02669 -0.03123,0.05411 -0.04657,0.08063 0.0148,-0.02784 0.03203,-0.0526 0.04657,-0.08063 z m -14.807268,0.136444 c 1.466683,2.716869 4.218026,4.54607 7.368711,4.54607 3.150685,0 5.902027,-1.829201 7.36871,-4.54607 -1.533848,2.614028 -4.264168,4.347606 -7.36871,4.347606 -3.104542,0 -5.834862,-1.733578 -7.368711,-4.347606 z" - style="fill:url(#linearGradient11033-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11035-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 53.315147,66.555953 c 0.02127,0.04103 0.0465,0.07727 0.06817,0.118032 -0.02245,-0.03882 -0.04608,-0.07895 -0.06817,-0.118032 z m 21.779266,0 c -0.02209,0.03908 -0.04572,0.07921 -0.06817,0.118032 0.02167,-0.04076 0.0469,-0.077 0.06817,-0.118032 z m -21.677017,0.199746 c 2.147143,3.977346 6.174956,6.655194 10.787383,6.655194 4.612428,0 8.64024,-2.677848 10.787382,-6.655194 -2.245468,3.826792 -6.242505,6.364654 -10.787382,6.364654 -4.544877,0 -8.541913,-2.537862 -10.787383,-6.364654 z" - id="path3165-7" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3293-4" - style="opacity:0.28688528"> - <path - style="opacity:0.73360656;fill:url(#linearGradient11037-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - id="path3197-6" - inkscape:connector-curvature="0" /> - <path - id="path3199-0" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - style="opacity:0.73360656;fill:url(#linearGradient11039-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11041-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - id="path3201-1" - inkscape:connector-curvature="0" /> - <path - id="path3203-4" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - style="opacity:0.73360656;fill:url(#linearGradient11043-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11045-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - id="path3205-6" - inkscape:connector-curvature="0" /> - <path - id="path3207-3" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - style="opacity:0.73360656;fill:url(#linearGradient11047-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11049-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - id="path3209-8" - inkscape:connector-curvature="0" /> - <path - id="path3211-1" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - style="opacity:0.73360656;fill:url(#linearGradient11051-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11053-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - id="path3213-4" - inkscape:connector-curvature="0" /> - <path - id="path3215-8" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - style="opacity:0.73360656;fill:url(#linearGradient11055-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11057-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - id="path3217-0" - inkscape:connector-curvature="0" /> - <path - id="path3219-2" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - style="opacity:0.73360656;fill:url(#linearGradient11059-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3307-3" - transform="translate(-0.565862,0.282931)" - style="opacity:0.28688528"> - <path - id="path3309-3" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - style="opacity:0.73360656;fill:url(#linearGradient11061-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11063-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - id="path3311-4" - inkscape:connector-curvature="0" /> - <path - id="path3313-9" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - style="opacity:0.73360656;fill:url(#linearGradient11065-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11067-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - id="path3315-5" - inkscape:connector-curvature="0" /> - <path - id="path3317-1" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - style="opacity:0.73360656;fill:url(#linearGradient11069-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11071-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - id="path3319-8" - inkscape:connector-curvature="0" /> - <path - id="path3321-0" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - style="opacity:0.73360656;fill:url(#linearGradient11073-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11075-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - id="path3323-3" - inkscape:connector-curvature="0" /> - <path - id="path3325-4" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - style="opacity:0.73360656;fill:url(#linearGradient11077-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11079-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - id="path3327-2" - inkscape:connector-curvature="0" /> - <path - id="path3329-4" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - style="opacity:0.73360656;fill:url(#linearGradient11081-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11083-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - id="path3331-9" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(1.400964,0,0,1.400964,-10.24782,-2.576398)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path3086-9" - style="opacity:0.15983605;fill:url(#radialGradient11085-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:0.19672134;fill:url(#radialGradient11087-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path3100-5" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.988293" - sodipodi:ry="42.988293" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - transform="matrix(-1.400964,0,0,1.400964,135.9619,-2.576398)" /> - <path - id="path3570-2" - d="m 40.9375,19.34375 c -1.378982,0.08425 -2.721284,0.544956 -3.875,1.3125 -5.160376,3.349464 -9.759998,7.797045 -13.40625,13.1875 -7.292501,10.780907 -9.542508,23.591287 -7.25,35.46875 2.292507,11.877459 9.156596,22.92625 19.9375,30.21875 10.780909,7.2925 23.591285,9.54251 35.46875,7.25 11.877462,-2.29251 22.957499,-9.156596 30.25,-19.9375 7.2925,-10.780908 9.5425,-23.591289 7.25,-35.46875 C 107.01999,39.497538 100.1559,28.448751 89.375,21.15625 85.785149,18.722745 80.902255,19.660149 78.46875,23.25 c -2.433505,3.589851 -1.496101,8.472745 2.09375,10.90625 7.265039,4.914273 11.806943,12.22532 13.34375,20.1875 1.536801,7.962181 0.07052,16.45371 -4.84375,23.71875 C 84.148228,85.327539 76.80593,89.838193 68.84375,91.375 60.881568,92.911807 52.390041,91.445523 45.125,86.53125 37.859968,81.616982 33.349307,74.305937 31.8125,66.34375 30.275694,58.381572 31.741981,49.890035 36.65625,42.625 c 2.457137,-3.632522 5.528356,-6.579432 8.96875,-8.8125 2.968319,-1.884093 4.32342,-5.507692 3.3125,-8.875 -1.01092,-3.367307 -4.141021,-5.656122 -7.65625,-5.59375 -0.117417,0.0019 -0.226887,-0.0071 -0.34375,0 z m 21.4375,21 c -1.937828,0.12532 -3.767515,0.973547 -5.125,2.375 -1.447987,1.494885 -2.253965,3.512862 -2.21875,5.59375 -10e-7,1.266966 0,24.0625 0,24.0625 -0.137593,2.885743 1.33379,5.609689 3.8125,7.09375 2.478711,1.484059 5.55254,1.484061 8.03125,0 2.478713,-1.484063 3.950093,-4.208007 3.8125,-7.09375 0,0 -10e-7,-22.795621 0,-24.0625 0.0358,-2.118777 -0.785781,-4.154894 -2.28125,-5.65625 -1.495467,-1.501357 -3.537348,-2.339972 -5.65625,-2.3125 -0.13006,0.0019 -0.245811,-0.0084 -0.375,0 z" - style="fill:url(#radialGradient11089-4);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:4" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4855-9" - d="M 89.052758,110.33731 C 115.83808,95.818903 126.60843,63.173429 113.08007,36.784006 c -3.14854,-6.141789 -7.35212,-11.402152 -12.28011,-15.71269 4.52788,4.044347 8.37165,8.938861 11.28913,14.629954 13.10314,25.559983 2.28328,57.263399 -24.150142,70.76265 -26.43342,13.49924 -58.52431,3.70984 -71.62745,-21.850166 C 3.2083579,59.053773 14.028228,27.350338 40.461648,13.851101 52.955568,7.4706054 66.709008,6.3080926 79.127588,9.5390554 65.940318,5.9457846 51.268668,7.0675156 37.954728,13.86679 10.230318,28.025312 -1.1178821,61.276793 12.625218,88.085107 c 13.74309,26.808323 47.40094,37.075733 75.12534,22.917223 0.4332,-0.22125 0.87703,-0.43458 1.3022,-0.66502 z M 80.055218,9.7786728 c -0.30005,-0.087287 -0.59939,-0.1708794 -0.90105,-0.2531907 0.3006,0.07834 0.60207,0.1696947 0.90105,0.2531907 z" - style="fill:url(#linearGradient11091-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4868-5" - d="M 60.886675,3.5011061 C 30.994595,4.4513813 7.0114547,29.083452 7.0114647,59.284292 c 0,15.796568 6.5792803,30.076913 17.1118103,40.23189 C 60.218215,87.621632 71.214115,42.093571 109.07913,28.465026 99.107975,13.412218 82.025115,3.5011061 62.664525,3.5011061 c -0.60001,0 -1.18239,-0.018932 -1.77785,0 z" - style="opacity:0.57674417;fill:url(#radialGradient11093-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.7399)" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" - sodipodi:ry="17.67767" - sodipodi:rx="17.67767" - sodipodi:cy="65.774605" - sodipodi:cx="177.4838" - id="path7278-9" - style="opacity:0.54945056;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7312-0)" - sodipodi:type="arc" /> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.5922)" - sodipodi:type="arc" - style="fill:url(#radialGradient11009-5);fill-opacity:1;stroke:none" - id="path7280-8" - sodipodi:cx="177.4838" - sodipodi:cy="65.774605" - sodipodi:rx="17.67767" - sodipodi:ry="17.67767" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" /> - <rect - transform="scale(-1,1)" - style="opacity:0.29304026;fill:url(#linearGradient10892-0);fill-opacity:1;stroke:none" - id="rect7402-5" - width="2.6215534" - height="74.980072" - x="-25.621553" - y="951.75006" - rx="0" - ry="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - id="path3584-2" - d="m 62,112 -2,0 0,-96" - style="fill:none;stroke:url(#linearGradient11007-3);stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3598-2)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsscsc" - id="rect7363-2" - d="m 3.9884152,952.73011 36.3115848,0 c 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - style="opacity:0.56306308;fill:url(#linearGradient10888-2);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="0.16450633" - rx="0.25630134" - y="955.68286" - x="22.000366" - height="70.530472" - width="1.4270998" - id="rect3186-4" - style="fill:#000000;fill-opacity:1;stroke:none" /> - <rect - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3572-7" - width="1.4270998" - height="70.530472" - x="22.000366" - y="955.68286" - rx="0.25630134" - ry="0.16450633" /> - <rect - ry="0.16450633" - rx="0.11117215" - y="954.7301" - x="22.399998" - height="70.530472" - width="0.61901248" - id="rect3574-2" - style="opacity:0.71794876;fill:url(#linearGradient10883-0);fill-opacity:1;stroke:none" /> - <path - id="rect3394-5" - d="m 22.000285,962.77201 0,8.26816 1.427204,0 0,-8.26816 -1.427204,0 z" - style="fill:url(#radialGradient10880-7);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.4837111,0,0,0.1142406,-289.45421,930.01349)" - style="opacity:0.46520146;fill:url(#radialGradient11005-5);fill-opacity:1;stroke:none;filter:url(#filter3469-7)" - d="m 642.40625,286.75 0,72.375 5.90625,0 0,-72.375 -5.90625,0 z" - id="path3407-1" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient10876-0);fill-opacity:1;stroke:none" - d="m 22.000285,1020.5549 0,6.2712 1.427204,0 0,-6.2712 -1.427204,0 z" - id="path4287-0" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="ccccc" - id="path4787-7" - d="m 59.301763,96.79545 -4.52e-4,15.95387 3.500264,0 L 62.7,96.79545 l -3.398237,0 z" - style="opacity:0.54945056;fill:url(#radialGradient11003-8);fill-opacity:1;stroke:none;filter:url(#filter4927-3)" - inkscape:connector-curvature="0" /> - <rect - y="951.72955" - x="22.015116" - height="6.0287628" - width="0.54780781" - id="rect7273-4" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" /> - <path - style="opacity:0.47985349;fill:url(#radialGradient10871-6);fill-opacity:1;stroke:none" - d="m 4.1483093,1030.7925 35.7115847,0 c 0.692448,0 1.249906,-0.2307 1.249906,-0.5173 -11.979557,-4.1048 -26.09051,-3.5144 -38.2113962,0 0,0.2866 0.5574578,0.5173 1.2499055,0.5173 z" - id="path7406-4" - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" /> - <g - id="Livello_1-3" - transform="matrix(0.5,0,0,0.5,190,942.59711)" /> - <rect - ry="1.6761006" - rx="1.6761006" - y="951.7301" - x="2" - height="4" - width="40.000008" - id="rect4876-8" - style="opacity:0.65315312;fill:url(#linearGradient10867-7);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.6010762,0,0,0.6010762,374.33595,1083.6037)" - id="g5647-3"> - <path - style="opacity:0.481982;fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5346-0)" - d="m -498,-139.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.311808 -10.96875,3.718748 -11.9257,1.21541 -23.53125,7.587115 -23.53125,13.687495 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687495 -3.99292,-0.40694 -9.15288,-1.293738 -10.96875,-3.718748 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-139.31937 z" - id="path5328-0" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5184-1" - d="m -498,-141.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.215408 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.31937 z" - style="fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5214-8)" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient3381-7-4);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - id="path3435-4" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient3383-8-4);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -497.9851,-141.63165 -14.5625,5.4375 c 0.0823,0.2115 0.14371,0.53213 0.21875,0.90625 l 14.34375,-5.34375 14.28125,5.34375 c 0.0786,-0.3886 0.19552,-0.70835 0.28125,-0.90625 l -14.5625,-5.4375 z m -13.5625,21.21875 c -0.0808,6.89711 -0.65883,13.728 -2.0625,15.375 -1.9651,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.92571,1.21541 -23.53125,7.587123 -23.53125,13.687503 0,0.144795 0.0214,0.294549 0.0313,0.4375 0.692,-5.921036 11.94697,-11.947572 23.5,-13.125003 3.99292,-0.40694 9.00365,-1.413 10.96875,-3.71875 1.47226,-1.72748 2.02909,-9.1492 2.0625,-16.375 z m 27.125,2.0625 c 0.12575,6.40052 0.70665,12.54356 2.03125,14.3125 1.81587,2.42501 6.97582,3.31181 10.96875,3.71875 11.63062,1.18534 22.94516,7.039381 23.5,13.218753 0.0146,-0.173402 0.0625,-0.355119 0.0625,-0.53125 -1e-5,-6.350323 -11.6368,-12.472093 -23.5625,-13.687503 -3.99293,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -1.25624,-1.67765 -1.86615,-7.27675 -2.03125,-13.3125 z" - id="path5218-0" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - sodipodi:nodetypes="cscscscc" - id="path5281-5" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.41058,-0.396513 -21.97647,-1.083033 -39.53125,0 z" - style="opacity:0.11711713;fill:url(#linearGradient3386-4);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-6)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccc" - style="opacity:0.46846846;fill:url(#radialGradient3388-1);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257-2)" - d="m -511.82885,-112.6004 c -0.0609,5.48859 -0.3553,10.83813 -8.03125,11.25 -3.86166,0.69826 -4.19519,2.151173 -4.875,3.531253 9.03627,-1.36341 19.4666,-4.011823 26.94953,-2.786613 l 0.13258,-8.98705 c -4.24239,-1.08888 -9.97027,-1.89853 -14.17586,-3.00759 z" - id="path5235-0" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccccc" - style="opacity:0.4099099;fill:url(#radialGradient3390-0);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257-2)" - d="m -510.4226,-109.2254 c -0.35428,4.99035 -5.21804,8.28427 -9.96166,9.09727 5.05584,-0.89459 16.56776,-1.03031 22.5324,-1.04798 l 0.11048,-6.20554 c -3.46184,-0.52011 -8.29888,-0.68808 -12.68122,-1.84375 z" - id="path5261-5" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsccscc" - id="path5350-1" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 l 53.15625,0 c -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="fill:url(#linearGradient3392-6-1);fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5265-0" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="opacity:0.5495496;fill:none;stroke:url(#linearGradient3394-8-0);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.11711713;fill:url(#linearGradient3396-0);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-6)" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.15799,-0.507294 -21.02253,-0.676229 -39.53125,0 z" - id="path3569-4" - sodipodi:nodetypes="cscscscc" - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.55405405;fill:#000000;fill-opacity:0.49729728;fill-rule:evenodd;stroke:url(#radialGradient3398-1);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter5402-0)" - d="m -484.9792,-110.89486 c -0.0309,6.01372 -3.42647,8.66713 -12.45647,8.86418 13.73668,-0.71873 21.51974,1.32042 27.66815,2.278495 -3.12515,-1.117485 -8.27754,-1.167505 -11.4047,-2.985595 -3.35231,-1.94899 -3.48432,-5.07232 -3.80698,-8.15708 z" - id="path5360-8" - sodipodi:nodetypes="cccsc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - style="opacity:0.43243247;fill:url(#radialGradient3400-9);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649-2)" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.5131,9.379008 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.75355,-6.234085 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - id="path3620-4" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - id="path5543-6" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.41916,9.028413 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.72354,-6.122102 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - style="fill:url(#radialGradient3402-4);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649-2)" - inkscape:connector-curvature="0" /> - <g - id="g5608-3" - mask="url(#mask5641-0)"> - <path - style="opacity:0.27027025;fill:url(#radialGradient3404-2);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178-9)" - d="m -221.76796,93.20625 c -9.66876,0.985393 -19.22404,5.312612 -22.36077,10.23165 -2.95517,4.63431 6.61982,3.87902 10.65303,2.25713 9.14413,-3.49527 22.59713,-3.45175 37.58274,-3.45175 17.89278,0 33.6687,0.89525 42.39208,5.61044 5.43293,2.93663 9.21476,-0.42103 8.02165,-3.09878 -2.41912,-5.429356 -12.55538,-10.470722 -23.13248,-11.54869 -30.70887,-2.692478 -35.76778,-1.861224 -53.15625,0 z" - id="path5283-3" - sodipodi:nodetypes="cscssscc" - transform="matrix(0.9478225,0,0,0.9234897,-313.03905,-186.89507)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9410153,0,0,0.9168573,-314.3667,-186.17274)" - sodipodi:nodetypes="cscscccc" - id="path3661-4" - d="m -221.76796,93.20625 c -9.8876,1.007694 -19.55436,5.201049 -22.5707,10.56315 -2.20296,3.91619 6.14869,3.79059 10.73888,1.97324 9.1757,-3.44127 22.65328,-3.63195 37.70682,-3.63195 17.80642,0 33.44474,0.99076 42.26424,5.67477 5.13681,3.01365 9.64454,-0.29612 8.02046,-3.33328 -2.45487,-5.409725 -12.61965,-10.187663 -23.00345,-11.24593 -29.41254,-2.955932 -35.37204,-1.884684 -53.15625,0 z" - style="opacity:0.27027025;fill:url(#radialGradient3406-9);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178-9)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.14864867;fill:url(#linearGradient3408-7);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-6)" - d="m -499.8125,-102.09375 c -4.83212,0.0399 -10.33985,0.16863 -16.84375,0.40625 1.68391,0.54236 3.18431,1.28749 4.03125,2.28125 1.26736,1.487077 1.80071,7.479387 1.90625,13.6875 l 11.25,0 c 0.91468,0 1.65625,-0.832157 1.65625,-1.84375 l 0,-14.53125 c -0.66994,0.002 -1.30348,-0.006 -2,0 z" - id="path5557-1" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - id="g3290-8" - transform="matrix(0.5,0,0,0.5,218,951.29176)" /> - <path - style="opacity:0.56306308;fill:url(#linearGradient10845-7);fill-opacity:1;stroke:none" - d="m 3.9884152,952.73011 c 11.9179838,-0.55763 23.8669268,-1.02239 36.3115848,0 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - id="path4347-8" - sodipodi:nodetypes="ccsscsc" - inkscape:connector-curvature="0" /> - <rect - y="936.7301" - x="26" - height="78" - width="101" - id="rect3383-5" - style="fill:url(#radialGradient10842-8);fill-opacity:1;stroke:none" - rx="5.1142359" - ry="5.1142359" /> - <rect - ry="4.9999995" - rx="4.9999995" - style="fill:url(#linearGradient10839-9);fill-opacity:1;stroke:none" - id="rect3311-5" - width="100" - height="77" - x="26.5" - y="937.2301" /> - <rect - y="938.7301" - x="28" - height="73" - width="96" - id="rect3271-1" - style="fill:url(#linearGradient10836-7);fill-opacity:1;stroke:none" - rx="2.5754218" - ry="2.5754218" /> - <path - sodipodi:nodetypes="ccccccccc" - id="rect3298-2" - d="m 30.568278,938.72476 c -1.426781,0 -2.573138,1.14636 -2.573138,2.57314 l 0,1.9149 c 0,-1.42679 1.146357,-3.21144 2.573138,-3.21144 l 91.858582,-0.0111 c 1.42679,0 2.57314,1.78465 2.57314,3.21143 l 0,-1.91489 c 0,-1.42678 -1.14635,-2.57314 -2.57314,-2.57314 l -91.858582,0.0111 z" - style="fill:url(#linearGradient10833-1);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.3000005" - rx="1.3000005" - style="opacity:0.70720712;fill:url(#radialGradient10830-3);fill-opacity:1;stroke:none" - id="rect3281-7" - width="87" - height="64.999992" - x="32.5" - y="942.2301" /> - <rect - y="942.2301" - x="32.5" - height="65" - width="87" - id="rect5414-1" - style="opacity:0.70720712;fill:url(#radialGradient10827-2);fill-opacity:1;stroke:none" - rx="1.3000005" - ry="1.3000005" /> - <rect - ry="0.64175582" - rx="0.64175582" - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3267-2" - width="86" - height="64.000023" - x="33" - y="942.7301" /> - <path - sodipodi:nodetypes="cccscccc" - id="path3420-3" - d="m 30.6,938.73011 c -1.426782,0 -2.573139,1.14636 -2.573139,2.57314 L 28,979.73011 c 15.082806,2.00954 22.213417,2.81832 39.622346,2.81832 24.127254,0 38.223634,-2.1432 57.377654,-5.84441 l -0.0252,-35.40077 c 4e-5,-1.42678 -1.14631,-2.57314 -2.5731,-2.57314 l -91.8017,0 z" - style="fill:url(#linearGradient10823-3);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - y="943.7301" - x="34" - height="62" - width="84" - id="rect2487-7" - style="fill:url(#linearGradient10820-0);fill-opacity:1;stroke:none" /> - <rect - style="fill:url(#radialGradient10817-1);fill-opacity:1;stroke:none" - id="rect4321-5" - width="82" - height="60" - x="35" - y="944.7301" /> - <path - sodipodi:nodetypes="cccc" - id="rect4373-1" - d="m 34.5,944.23011 82.5,0 -82.5,60.99999 0,-60.99999 z" - style="fill:url(#linearGradient10814-3);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(1.7320754,0,0,1.7320754,24.34579,838.31798)" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="107" - sodipodi:cx="-1" - id="path4419-3" - style="fill:url(#radialGradient11001-5);fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:url(#radialGradient8482);fill-opacity:1;stroke:none" - id="path4437-5" - sodipodi:cx="-1" - sodipodi:cy="107" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - transform="matrix(1.7320754,0,0,1.7320754,24.34579,780.95949)" /> - </g> - <g - transform="translate(92.791509,-163.27439)" - id="layer1-6-8" - inkscape:label="Camada 1"> - <rect - transform="matrix(0.7755201,0,0,1.4537453,-24.041606,856.9683)" - ry="0.51796591" - rx="0.26239562" - y="120" - x="38.73737" - height="4" - width="41.26263" - id="rect3800-7" - style="opacity:0.73260073;fill:url(#radialGradient11107-3);fill-opacity:1;stroke:none;filter:url(#filter3872-8)" /> - <path - sodipodi:nodetypes="ccccssccc" - id="rect3570-6" - d="m 10.196797,1029.5867 23.606406,0 c 0.109026,0 0.196797,0.086 0.196797,0.1923 l 0,5.7472 c 0,0.1066 -0.09002,0.1704 -0.196797,0.1924 -5.185241,1.0645 -18.154888,1.4166 -23.606406,0 C 10.091311,1035.6911 10,1035.6328 10,1035.5262 l 0,-5.7472 c 0,-0.1065 0.08777,-0.1923 0.196797,-0.1923 z" - style="fill:url(#linearGradient10996-26);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccc" - id="rect4022-1" - d="m 12.168776,1029.5867 c -0.09079,0 -0.168776,0.083 -0.168776,0.1898 l 0,5.7401 c 0,0.1066 0.07798,0.2135 0.168776,0.2135 l 3.888187,0 0,-6.1434 -3.888187,0 z m 13.84135,0 0,6.1434 5.821098,0 c 0.09079,0 0.168776,-0.1069 0.168776,-0.2135 l 0,-5.7401 c 0,-0.1066 -0.07798,-0.1898 -0.168776,-0.1898 l -5.821098,0 z" - style="fill:url(#linearGradient10993-4);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.7237271" - rx="1.7851298" - y="951.72955" - x="2.0005379" - height="80.001083" - width="39.996975" - id="rect2175-5" - style="fill:url(#linearGradient10990-3);fill-opacity:1;stroke:none" /> - <rect - style="opacity:0.70695974;fill:url(#radialGradient10987-51);fill-opacity:1;stroke:none" - id="rect3164-5" - width="39.996975" - height="80.001083" - x="2.0005379" - y="951.72955" - rx="1.7155496" - ry="1.6565403" /> - <rect - style="fill:url(#radialGradient10984-6);fill-opacity:1;stroke:none" - id="rect3174-04" - width="39.996975" - height="33.089149" - x="2.0005379" - y="998.62677" - rx="1.6431732" - ry="1.3948433" /> - <text - transform="scale(0.99108136,1.0089989)" - id="text3658-70" - y="1013.8896" - x="7.6162062" - style="font-size:1.91842496px;font-style:normal;font-weight:bold;fill:url(#linearGradient10981-69);fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" - xml:space="preserve"><tspan - style="fill:url(#linearGradient10981-69);fill-opacity:1" - y="1013.8896" - x="7.6162062" - id="tspan3660-6" - sodipodi:role="line">OXYGEN</tspan></text> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.3854" - x="13.428246" - height="0.6053918" - width="11.413166" - id="rect3870-4" - style="opacity:0.73260073;fill:url(#radialGradient10977-3);fill-opacity:1;stroke:none" /> - <rect - ry="1.6160318" - rx="1.6160318" - y="1011.7048" - x="2.0005379" - height="20.011065" - width="39.996975" - id="rect4018-32" - style="fill:url(#linearGradient10974-58);fill-opacity:1;stroke:none" /> - <rect - transform="matrix(0,1,-1,0,0,0)" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" - id="rect7275-0" - width="0.2382233" - height="18.519377" - x="1012.42" - y="-41.999535" /> - <path - transform="matrix(0.7968167,0,0,0.6896645,-35.37178,948.26401)" - id="path4947-54" - d="m 52,118.9 40,0" - style="opacity:0.63003666;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient11105-7);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4997-9)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="cccc" - id="path5021-1" - d="M 85.933333,5.8497359 C 85.266404,34.586754 87.338901,93.798793 83.459589,114.50486 69.128393,112.87262 68.975828,41.187138 72.111111,5.5042329 l 13.822222,0.345503 z" - style="opacity:0.60439561;fill:url(#linearGradient11103-9);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060-7)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(-0.7142317,0,0,0.6896645,65.083446,948.97091)" - style="opacity:0.76190479;fill:url(#linearGradient11101-1);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060-7)" - d="M 85.733333,5.7497359 C 85.066404,34.486754 84.984404,99.894031 82.459589,114.50486 66.698764,114.86601 77.87361,31.982082 71.111111,5.5042329 l 14.622222,0.245503 z" - id="path6072-6" - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" /> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.1423" - x="2.297204" - height="1.9007041" - width="10.992223" - id="rect3976-6" - style="opacity:0.73260073;fill:url(#radialGradient44624);fill-opacity:1;stroke:none" /> - <path - sodipodi:nodetypes="ccccccccc" - id="path3489-11" - d="m 2.0119272,957.29764 0,0.46099 L 13,957.73011 l 0,42.99999 -11,0 0.014258,0.3494 11.398186,0 0,-43.78186 -11.4005166,0 z" - style="fill:#3e3e3e;fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <use - x="0" - y="0" - xlink:href="#rect3976-6" - id="use7065-90" - transform="matrix(0,3.9486526,-0.5779271,0,593.11395,948.91009)" - width="128" - height="128" /> - <path - transform="matrix(0.686221,0,0,0.7025015,-89.189728,989.64483)" - mask="url(#mask7160-61)" - id="rect7115-5" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467362 -0.84375,1.03125 l 0,50.43749973 c 4.94936,0.59011697 10.01102,0.90624997 15.15625,0.90624997 12.91618,0 25.27421,-1.915556 36.71875,-5.4375 l 0,-45.9062497 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="opacity:0.28937731;fill:url(#linearGradient11095-7);fill-opacity:1;stroke:none;filter:url(#filter7348-78)" - inkscape:connector-curvature="0" /> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,33.868415,978.72071)" - id="g7260-5"> - <path - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256-9)" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7242-6" - inkscape:connector-curvature="0" /> - <path - id="path7188-0" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238-7)" - inkscape:connector-curvature="0" /> - <path - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7180-61" - inkscape:connector-curvature="0" /> - </g> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,32.340621,978.72071)" - id="g7265-1"> - <path - id="path7267-6" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256-9)" - inkscape:connector-curvature="0" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238-7)" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7269-8" - inkscape:connector-curvature="0" /> - <path - id="path7271-7" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <path - sodipodi:nodetypes="cccc" - id="path4351-7" - d="m 29,952.73011 0,56.99999 c 0.05534,2.4723 1.203156,4.3984 5,5 l 7,0" - style="fill:none;stroke:url(#linearGradient10953-61);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4405-7)" - inkscape:connector-curvature="0" /> - <rect - ry="1.6565403" - rx="1.7155496" - y="951.72955" - x="2.0005379" - height="16.551949" - width="39.996975" - id="rect7352-6" - style="fill:url(#linearGradient10950-5);fill-opacity:1;stroke:none" /> - <rect - ry="0" - rx="0" - y="951.7348" - x="18.964886" - height="74.995308" - width="3.0351143" - id="rect7392-2" - style="opacity:0.20879122;fill:url(#linearGradient10947-6);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.04732946,0,0,0.04570148,37.211866,1014.3973)" - id="g4652-7"> - <path - transform="matrix(0.950204,0,0,-0.9781022,-140.58731,145.38383)" - inkscape:r_cy="true" - inkscape:r_cx="true" - d="m 127.31551,65.540108 c 0,34.873682 -28.270709,63.144382 -63.14439,63.144382 -34.873682,0 -63.1443866,-28.2707 -63.1443866,-63.144382 0,-34.873682 28.2707046,-63.1443866 63.1443866,-63.1443866 34.873681,0 63.14439,28.2707046 63.14439,63.1443866 z" - sodipodi:ry="63.144386" - sodipodi:rx="63.144386" - sodipodi:cy="65.540108" - sodipodi:cx="64.17112" - id="path4887-2" - style="opacity:0.9157509;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4648-7)" - sodipodi:type="arc" /> - <g - id="g4542-9" - transform="translate(-142.96868,16.982986)"> - <g - transform="matrix(1.034003,0,0,1.034003,-3.571961,-1.953362)" - id="g3443-7"> - <path - sodipodi:type="arc" - style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path1315-0" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.727272" - sodipodi:ry="42.727272" - d="m 94.909092,44.909092 c 0,23.597621 -19.129651,42.727272 -42.727272,42.727272 -23.597621,0 -42.7272721,-19.129651 -42.7272721,-42.727272 0,-23.597621 19.1296511,-42.7272721 42.7272721,-42.7272721 23.597621,0 42.727272,19.1296511 42.727272,42.7272721 z" - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" /> - <path - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path2190-50" - style="opacity:0.11885244;fill:url(#radialGradient11011-44);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <g - id="g3357-2" - style="opacity:0.57786889"> - <path - id="path3138-65" - d="m 18.32319,89.008621 c 0.08929,0.161616 0.195172,0.304391 0.286126,0.464954 -0.09422,-0.152925 -0.19341,-0.311012 -0.286126,-0.464954 z m 91.41715,0 c -0.0927,0.153942 -0.1919,0.312029 -0.28612,0.464954 0.091,-0.160563 0.19683,-0.303338 0.28612,-0.464954 z m -90.987961,0.786846 c 9.012499,15.667623 25.919,26.216263 45.279382,26.216263 19.360383,0 36.266889,-10.54864 45.279399,-26.216263 -9.425234,15.074563 -26.202555,25.071753 -45.279399,25.071753 -19.076844,0 -35.854164,-9.99719 -45.279382,-25.071753 z" - style="fill:url(#linearGradient11013-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11015-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 21.546815,86.902153 c 0.08342,0.150981 0.182328,0.28436 0.267297,0.434357 -0.08802,-0.142862 -0.180682,-0.290546 -0.267297,-0.434357 z m 85.401185,0 c -0.0866,0.143811 -0.17929,0.291495 -0.2673,0.434357 0.085,-0.149997 0.18388,-0.283376 0.2673,-0.434357 z m -85.00024,0.735065 c 8.419408,14.636582 24.213332,24.491032 42.299653,24.491032 18.086322,0 33.880242,-9.85445 42.299647,-24.491032 -8.804957,14.082532 -24.478205,23.421842 -42.299647,23.421842 -17.821442,0 -33.494685,-9.33931 -42.299653,-23.421842 z" - id="path3143-77" - inkscape:connector-curvature="0" /> - <path - id="path3145-3" - d="m 24.78966,84.242991 c 0.07668,0.138787 0.167604,0.261396 0.245712,0.399281 -0.08091,-0.131326 -0.166091,-0.267083 -0.245712,-0.399281 z m 78.5047,0 c -0.0796,0.132198 -0.1648,0.267955 -0.24572,0.399281 0.0781,-0.137885 0.16904,-0.260494 0.24572,-0.399281 z m -78.136133,0.675706 c 7.739507,13.454618 22.258007,22.513283 38.883784,22.513283 16.625777,0 31.144276,-9.058666 38.883779,-22.513283 -8.093927,12.945319 -22.501492,21.530433 -38.883779,21.530433 -16.382289,0 -30.789854,-8.585114 -38.883784,-21.530433 z" - style="fill:url(#linearGradient11017-55);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11019-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 28.398565,82.501092 c 0.06954,0.125862 0.151993,0.23705 0.222826,0.362091 -0.07337,-0.119094 -0.150621,-0.242206 -0.222826,-0.362091 z m 71.192615,0 c -0.07221,0.119885 -0.14946,0.242997 -0.222835,0.362091 0.07084,-0.125041 0.153293,-0.236229 0.222835,-0.362091 z m -70.858377,0.612769 c 7.018633,12.201428 20.184848,20.416349 35.262068,20.416349 15.077217,0 28.243433,-8.214922 35.262067,-20.416349 -7.340046,11.739565 -20.405662,19.525049 -35.262067,19.525049 -14.856408,0 -27.922024,-7.785484 -35.262068,-19.525049 z" - id="path3147-5" - inkscape:connector-curvature="0" /> - <path - id="path3149-06" - d="m 32.581299,80.504353 c 0.06169,0.11165 0.134832,0.210283 0.197666,0.321206 -0.06509,-0.105646 -0.133615,-0.214858 -0.197666,-0.321206 z m 63.154077,0 c -0.06405,0.106348 -0.132583,0.21556 -0.197673,0.321206 0.06284,-0.110923 0.135981,-0.209556 0.197673,-0.321206 z m -62.857579,0.543579 c 6.226141,10.823734 17.905727,18.111084 31.280539,18.111084 13.37481,0 25.054396,-7.287351 31.280538,-18.111084 -6.511262,10.414022 -18.101606,17.320425 -31.280538,17.320425 -13.178933,0 -24.769278,-6.906403 -31.280539,-17.320425 z" - style="fill:url(#linearGradient11021-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11023-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 35.859703,78.248887 c 0.05528,0.09552 0.120825,0.179894 0.177132,0.274788 -0.05833,-0.09038 -0.119734,-0.183809 -0.177132,-0.274788 z m 56.593697,0 c -0.0574,0.09098 -0.11881,0.184409 -0.177139,0.274788 0.05631,-0.09489 0.121856,-0.179272 0.177139,-0.274788 z m -56.327998,0.465024 c 5.579375,9.259547 16.045697,15.493769 28.031148,15.493769 11.98545,0 22.451772,-6.234223 28.031148,-15.493769 -5.834879,8.909044 -16.221229,14.817372 -28.031148,14.817372 -11.809919,0 -22.196271,-5.908328 -28.031148,-14.817372 z" - id="path3151-5" - inkscape:connector-curvature="0" /> - <path - id="path3153-0" - d="m 39.510842,76.25898 c 0.04873,0.07843 0.106509,0.147722 0.156144,0.225645 -0.05141,-0.07422 -0.105548,-0.150937 -0.156144,-0.225645 z m 49.888034,0 c -0.0506,0.07471 -0.104733,0.151429 -0.15615,0.225645 0.04964,-0.07792 0.107418,-0.14721 0.15615,-0.225645 z m -49.653817,0.381861 c 4.918287,7.603605 14.144477,12.722922 24.709799,12.722922 10.56532,0 19.79151,-5.119317 24.709798,-12.722922 -5.143517,7.315785 -14.299211,12.16749 -24.709798,12.16749 -10.410587,0 -19.566283,-4.851705 -24.709799,-12.16749 z" - style="fill:url(#linearGradient11025-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11027-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 43.011934,73.358075 c 0.04189,0.07264 0.09156,0.1368 0.134228,0.208962 -0.0442,-0.06873 -0.09073,-0.139778 -0.134228,-0.208962 z m 42.88585,0 c -0.0435,0.06918 -0.09003,0.140234 -0.134233,0.208962 0.04267,-0.07216 0.09234,-0.136327 0.134233,-0.208962 z m -42.684507,0.353628 c 4.227966,7.041427 12.159186,11.782245 21.241581,11.782245 9.082393,0 17.013613,-4.740818 21.24158,-11.782245 -4.421583,6.774887 -12.292202,11.267879 -21.24158,11.267879 -8.949378,0 -16.819999,-4.492992 -21.241581,-11.267879 z" - id="path3157-1" - inkscape:connector-curvature="0" /> - <path - id="path3159-2" - d="m 46.613057,70.957326 c 0.03495,0.0624 0.0764,0.117528 0.111999,0.179523 -0.03688,-0.05904 -0.07571,-0.120085 -0.111999,-0.179523 z m 35.783635,0 c -0.03629,0.05944 -0.07512,0.120478 -0.112003,0.179523 0.0356,-0.06199 0.07705,-0.117121 0.112003,-0.179523 z m -35.615636,0.303809 c 3.527784,6.049434 10.145535,10.122367 17.723817,10.122367 7.578282,0 14.196033,-4.072933 17.723817,-10.122367 -3.689336,5.820444 -10.256522,9.680464 -17.723817,9.680464 -7.467294,0 -14.034482,-3.86002 -17.723817,-9.680464 z" - style="fill:url(#linearGradient11029-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11031-08);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 49.814056,68.456546 c 0.02792,0.05546 0.06102,0.104447 0.08946,0.159541 -0.02946,-0.05247 -0.06047,-0.106718 -0.08946,-0.159541 z m 28.581388,0 c -0.02899,0.05282 -0.06,0.107068 -0.08946,0.159541 0.02844,-0.05509 0.06154,-0.104085 0.08946,-0.159541 z M 49.948241,68.72654 c 2.81774,5.376095 8.103523,8.995687 14.156508,8.995687 6.052985,0 11.338768,-3.619592 14.156507,-8.995687 -2.946775,5.172593 -8.19217,8.602971 -14.156507,8.602971 -5.964336,0 -11.209733,-3.430378 -14.156508,-8.602971 z" - id="path3161-8" - inkscape:connector-curvature="0" /> - <path - id="path3163-3" - d="m 57.016302,64.055173 c 0.01453,0.02803 0.03176,0.05278 0.04656,0.08063 -0.01533,-0.02652 -0.03148,-0.05393 -0.04656,-0.08063 z m 14.877113,0 c -0.01509,0.02669 -0.03123,0.05411 -0.04657,0.08063 0.0148,-0.02784 0.03203,-0.0526 0.04657,-0.08063 z m -14.807268,0.136444 c 1.466683,2.716869 4.218026,4.54607 7.368711,4.54607 3.150685,0 5.902027,-1.829201 7.36871,-4.54607 -1.533848,2.614028 -4.264168,4.347606 -7.36871,4.347606 -3.104542,0 -5.834862,-1.733578 -7.368711,-4.347606 z" - style="fill:url(#linearGradient11033-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11035-33);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 53.315147,66.555953 c 0.02127,0.04103 0.0465,0.07727 0.06817,0.118032 -0.02245,-0.03882 -0.04608,-0.07895 -0.06817,-0.118032 z m 21.779266,0 c -0.02209,0.03908 -0.04572,0.07921 -0.06817,0.118032 0.02167,-0.04076 0.0469,-0.077 0.06817,-0.118032 z m -21.677017,0.199746 c 2.147143,3.977346 6.174956,6.655194 10.787383,6.655194 4.612428,0 8.64024,-2.677848 10.787382,-6.655194 -2.245468,3.826792 -6.242505,6.364654 -10.787382,6.364654 -4.544877,0 -8.541913,-2.537862 -10.787383,-6.364654 z" - id="path3165-0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3293-0" - style="opacity:0.28688528"> - <path - style="opacity:0.73360656;fill:url(#linearGradient11037-70);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - id="path3197-4" - inkscape:connector-curvature="0" /> - <path - id="path3199-6" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - style="opacity:0.73360656;fill:url(#linearGradient11039-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11041-34);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - id="path3201-0" - inkscape:connector-curvature="0" /> - <path - id="path3203-3" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - style="opacity:0.73360656;fill:url(#linearGradient11043-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11045-68);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - id="path3205-38" - inkscape:connector-curvature="0" /> - <path - id="path3207-5" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - style="opacity:0.73360656;fill:url(#linearGradient11047-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11049-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - id="path3209-2" - inkscape:connector-curvature="0" /> - <path - id="path3211-26" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - style="opacity:0.73360656;fill:url(#linearGradient11051-03);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11053-11);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - id="path3213-93" - inkscape:connector-curvature="0" /> - <path - id="path3215-21" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - style="opacity:0.73360656;fill:url(#linearGradient11055-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11057-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - id="path3217-50" - inkscape:connector-curvature="0" /> - <path - id="path3219-8" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - style="opacity:0.73360656;fill:url(#linearGradient11059-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3307-4" - transform="translate(-0.565862,0.282931)" - style="opacity:0.28688528"> - <path - id="path3309-9" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - style="opacity:0.73360656;fill:url(#linearGradient11061-53);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11063-60);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - id="path3311-3" - inkscape:connector-curvature="0" /> - <path - id="path3313-0" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - style="opacity:0.73360656;fill:url(#linearGradient11065-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11067-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - id="path3315-0" - inkscape:connector-curvature="0" /> - <path - id="path3317-97" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - style="opacity:0.73360656;fill:url(#linearGradient11069-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11071-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - id="path3319-2" - inkscape:connector-curvature="0" /> - <path - id="path3321-1" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - style="opacity:0.73360656;fill:url(#linearGradient11073-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11075-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - id="path3323-1" - inkscape:connector-curvature="0" /> - <path - id="path3325-1" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - style="opacity:0.73360656;fill:url(#linearGradient11077-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11079-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - id="path3327-4" - inkscape:connector-curvature="0" /> - <path - id="path3329-1" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - style="opacity:0.73360656;fill:url(#linearGradient11081-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11083-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - id="path3331-3" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(1.400964,0,0,1.400964,-10.24782,-2.576398)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path3086-1" - style="opacity:0.15983605;fill:url(#radialGradient11085-51);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:0.19672134;fill:url(#radialGradient11087-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path3100-93" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.988293" - sodipodi:ry="42.988293" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - transform="matrix(-1.400964,0,0,1.400964,135.9619,-2.576398)" /> - <path - id="path3570-4" - d="m 40.9375,19.34375 c -1.378982,0.08425 -2.721284,0.544956 -3.875,1.3125 -5.160376,3.349464 -9.759998,7.797045 -13.40625,13.1875 -7.292501,10.780907 -9.542508,23.591287 -7.25,35.46875 2.292507,11.877459 9.156596,22.92625 19.9375,30.21875 10.780909,7.2925 23.591285,9.54251 35.46875,7.25 11.877462,-2.29251 22.957499,-9.156596 30.25,-19.9375 7.2925,-10.780908 9.5425,-23.591289 7.25,-35.46875 C 107.01999,39.497538 100.1559,28.448751 89.375,21.15625 85.785149,18.722745 80.902255,19.660149 78.46875,23.25 c -2.433505,3.589851 -1.496101,8.472745 2.09375,10.90625 7.265039,4.914273 11.806943,12.22532 13.34375,20.1875 1.536801,7.962181 0.07052,16.45371 -4.84375,23.71875 C 84.148228,85.327539 76.80593,89.838193 68.84375,91.375 60.881568,92.911807 52.390041,91.445523 45.125,86.53125 37.859968,81.616982 33.349307,74.305937 31.8125,66.34375 30.275694,58.381572 31.741981,49.890035 36.65625,42.625 c 2.457137,-3.632522 5.528356,-6.579432 8.96875,-8.8125 2.968319,-1.884093 4.32342,-5.507692 3.3125,-8.875 -1.01092,-3.367307 -4.141021,-5.656122 -7.65625,-5.59375 -0.117417,0.0019 -0.226887,-0.0071 -0.34375,0 z m 21.4375,21 c -1.937828,0.12532 -3.767515,0.973547 -5.125,2.375 -1.447987,1.494885 -2.253965,3.512862 -2.21875,5.59375 -10e-7,1.266966 0,24.0625 0,24.0625 -0.137593,2.885743 1.33379,5.609689 3.8125,7.09375 2.478711,1.484059 5.55254,1.484061 8.03125,0 2.478713,-1.484063 3.950093,-4.208007 3.8125,-7.09375 0,0 -10e-7,-22.795621 0,-24.0625 0.0358,-2.118777 -0.785781,-4.154894 -2.28125,-5.65625 -1.495467,-1.501357 -3.537348,-2.339972 -5.65625,-2.3125 -0.13006,0.0019 -0.245811,-0.0084 -0.375,0 z" - style="fill:url(#radialGradient11089-09);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:4" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4855-2" - d="M 89.052758,110.33731 C 115.83808,95.818903 126.60843,63.173429 113.08007,36.784006 c -3.14854,-6.141789 -7.35212,-11.402152 -12.28011,-15.71269 4.52788,4.044347 8.37165,8.938861 11.28913,14.629954 13.10314,25.559983 2.28328,57.263399 -24.150142,70.76265 -26.43342,13.49924 -58.52431,3.70984 -71.62745,-21.850166 C 3.2083579,59.053773 14.028228,27.350338 40.461648,13.851101 52.955568,7.4706054 66.709008,6.3080926 79.127588,9.5390554 65.940318,5.9457846 51.268668,7.0675156 37.954728,13.86679 10.230318,28.025312 -1.1178821,61.276793 12.625218,88.085107 c 13.74309,26.808323 47.40094,37.075733 75.12534,22.917223 0.4332,-0.22125 0.87703,-0.43458 1.3022,-0.66502 z M 80.055218,9.7786728 c -0.30005,-0.087287 -0.59939,-0.1708794 -0.90105,-0.2531907 0.3006,0.07834 0.60207,0.1696947 0.90105,0.2531907 z" - style="fill:url(#linearGradient11091-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4868-42" - d="M 60.886675,3.5011061 C 30.994595,4.4513813 7.0114547,29.083452 7.0114647,59.284292 c 0,15.796568 6.5792803,30.076913 17.1118103,40.23189 C 60.218215,87.621632 71.214115,42.093571 109.07913,28.465026 99.107975,13.412218 82.025115,3.5011061 62.664525,3.5011061 c -0.60001,0 -1.18239,-0.018932 -1.77785,0 z" - style="opacity:0.57674417;fill:url(#radialGradient11093-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.7399)" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" - sodipodi:ry="17.67767" - sodipodi:rx="17.67767" - sodipodi:cy="65.774605" - sodipodi:cx="177.4838" - id="path7278-6" - style="opacity:0.54945056;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7312-8)" - sodipodi:type="arc" /> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.5922)" - sodipodi:type="arc" - style="fill:url(#radialGradient11009-4);fill-opacity:1;stroke:none" - id="path7280-68" - sodipodi:cx="177.4838" - sodipodi:cy="65.774605" - sodipodi:rx="17.67767" - sodipodi:ry="17.67767" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" /> - <rect - transform="scale(-1,1)" - style="opacity:0.29304026;fill:url(#linearGradient10892-7);fill-opacity:1;stroke:none" - id="rect7402-51" - width="2.6215534" - height="74.980072" - x="-25.621553" - y="951.75006" - rx="0" - ry="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - id="path3584-28" - d="m 62,112 -2,0 0,-96" - style="fill:none;stroke:url(#linearGradient11007-33);stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3598-261)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsscsc" - id="rect7363-7" - d="m 3.9884152,952.73011 36.3115848,0 c 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - style="opacity:0.56306308;fill:url(#linearGradient10888-6);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="0.16450633" - rx="0.25630134" - y="955.68286" - x="22.000366" - height="70.530472" - width="1.4270998" - id="rect3186-28" - style="fill:#000000;fill-opacity:1;stroke:none" /> - <rect - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3572-3" - width="1.4270998" - height="70.530472" - x="22.000366" - y="955.68286" - rx="0.25630134" - ry="0.16450633" /> - <rect - ry="0.16450633" - rx="0.11117215" - y="954.7301" - x="22.399998" - height="70.530472" - width="0.61901248" - id="rect3574-21" - style="opacity:0.71794876;fill:url(#linearGradient10883-1);fill-opacity:1;stroke:none" /> - <path - id="rect3394-3" - d="m 22.000285,962.77201 0,8.26816 1.427204,0 0,-8.26816 -1.427204,0 z" - style="fill:url(#radialGradient10880-3);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.4837111,0,0,0.1142406,-289.45421,930.01349)" - style="opacity:0.46520146;fill:url(#radialGradient11005-70);fill-opacity:1;stroke:none;filter:url(#filter3469-0)" - d="m 642.40625,286.75 0,72.375 5.90625,0 0,-72.375 -5.90625,0 z" - id="path3407-20" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient10876-8);fill-opacity:1;stroke:none" - d="m 22.000285,1020.5549 0,6.2712 1.427204,0 0,-6.2712 -1.427204,0 z" - id="path4287-26" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="ccccc" - id="path4787-1" - d="m 59.301763,96.79545 -4.52e-4,15.95387 3.500264,0 L 62.7,96.79545 l -3.398237,0 z" - style="opacity:0.54945056;fill:url(#radialGradient11003-9);fill-opacity:1;stroke:none;filter:url(#filter4927-9)" - inkscape:connector-curvature="0" /> - <rect - y="951.72955" - x="22.015116" - height="6.0287628" - width="0.54780781" - id="rect7273-37" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" /> - <path - style="opacity:0.47985349;fill:url(#radialGradient10871-5);fill-opacity:1;stroke:none" - d="m 4.1483093,1030.7925 35.7115847,0 c 0.692448,0 1.249906,-0.2307 1.249906,-0.5173 -11.979557,-4.1048 -26.09051,-3.5144 -38.2113962,0 0,0.2866 0.5574578,0.5173 1.2499055,0.5173 z" - id="path7406-8" - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" /> - <g - id="Livello_1-40" - transform="matrix(0.5,0,0,0.5,190,942.59711)" /> - <rect - ry="1.6761006" - rx="1.6761006" - y="951.7301" - x="2" - height="4" - width="40.000008" - id="rect4876-1" - style="opacity:0.65315312;fill:url(#linearGradient10867-15);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.6010762,0,0,0.6010762,374.33595,1083.6037)" - id="g5647-36"> - <path - style="opacity:0.481982;fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5346-81)" - d="m -498,-139.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.311808 -10.96875,3.718748 -11.9257,1.21541 -23.53125,7.587115 -23.53125,13.687495 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687495 -3.99292,-0.40694 -9.15288,-1.293738 -10.96875,-3.718748 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-139.31937 z" - id="path5328-5" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5184-7" - d="m -498,-141.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.215408 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.31937 z" - style="fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5214-1)" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient3381-7-3);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - id="path3435-0" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient3383-8-3);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -497.9851,-141.63165 -14.5625,5.4375 c 0.0823,0.2115 0.14371,0.53213 0.21875,0.90625 l 14.34375,-5.34375 14.28125,5.34375 c 0.0786,-0.3886 0.19552,-0.70835 0.28125,-0.90625 l -14.5625,-5.4375 z m -13.5625,21.21875 c -0.0808,6.89711 -0.65883,13.728 -2.0625,15.375 -1.9651,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.92571,1.21541 -23.53125,7.587123 -23.53125,13.687503 0,0.144795 0.0214,0.294549 0.0313,0.4375 0.692,-5.921036 11.94697,-11.947572 23.5,-13.125003 3.99292,-0.40694 9.00365,-1.413 10.96875,-3.71875 1.47226,-1.72748 2.02909,-9.1492 2.0625,-16.375 z m 27.125,2.0625 c 0.12575,6.40052 0.70665,12.54356 2.03125,14.3125 1.81587,2.42501 6.97582,3.31181 10.96875,3.71875 11.63062,1.18534 22.94516,7.039381 23.5,13.218753 0.0146,-0.173402 0.0625,-0.355119 0.0625,-0.53125 -1e-5,-6.350323 -11.6368,-12.472093 -23.5625,-13.687503 -3.99293,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -1.25624,-1.67765 -1.86615,-7.27675 -2.03125,-13.3125 z" - id="path5218-9" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - sodipodi:nodetypes="cscscscc" - id="path5281-38" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.41058,-0.396513 -21.97647,-1.083033 -39.53125,0 z" - style="opacity:0.11711713;fill:url(#linearGradient3386-41);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-3)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccc" - style="opacity:0.46846846;fill:url(#radialGradient3388-54);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257-87)" - d="m -511.82885,-112.6004 c -0.0609,5.48859 -0.3553,10.83813 -8.03125,11.25 -3.86166,0.69826 -4.19519,2.151173 -4.875,3.531253 9.03627,-1.36341 19.4666,-4.011823 26.94953,-2.786613 l 0.13258,-8.98705 c -4.24239,-1.08888 -9.97027,-1.89853 -14.17586,-3.00759 z" - id="path5235-80" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccccc" - style="opacity:0.4099099;fill:url(#radialGradient3390-7);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257-87)" - d="m -510.4226,-109.2254 c -0.35428,4.99035 -5.21804,8.28427 -9.96166,9.09727 5.05584,-0.89459 16.56776,-1.03031 22.5324,-1.04798 l 0.11048,-6.20554 c -3.46184,-0.52011 -8.29888,-0.68808 -12.68122,-1.84375 z" - id="path5261-0" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsccscc" - id="path5350-0" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 l 53.15625,0 c -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="fill:url(#linearGradient3392-6-12);fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5265-09" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="opacity:0.5495496;fill:none;stroke:url(#linearGradient3394-8-3);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.11711713;fill:url(#linearGradient3396-3);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-3)" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.15799,-0.507294 -21.02253,-0.676229 -39.53125,0 z" - id="path3569-5" - sodipodi:nodetypes="cscscscc" - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.55405405;fill:#000000;fill-opacity:0.49729728;fill-rule:evenodd;stroke:url(#radialGradient3398-5);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter5402-4)" - d="m -484.9792,-110.89486 c -0.0309,6.01372 -3.42647,8.66713 -12.45647,8.86418 13.73668,-0.71873 21.51974,1.32042 27.66815,2.278495 -3.12515,-1.117485 -8.27754,-1.167505 -11.4047,-2.985595 -3.35231,-1.94899 -3.48432,-5.07232 -3.80698,-8.15708 z" - id="path5360-82" - sodipodi:nodetypes="cccsc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - style="opacity:0.43243247;fill:url(#radialGradient3400-99);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649-6)" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.5131,9.379008 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.75355,-6.234085 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - id="path3620-79" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - id="path5543-8" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.41916,9.028413 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.72354,-6.122102 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - style="fill:url(#radialGradient3402-7);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649-6)" - inkscape:connector-curvature="0" /> - <g - id="g5608-1" - mask="url(#mask5641-70)"> - <path - style="opacity:0.27027025;fill:url(#radialGradient3404-20);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178-0)" - d="m -221.76796,93.20625 c -9.66876,0.985393 -19.22404,5.312612 -22.36077,10.23165 -2.95517,4.63431 6.61982,3.87902 10.65303,2.25713 9.14413,-3.49527 22.59713,-3.45175 37.58274,-3.45175 17.89278,0 33.6687,0.89525 42.39208,5.61044 5.43293,2.93663 9.21476,-0.42103 8.02165,-3.09878 -2.41912,-5.429356 -12.55538,-10.470722 -23.13248,-11.54869 -30.70887,-2.692478 -35.76778,-1.861224 -53.15625,0 z" - id="path5283-02" - sodipodi:nodetypes="cscssscc" - transform="matrix(0.9478225,0,0,0.9234897,-313.03905,-186.89507)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9410153,0,0,0.9168573,-314.3667,-186.17274)" - sodipodi:nodetypes="cscscccc" - id="path3661-73" - d="m -221.76796,93.20625 c -9.8876,1.007694 -19.55436,5.201049 -22.5707,10.56315 -2.20296,3.91619 6.14869,3.79059 10.73888,1.97324 9.1757,-3.44127 22.65328,-3.63195 37.70682,-3.63195 17.80642,0 33.44474,0.99076 42.26424,5.67477 5.13681,3.01365 9.64454,-0.29612 8.02046,-3.33328 -2.45487,-5.409725 -12.61965,-10.187663 -23.00345,-11.24593 -29.41254,-2.955932 -35.37204,-1.884684 -53.15625,0 z" - style="opacity:0.27027025;fill:url(#radialGradient3406-5);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178-0)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.14864867;fill:url(#linearGradient3408-3);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-3)" - d="m -499.8125,-102.09375 c -4.83212,0.0399 -10.33985,0.16863 -16.84375,0.40625 1.68391,0.54236 3.18431,1.28749 4.03125,2.28125 1.26736,1.487077 1.80071,7.479387 1.90625,13.6875 l 11.25,0 c 0.91468,0 1.65625,-0.832157 1.65625,-1.84375 l 0,-14.53125 c -0.66994,0.002 -1.30348,-0.006 -2,0 z" - id="path5557-6" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - id="g3290-73" - transform="matrix(0.5,0,0,0.5,218,951.29176)" /> - <path - style="opacity:0.56306308;fill:url(#linearGradient10845-3);fill-opacity:1;stroke:none" - d="m 3.9884152,952.73011 c 11.9179838,-0.55763 23.8669268,-1.02239 36.3115848,0 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - id="path4347-2" - sodipodi:nodetypes="ccsscsc" - inkscape:connector-curvature="0" /> - <rect - y="936.7301" - x="26" - height="78" - width="101" - id="rect3383-74" - style="fill:url(#radialGradient10842-0);fill-opacity:1;stroke:none" - rx="5.1142359" - ry="5.1142359" /> - <rect - ry="4.9999995" - rx="4.9999995" - style="fill:url(#linearGradient10839-81);fill-opacity:1;stroke:none" - id="rect3311-8" - width="100" - height="77" - x="26.5" - y="937.2301" /> - <rect - y="938.7301" - x="28" - height="73" - width="96" - id="rect3271-3" - style="fill:url(#linearGradient10836-16);fill-opacity:1;stroke:none" - rx="2.5754218" - ry="2.5754218" /> - <path - sodipodi:nodetypes="ccccccccc" - id="rect3298-25" - d="m 30.568278,938.72476 c -1.426781,0 -2.573138,1.14636 -2.573138,2.57314 l 0,1.9149 c 0,-1.42679 1.146357,-3.21144 2.573138,-3.21144 l 91.858582,-0.0111 c 1.42679,0 2.57314,1.78465 2.57314,3.21143 l 0,-1.91489 c 0,-1.42678 -1.14635,-2.57314 -2.57314,-2.57314 l -91.858582,0.0111 z" - style="fill:url(#linearGradient10833-0);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.3000005" - rx="1.3000005" - style="opacity:0.70720712;fill:url(#radialGradient10830-1);fill-opacity:1;stroke:none" - id="rect3281-5" - width="87" - height="64.999992" - x="32.5" - y="942.2301" /> - <rect - y="942.2301" - x="32.5" - height="65" - width="87" - id="rect5414-11" - style="opacity:0.70720712;fill:url(#radialGradient10827-9);fill-opacity:1;stroke:none" - rx="1.3000005" - ry="1.3000005" /> - <rect - ry="0.64175582" - rx="0.64175582" - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3267-6" - width="86" - height="64.000023" - x="33" - y="942.7301" /> - <path - sodipodi:nodetypes="cccscccc" - id="path3420-1" - d="m 30.6,938.73011 c -1.426782,0 -2.573139,1.14636 -2.573139,2.57314 L 28,979.73011 c 15.082806,2.00954 22.213417,2.81832 39.622346,2.81832 24.127254,0 38.223634,-2.1432 57.377654,-5.84441 l -0.0252,-35.40077 c 4e-5,-1.42678 -1.14631,-2.57314 -2.5731,-2.57314 l -91.8017,0 z" - style="fill:url(#linearGradient10823-5);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - y="943.7301" - x="34" - height="62" - width="84" - id="rect2487-3" - style="fill:url(#linearGradient10820-9);fill-opacity:1;stroke:none" /> - <rect - style="fill:url(#radialGradient10817-27);fill-opacity:1;stroke:none" - id="rect4321-8" - width="82" - height="60" - x="35" - y="944.7301" /> - <path - sodipodi:nodetypes="cccc" - id="rect4373-24" - d="m 34.5,944.23011 82.5,0 -82.5,60.99999 0,-60.99999 z" - style="fill:url(#linearGradient10814-02);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(1.7320754,0,0,1.7320754,24.34579,838.31798)" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="107" - sodipodi:cx="-1" - id="path4419-7" - style="fill:url(#radialGradient11001-9);fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:url(#radialGradient8482-59);fill-opacity:1;stroke:none" - id="path4437-9" - sodipodi:cx="-1" - sodipodi:cy="107" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - transform="matrix(1.7320754,0,0,1.7320754,24.34579,780.95949)" /> - </g> - <text - xml:space="preserve" - style="font-size:32px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans" - x="80.735313" - y="494.5639" - id="text14188" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan14190" - x="80.735313" - y="494.5639">STUDENT 1</tspan></text> - <path - style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m 94.938619,695.98506 c -12.284951,-0.0689 -24.569899,-0.13781 -36.600506,-0.0523 0.135294,-41.75039 0.01625,-83.65516 -0.281372,-125.55992 12.174911,0.12938 24.528393,0.25876 36.881878,0.38814" - id="path14220" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - <text - xml:space="preserve" - style="font-size:32px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans" - x="787.84003" - y="825.09979" - id="text14188-8" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan14190-6" - x="787.84003" - y="825.09979">TESTER</tspan></text> - <g - transform="translate(784.27533,-259.0902)" - id="layer1-6-8-0" - inkscape:label="Camada 1"> - <rect - transform="matrix(0.7755201,0,0,1.4537453,-24.041606,856.9683)" - ry="0.51796591" - rx="0.26239562" - y="120" - x="38.73737" - height="4" - width="41.26263" - id="rect3800-7-7" - style="opacity:0.73260073;fill:url(#radialGradient11107-3-7);fill-opacity:1;stroke:none;filter:url(#filter3872-8-2)" /> - <path - sodipodi:nodetypes="ccccssccc" - id="rect3570-6-7" - d="m 10.196797,1029.5867 23.606406,0 c 0.109026,0 0.196797,0.086 0.196797,0.1923 l 0,5.7472 c 0,0.1066 -0.09002,0.1704 -0.196797,0.1924 -5.185241,1.0645 -18.154888,1.4166 -23.606406,0 C 10.091311,1035.6911 10,1035.6328 10,1035.5262 l 0,-5.7472 c 0,-0.1065 0.08777,-0.1923 0.196797,-0.1923 z" - style="fill:url(#linearGradient10996-26-9);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccc" - id="rect4022-1-5" - d="m 12.168776,1029.5867 c -0.09079,0 -0.168776,0.083 -0.168776,0.1898 l 0,5.7401 c 0,0.1066 0.07798,0.2135 0.168776,0.2135 l 3.888187,0 0,-6.1434 -3.888187,0 z m 13.84135,0 0,6.1434 5.821098,0 c 0.09079,0 0.168776,-0.1069 0.168776,-0.2135 l 0,-5.7401 c 0,-0.1066 -0.07798,-0.1898 -0.168776,-0.1898 l -5.821098,0 z" - style="fill:url(#linearGradient10993-4-9);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.7237271" - rx="1.7851298" - y="951.72955" - x="2.0005379" - height="80.001083" - width="39.996975" - id="rect2175-5-3" - style="fill:url(#linearGradient10990-3-4);fill-opacity:1;stroke:none" /> - <rect - style="opacity:0.70695974;fill:url(#radialGradient10987-51-5);fill-opacity:1;stroke:none" - id="rect3164-5-9" - width="39.996975" - height="80.001083" - x="2.0005379" - y="951.72955" - rx="1.7155496" - ry="1.6565403" /> - <rect - style="fill:url(#radialGradient10984-6-9);fill-opacity:1;stroke:none" - id="rect3174-04-0" - width="39.996975" - height="33.089149" - x="2.0005379" - y="998.62677" - rx="1.6431732" - ry="1.3948433" /> - <text - transform="scale(0.99108136,1.0089989)" - id="text3658-70-5" - y="1013.8896" - x="7.6162062" - style="font-size:1.91842496px;font-style:normal;font-weight:bold;fill:url(#linearGradient10981-69-1);fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" - xml:space="preserve"><tspan - style="fill:url(#linearGradient10981-69-1);fill-opacity:1" - y="1013.8896" - x="7.6162062" - id="tspan3660-6-0" - sodipodi:role="line">OXYGEN</tspan></text> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.3854" - x="13.428246" - height="0.6053918" - width="11.413166" - id="rect3870-4-6" - style="opacity:0.73260073;fill:url(#radialGradient10977-3-0);fill-opacity:1;stroke:none" /> - <rect - ry="1.6160318" - rx="1.6160318" - y="1011.7048" - x="2.0005379" - height="20.011065" - width="39.996975" - id="rect4018-32-6" - style="fill:url(#linearGradient10974-58-1);fill-opacity:1;stroke:none" /> - <rect - transform="matrix(0,1,-1,0,0,0)" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" - id="rect7275-0-6" - width="0.2382233" - height="18.519377" - x="1012.42" - y="-41.999535" /> - <path - transform="matrix(0.7968167,0,0,0.6896645,-35.37178,948.26401)" - id="path4947-54-4" - d="m 52,118.9 40,0" - style="opacity:0.63003666;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient11105-7-5);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4997-9-0)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="cccc" - id="path5021-1-4" - d="M 85.933333,5.8497359 C 85.266404,34.586754 87.338901,93.798793 83.459589,114.50486 69.128393,112.87262 68.975828,41.187138 72.111111,5.5042329 l 13.822222,0.345503 z" - style="opacity:0.60439561;fill:url(#linearGradient11103-9-5);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060-7-4)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(-0.7142317,0,0,0.6896645,65.083446,948.97091)" - style="opacity:0.76190479;fill:url(#linearGradient11101-1-1);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter6060-7-4)" - d="M 85.733333,5.7497359 C 85.066404,34.486754 84.984404,99.894031 82.459589,114.50486 66.698764,114.86601 77.87361,31.982082 71.111111,5.5042329 l 14.622222,0.245503 z" - id="path6072-6-0" - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" /> - <rect - ry="0.48169237" - rx="0.18741128" - y="1001.1423" - x="2.297204" - height="1.9007041" - width="10.992223" - id="rect3976-6-6" - style="opacity:0.73260073;fill:url(#radialGradient44630);fill-opacity:1;stroke:none" /> - <path - sodipodi:nodetypes="ccccccccc" - id="path3489-11-5" - d="m 2.0119272,957.29764 0,0.46099 L 13,957.73011 l 0,42.99999 -11,0 0.014258,0.3494 11.398186,0 0,-43.78186 -11.4005166,0 z" - style="fill:#3e3e3e;fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <use - x="0" - y="0" - xlink:href="#rect3976-6-6" - id="use7065-90-0" - transform="matrix(0,3.9486526,-0.5779271,0,593.11395,948.91009)" - width="128" - height="128" /> - <path - transform="matrix(0.686221,0,0,0.7025015,-89.189728,989.64483)" - mask="url(#mask7160-61-2)" - id="rect7115-5-0" - d="m 137.37423,-51.650649 c -0.4646,0 -0.84375,0.467362 -0.84375,1.03125 l 0,50.43749973 c 4.94936,0.59011697 10.01102,0.90624997 15.15625,0.90624997 12.91618,0 25.27421,-1.915556 36.71875,-5.4375 l 0,-45.9062497 c 0,-0.563887 -0.37914,-1.03125 -0.84375,-1.03125 l -50.1875,0 z" - style="opacity:0.28937731;fill:url(#linearGradient11095-7-7);fill-opacity:1;stroke:none;filter:url(#filter7348-78-6)" - inkscape:connector-curvature="0" /> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,33.868415,978.72071)" - id="g7260-5-2"> - <path - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256-9-3)" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7242-6-8" - inkscape:connector-curvature="0" /> - <path - id="path7188-0-9" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238-7-0)" - inkscape:connector-curvature="0" /> - <path - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7180-61-0" - inkscape:connector-curvature="0" /> - </g> - <g - style="opacity:0.54945056" - transform="matrix(0.01861942,0,0,0.02172962,32.340621,978.72071)" - id="g7265-1-9"> - <path - id="path7267-6-8" - d="m -365.87868,-23 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7256-9-3)" - inkscape:connector-curvature="0" /> - <path - style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter7238-7-0)" - d="m -365.87868,-38 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - id="path7269-8-9" - inkscape:connector-curvature="0" /> - <path - id="path7271-7-3" - d="m -365.87868,-32 0,25.59375 80,64.03125 -80,64.03125 0,25.625 112,-89.65625 -112,-89.625 z" - style="fill:#7a7a7a;fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <path - sodipodi:nodetypes="cccc" - id="path4351-7-9" - d="m 29,952.73011 0,56.99999 c 0.05534,2.4723 1.203156,4.3984 5,5 l 7,0" - style="fill:none;stroke:url(#linearGradient10953-61-0);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4405-7-1)" - inkscape:connector-curvature="0" /> - <rect - ry="1.6565403" - rx="1.7155496" - y="951.72955" - x="2.0005379" - height="16.551949" - width="39.996975" - id="rect7352-6-6" - style="fill:url(#linearGradient10950-5-3);fill-opacity:1;stroke:none" /> - <rect - ry="0" - rx="0" - y="951.7348" - x="18.964886" - height="74.995308" - width="3.0351143" - id="rect7392-2-5" - style="opacity:0.20879122;fill:url(#linearGradient10947-6-0);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.04732946,0,0,0.04570148,37.211866,1014.3973)" - id="g4652-7-8"> - <path - transform="matrix(0.950204,0,0,-0.9781022,-140.58731,145.38383)" - inkscape:r_cy="true" - inkscape:r_cx="true" - d="m 127.31551,65.540108 c 0,34.873682 -28.270709,63.144382 -63.14439,63.144382 -34.873682,0 -63.1443866,-28.2707 -63.1443866,-63.144382 0,-34.873682 28.2707046,-63.1443866 63.1443866,-63.1443866 34.873681,0 63.14439,28.2707046 63.14439,63.1443866 z" - sodipodi:ry="63.144386" - sodipodi:rx="63.144386" - sodipodi:cy="65.540108" - sodipodi:cx="64.17112" - id="path4887-2-7" - style="opacity:0.9157509;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter4648-7-4)" - sodipodi:type="arc" /> - <g - id="g4542-9-4" - transform="translate(-142.96868,16.982986)"> - <g - transform="matrix(1.034003,0,0,1.034003,-3.571961,-1.953362)" - id="g3443-7-8"> - <path - sodipodi:type="arc" - style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path1315-0-4" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.727272" - sodipodi:ry="42.727272" - d="m 94.909092,44.909092 c 0,23.597621 -19.129651,42.727272 -42.727272,42.727272 -23.597621,0 -42.7272721,-19.129651 -42.7272721,-42.727272 0,-23.597621 19.1296511,-42.7272721 42.7272721,-42.7272721 23.597621,0 42.727272,19.1296511 42.727272,42.7272721 z" - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" /> - <path - transform="matrix(1.354892,0,0,1.354892,-6.45624,-0.602477)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path2190-50-7" - style="opacity:0.11885244;fill:url(#radialGradient11011-44-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <g - id="g3357-2-7" - style="opacity:0.57786889"> - <path - id="path3138-65-4" - d="m 18.32319,89.008621 c 0.08929,0.161616 0.195172,0.304391 0.286126,0.464954 -0.09422,-0.152925 -0.19341,-0.311012 -0.286126,-0.464954 z m 91.41715,0 c -0.0927,0.153942 -0.1919,0.312029 -0.28612,0.464954 0.091,-0.160563 0.19683,-0.303338 0.28612,-0.464954 z m -90.987961,0.786846 c 9.012499,15.667623 25.919,26.216263 45.279382,26.216263 19.360383,0 36.266889,-10.54864 45.279399,-26.216263 -9.425234,15.074563 -26.202555,25.071753 -45.279399,25.071753 -19.076844,0 -35.854164,-9.99719 -45.279382,-25.071753 z" - style="fill:url(#linearGradient11013-8-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11015-5-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 21.546815,86.902153 c 0.08342,0.150981 0.182328,0.28436 0.267297,0.434357 -0.08802,-0.142862 -0.180682,-0.290546 -0.267297,-0.434357 z m 85.401185,0 c -0.0866,0.143811 -0.17929,0.291495 -0.2673,0.434357 0.085,-0.149997 0.18388,-0.283376 0.2673,-0.434357 z m -85.00024,0.735065 c 8.419408,14.636582 24.213332,24.491032 42.299653,24.491032 18.086322,0 33.880242,-9.85445 42.299647,-24.491032 -8.804957,14.082532 -24.478205,23.421842 -42.299647,23.421842 -17.821442,0 -33.494685,-9.33931 -42.299653,-23.421842 z" - id="path3143-77-2" - inkscape:connector-curvature="0" /> - <path - id="path3145-3-9" - d="m 24.78966,84.242991 c 0.07668,0.138787 0.167604,0.261396 0.245712,0.399281 -0.08091,-0.131326 -0.166091,-0.267083 -0.245712,-0.399281 z m 78.5047,0 c -0.0796,0.132198 -0.1648,0.267955 -0.24572,0.399281 0.0781,-0.137885 0.16904,-0.260494 0.24572,-0.399281 z m -78.136133,0.675706 c 7.739507,13.454618 22.258007,22.513283 38.883784,22.513283 16.625777,0 31.144276,-9.058666 38.883779,-22.513283 -8.093927,12.945319 -22.501492,21.530433 -38.883779,21.530433 -16.382289,0 -30.789854,-8.585114 -38.883784,-21.530433 z" - style="fill:url(#linearGradient11017-55-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11019-3-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 28.398565,82.501092 c 0.06954,0.125862 0.151993,0.23705 0.222826,0.362091 -0.07337,-0.119094 -0.150621,-0.242206 -0.222826,-0.362091 z m 71.192615,0 c -0.07221,0.119885 -0.14946,0.242997 -0.222835,0.362091 0.07084,-0.125041 0.153293,-0.236229 0.222835,-0.362091 z m -70.858377,0.612769 c 7.018633,12.201428 20.184848,20.416349 35.262068,20.416349 15.077217,0 28.243433,-8.214922 35.262067,-20.416349 -7.340046,11.739565 -20.405662,19.525049 -35.262067,19.525049 -14.856408,0 -27.922024,-7.785484 -35.262068,-19.525049 z" - id="path3147-5-2" - inkscape:connector-curvature="0" /> - <path - id="path3149-06-0" - d="m 32.581299,80.504353 c 0.06169,0.11165 0.134832,0.210283 0.197666,0.321206 -0.06509,-0.105646 -0.133615,-0.214858 -0.197666,-0.321206 z m 63.154077,0 c -0.06405,0.106348 -0.132583,0.21556 -0.197673,0.321206 0.06284,-0.110923 0.135981,-0.209556 0.197673,-0.321206 z m -62.857579,0.543579 c 6.226141,10.823734 17.905727,18.111084 31.280539,18.111084 13.37481,0 25.054396,-7.287351 31.280538,-18.111084 -6.511262,10.414022 -18.101606,17.320425 -31.280538,17.320425 -13.178933,0 -24.769278,-6.906403 -31.280539,-17.320425 z" - style="fill:url(#linearGradient11021-0-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11023-1-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 35.859703,78.248887 c 0.05528,0.09552 0.120825,0.179894 0.177132,0.274788 -0.05833,-0.09038 -0.119734,-0.183809 -0.177132,-0.274788 z m 56.593697,0 c -0.0574,0.09098 -0.11881,0.184409 -0.177139,0.274788 0.05631,-0.09489 0.121856,-0.179272 0.177139,-0.274788 z m -56.327998,0.465024 c 5.579375,9.259547 16.045697,15.493769 28.031148,15.493769 11.98545,0 22.451772,-6.234223 28.031148,-15.493769 -5.834879,8.909044 -16.221229,14.817372 -28.031148,14.817372 -11.809919,0 -22.196271,-5.908328 -28.031148,-14.817372 z" - id="path3151-5-6" - inkscape:connector-curvature="0" /> - <path - id="path3153-0-6" - d="m 39.510842,76.25898 c 0.04873,0.07843 0.106509,0.147722 0.156144,0.225645 -0.05141,-0.07422 -0.105548,-0.150937 -0.156144,-0.225645 z m 49.888034,0 c -0.0506,0.07471 -0.104733,0.151429 -0.15615,0.225645 0.04964,-0.07792 0.107418,-0.14721 0.15615,-0.225645 z m -49.653817,0.381861 c 4.918287,7.603605 14.144477,12.722922 24.709799,12.722922 10.56532,0 19.79151,-5.119317 24.709798,-12.722922 -5.143517,7.315785 -14.299211,12.16749 -24.709798,12.16749 -10.410587,0 -19.566283,-4.851705 -24.709799,-12.16749 z" - style="fill:url(#linearGradient11025-1-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11027-4-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 43.011934,73.358075 c 0.04189,0.07264 0.09156,0.1368 0.134228,0.208962 -0.0442,-0.06873 -0.09073,-0.139778 -0.134228,-0.208962 z m 42.88585,0 c -0.0435,0.06918 -0.09003,0.140234 -0.134233,0.208962 0.04267,-0.07216 0.09234,-0.136327 0.134233,-0.208962 z m -42.684507,0.353628 c 4.227966,7.041427 12.159186,11.782245 21.241581,11.782245 9.082393,0 17.013613,-4.740818 21.24158,-11.782245 -4.421583,6.774887 -12.292202,11.267879 -21.24158,11.267879 -8.949378,0 -16.819999,-4.492992 -21.241581,-11.267879 z" - id="path3157-1-4" - inkscape:connector-curvature="0" /> - <path - id="path3159-2-6" - d="m 46.613057,70.957326 c 0.03495,0.0624 0.0764,0.117528 0.111999,0.179523 -0.03688,-0.05904 -0.07571,-0.120085 -0.111999,-0.179523 z m 35.783635,0 c -0.03629,0.05944 -0.07512,0.120478 -0.112003,0.179523 0.0356,-0.06199 0.07705,-0.117121 0.112003,-0.179523 z m -35.615636,0.303809 c 3.527784,6.049434 10.145535,10.122367 17.723817,10.122367 7.578282,0 14.196033,-4.072933 17.723817,-10.122367 -3.689336,5.820444 -10.256522,9.680464 -17.723817,9.680464 -7.467294,0 -14.034482,-3.86002 -17.723817,-9.680464 z" - style="fill:url(#linearGradient11029-9-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11031-08-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 49.814056,68.456546 c 0.02792,0.05546 0.06102,0.104447 0.08946,0.159541 -0.02946,-0.05247 -0.06047,-0.106718 -0.08946,-0.159541 z m 28.581388,0 c -0.02899,0.05282 -0.06,0.107068 -0.08946,0.159541 0.02844,-0.05509 0.06154,-0.104085 0.08946,-0.159541 z M 49.948241,68.72654 c 2.81774,5.376095 8.103523,8.995687 14.156508,8.995687 6.052985,0 11.338768,-3.619592 14.156507,-8.995687 -2.946775,5.172593 -8.19217,8.602971 -14.156507,8.602971 -5.964336,0 -11.209733,-3.430378 -14.156508,-8.602971 z" - id="path3161-8-2" - inkscape:connector-curvature="0" /> - <path - id="path3163-3-1" - d="m 57.016302,64.055173 c 0.01453,0.02803 0.03176,0.05278 0.04656,0.08063 -0.01533,-0.02652 -0.03148,-0.05393 -0.04656,-0.08063 z m 14.877113,0 c -0.01509,0.02669 -0.03123,0.05411 -0.04657,0.08063 0.0148,-0.02784 0.03203,-0.0526 0.04657,-0.08063 z m -14.807268,0.136444 c 1.466683,2.716869 4.218026,4.54607 7.368711,4.54607 3.150685,0 5.902027,-1.829201 7.36871,-4.54607 -1.533848,2.614028 -4.264168,4.347606 -7.36871,4.347606 -3.104542,0 -5.834862,-1.733578 -7.368711,-4.347606 z" - style="fill:url(#linearGradient11033-7-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient11035-33-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 53.315147,66.555953 c 0.02127,0.04103 0.0465,0.07727 0.06817,0.118032 -0.02245,-0.03882 -0.04608,-0.07895 -0.06817,-0.118032 z m 21.779266,0 c -0.02209,0.03908 -0.04572,0.07921 -0.06817,0.118032 0.02167,-0.04076 0.0469,-0.077 0.06817,-0.118032 z m -21.677017,0.199746 c 2.147143,3.977346 6.174956,6.655194 10.787383,6.655194 4.612428,0 8.64024,-2.677848 10.787382,-6.655194 -2.245468,3.826792 -6.242505,6.364654 -10.787382,6.364654 -4.544877,0 -8.541913,-2.537862 -10.787383,-6.364654 z" - id="path3165-0-8" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3293-0-4" - style="opacity:0.28688528"> - <path - style="opacity:0.73360656;fill:url(#linearGradient11037-70-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - id="path3197-4-4" - inkscape:connector-curvature="0" /> - <path - id="path3199-6-9" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - style="opacity:0.73360656;fill:url(#linearGradient11039-9-3);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11041-34-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - id="path3201-0-5" - inkscape:connector-curvature="0" /> - <path - id="path3203-3-6" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - style="opacity:0.73360656;fill:url(#linearGradient11043-2-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11045-68-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - id="path3205-38-8" - inkscape:connector-curvature="0" /> - <path - id="path3207-5-3" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - style="opacity:0.73360656;fill:url(#linearGradient11047-2-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11049-9-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - id="path3209-2-8" - inkscape:connector-curvature="0" /> - <path - id="path3211-26-3" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - style="opacity:0.73360656;fill:url(#linearGradient11051-03-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11053-11-7);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - id="path3213-93-2" - inkscape:connector-curvature="0" /> - <path - id="path3215-21-4" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - style="opacity:0.73360656;fill:url(#linearGradient11055-7-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11057-6-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - id="path3217-50-8" - inkscape:connector-curvature="0" /> - <path - id="path3219-8-3" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - style="opacity:0.73360656;fill:url(#linearGradient11059-9-0);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3307-4-3" - transform="translate(-0.565862,0.282931)" - style="opacity:0.28688528"> - <path - id="path3309-9-4" - d="m 110.87207,31.359847 c -0.0893,-0.161616 -0.19517,-0.304391 -0.28613,-0.464954 0.0942,0.152925 0.19341,0.311012 0.28613,0.464954 z m -91.417156,0 c 0.09271,-0.153942 0.1919,-0.312029 0.28612,-0.464954 -0.09096,0.160563 -0.19683,0.303338 -0.28612,0.464954 z M 110.44288,30.573001 C 101.43038,14.905378 84.523877,4.3567383 65.163495,4.3567383 45.803112,4.3567383 28.896606,14.905378 19.884094,30.573001 29.30933,15.498438 46.086651,5.5012483 65.163495,5.5012483 c 19.076844,0 35.854165,9.9971897 45.279385,25.0717527 z" - style="opacity:0.73360656;fill:url(#linearGradient11061-53-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11063-60-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 107.64845,33.466315 c -0.0834,-0.150981 -0.18233,-0.28436 -0.2673,-0.434357 0.088,0.142862 0.18068,0.290546 0.2673,0.434357 z m -85.401196,0 c 0.08661,-0.143811 0.17929,-0.291495 0.2673,-0.434357 -0.08498,0.149997 -0.18388,0.283376 -0.2673,0.434357 z M 107.2475,32.73125 C 98.828088,18.094668 83.034164,8.2402183 64.947843,8.2402183 46.861521,8.2402183 31.067601,18.094668 22.648194,32.73125 31.453153,18.648718 47.126401,9.3094083 64.947843,9.3094083 c 17.821442,0 33.494685,9.3393097 42.299657,23.4218417 z" - id="path3311-3-1" - inkscape:connector-curvature="0" /> - <path - id="path3313-0-7" - d="m 104.4056,36.125477 c -0.0767,-0.138787 -0.1676,-0.261396 -0.24571,-0.399281 0.0809,0.131326 0.16609,0.267083 0.24571,0.399281 z m -78.504706,0 c 0.07962,-0.132198 0.1648,-0.267955 0.24572,-0.399281 -0.07812,0.137885 -0.16904,0.260494 -0.24572,0.399281 z M 104.03703,35.449771 C 96.297522,21.995153 81.779022,12.936488 65.153245,12.936488 c -16.625777,0 -31.144276,9.058666 -38.883781,22.513283 8.093929,-12.945319 22.501494,-21.530433 38.883781,-21.530433 16.382289,0 30.789854,8.585114 38.883785,21.530433 z" - style="opacity:0.73360656;fill:url(#linearGradient11065-4-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11067-9-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 100.79669,37.867376 c -0.0695,-0.125862 -0.15199,-0.23705 -0.22283,-0.362091 0.0734,0.119094 0.15063,0.242206 0.22283,0.362091 z m -71.192614,0 c 0.07221,-0.119885 0.14946,-0.242997 0.222835,-0.362091 -0.07084,0.125041 -0.153293,0.236229 -0.222835,0.362091 z M 100.46245,37.254607 C 93.44382,25.053179 80.277605,16.838258 65.200385,16.838258 c -15.077217,0 -28.243433,8.214922 -35.262067,20.416349 7.340046,-11.739565 20.405662,-19.525049 35.262067,-19.525049 14.856408,0 27.922024,7.785484 35.262065,19.525049 z" - id="path3315-0-2" - inkscape:connector-curvature="0" /> - <path - id="path3317-97-8" - d="m 96.613957,39.864115 c -0.06169,-0.11165 -0.134832,-0.210283 -0.197666,-0.321206 0.06509,0.105646 0.133615,0.214858 0.197666,0.321206 z m -63.154077,0 c 0.06405,-0.106348 0.132583,-0.21556 0.197673,-0.321206 -0.06284,0.110923 -0.135981,0.209556 -0.197673,0.321206 z M 96.317459,39.320536 C 90.091318,28.496802 78.411732,21.209452 65.03692,21.209452 c -13.37481,0 -25.054396,7.287351 -31.280538,18.111084 6.511262,-10.414022 18.101606,-17.320425 31.280538,-17.320425 13.178933,0 24.769278,6.906403 31.280539,17.320425 z" - style="opacity:0.73360656;fill:url(#linearGradient11069-4-9);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11071-0-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 93.335553,42.119585 c -0.05528,-0.09552 -0.120825,-0.1799 -0.177132,-0.27479 0.05832,0.09038 0.119734,0.18381 0.177132,0.27479 z m -56.593697,0 c 0.0574,-0.09098 0.11881,-0.18441 0.177139,-0.27479 -0.05631,0.09489 -0.121856,0.17927 -0.177139,0.27479 z m 56.327998,-0.46503 C 87.490479,32.39501 77.024157,26.160788 65.038706,26.160788 c -11.98545,0 -22.451772,6.234223 -28.031148,15.493767 5.834879,-8.909042 16.221229,-14.81737 28.031148,-14.81737 11.809919,0 22.196271,5.908328 28.031148,14.81737 z" - id="path3319-2-3" - inkscape:connector-curvature="0" /> - <path - id="path3321-1-6" - d="m 89.684414,44.109485 c -0.04873,-0.07843 -0.106509,-0.14772 -0.156144,-0.22564 0.05141,0.07421 0.105548,0.15094 0.156144,0.22564 z m -49.888034,0 c 0.0506,-0.0747 0.104733,-0.15143 0.15615,-0.22564 -0.04964,0.07792 -0.107418,0.14721 -0.15615,0.22564 z m 49.653817,-0.38186 C 84.53191,36.124022 75.30572,31.004705 64.740398,31.004705 c -10.56532,0 -19.79151,5.119317 -24.709798,12.72292 5.143517,-7.315783 14.299211,-12.167488 24.709798,-12.167488 10.410587,0 19.566283,4.851705 24.709799,12.167488 z" - style="opacity:0.73360656;fill:url(#linearGradient11073-0-6);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11075-4-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 86.183322,47.010395 c -0.04189,-0.07264 -0.09156,-0.1368 -0.134228,-0.20896 0.0442,0.06872 0.09073,0.13977 0.134228,0.20896 z m -42.88585,0 c 0.0435,-0.06919 0.09003,-0.14024 0.134233,-0.20896 -0.04267,0.07216 -0.09234,0.13632 -0.134233,0.20896 z m 42.684507,-0.35363 C 81.754013,39.615338 73.822793,34.87452 64.740398,34.87452 c -9.082393,0 -17.013613,4.740818 -21.24158,11.782245 4.421583,-6.774887 12.292202,-11.267879 21.24158,-11.267879 8.949378,0 16.819999,4.492992 21.241581,11.267879 z" - id="path3323-1-0" - inkscape:connector-curvature="0" /> - <path - id="path3325-1-6" - d="m 82.582199,49.411145 c -0.03495,-0.06241 -0.0764,-0.11753 -0.111999,-0.17953 0.03688,0.05905 0.07571,0.12009 0.111999,0.17953 z m -35.783635,0 c 0.03629,-0.05944 0.07512,-0.12048 0.112003,-0.17953 -0.0356,0.062 -0.07705,0.11712 -0.112003,0.17953 z M 82.4142,49.107335 C 78.886416,43.057895 72.268665,38.984966 64.690383,38.984966 c -7.578282,0 -14.196033,4.072929 -17.723817,10.122369 3.689336,-5.82045 10.256522,-9.680466 17.723817,-9.680466 7.467294,0 14.034482,3.860016 17.723817,9.680466 z" - style="opacity:0.73360656;fill:url(#linearGradient11077-0-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11079-8-8);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 79.3812,51.911925 c -0.02792,-0.05546 -0.06102,-0.10445 -0.08946,-0.15954 0.02946,0.05247 0.06047,0.10671 0.08946,0.15954 z m -28.581388,0 c 0.02899,-0.05283 0.06,-0.10707 0.08946,-0.15954 -0.02844,0.05509 -0.06154,0.10408 -0.08946,0.15954 z m 28.447203,-0.27 c -2.81774,-5.37609 -8.103523,-8.99568 -14.156508,-8.99568 -6.052985,0 -11.338768,3.61959 -14.156507,8.99568 2.946775,-5.17259 8.19217,-8.60297 14.156507,-8.60297 5.964336,0 11.209733,3.43038 14.156508,8.60297 z" - id="path3327-4-7" - inkscape:connector-curvature="0" /> - <path - id="path3329-1-8" - d="m 72.178954,56.313295 c -0.01453,-0.02803 -0.03176,-0.05278 -0.04656,-0.08063 0.01533,0.02652 0.03148,0.05394 0.04656,0.08063 z m -14.877113,0 c 0.01509,-0.02669 0.03123,-0.05411 0.04657,-0.08063 -0.0148,0.02785 -0.03203,0.0526 -0.04657,0.08063 z m 14.807268,-0.13644 c -1.466683,-2.71687 -4.218026,-4.54607 -7.368711,-4.54607 -3.150685,0 -5.902027,1.8292 -7.36871,4.54607 1.533848,-2.61403 4.264168,-4.34761 7.36871,-4.34761 3.104542,0 5.834862,1.73358 7.368711,4.34761 z" - style="opacity:0.73360656;fill:url(#linearGradient11081-9-4);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.73360656;fill:url(#linearGradient11083-3-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - d="m 75.880109,53.812515 c -0.02127,-0.04103 -0.0465,-0.07727 -0.06817,-0.11803 0.02245,0.03882 0.04608,0.07895 0.06817,0.11803 z m -21.779266,0 c 0.02209,-0.03908 0.04572,-0.07921 0.06817,-0.11803 -0.02167,0.04076 -0.0469,0.077 -0.06817,0.11803 z m 21.677017,-0.19975 c -2.147143,-3.97734 -6.174956,-6.65519 -10.787383,-6.65519 -4.612428,0 -8.64024,2.67785 -10.787382,6.65519 2.245468,-3.82679 6.242505,-6.36465 10.787382,-6.36465 4.544877,0 8.541913,2.53786 10.787383,6.36465 z" - id="path3331-3-4" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(1.400964,0,0,1.400964,-10.24782,-2.576398)" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - sodipodi:ry="42.988293" - sodipodi:rx="42.988293" - sodipodi:cy="44.909092" - sodipodi:cx="52.18182" - id="path3086-1-3" - style="opacity:0.15983605;fill:url(#radialGradient11085-51-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="opacity:0.19672134;fill:url(#radialGradient11087-5-1);fill-opacity:1;fill-rule:nonzero;stroke:none" - id="path3100-93-6" - sodipodi:cx="52.18182" - sodipodi:cy="44.909092" - sodipodi:rx="42.988293" - sodipodi:ry="42.988293" - d="m 95.170113,44.909092 c 0,23.741778 -19.246515,42.988293 -42.988293,42.988293 -23.741779,0 -42.9882928,-19.246515 -42.9882928,-42.988293 0,-23.741779 19.2465138,-42.9882927 42.9882928,-42.9882927 23.741778,0 42.988293,19.2465137 42.988293,42.9882927 z" - transform="matrix(-1.400964,0,0,1.400964,135.9619,-2.576398)" /> - <path - id="path3570-4-9" - d="m 40.9375,19.34375 c -1.378982,0.08425 -2.721284,0.544956 -3.875,1.3125 -5.160376,3.349464 -9.759998,7.797045 -13.40625,13.1875 -7.292501,10.780907 -9.542508,23.591287 -7.25,35.46875 2.292507,11.877459 9.156596,22.92625 19.9375,30.21875 10.780909,7.2925 23.591285,9.54251 35.46875,7.25 11.877462,-2.29251 22.957499,-9.156596 30.25,-19.9375 7.2925,-10.780908 9.5425,-23.591289 7.25,-35.46875 C 107.01999,39.497538 100.1559,28.448751 89.375,21.15625 85.785149,18.722745 80.902255,19.660149 78.46875,23.25 c -2.433505,3.589851 -1.496101,8.472745 2.09375,10.90625 7.265039,4.914273 11.806943,12.22532 13.34375,20.1875 1.536801,7.962181 0.07052,16.45371 -4.84375,23.71875 C 84.148228,85.327539 76.80593,89.838193 68.84375,91.375 60.881568,92.911807 52.390041,91.445523 45.125,86.53125 37.859968,81.616982 33.349307,74.305937 31.8125,66.34375 30.275694,58.381572 31.741981,49.890035 36.65625,42.625 c 2.457137,-3.632522 5.528356,-6.579432 8.96875,-8.8125 2.968319,-1.884093 4.32342,-5.507692 3.3125,-8.875 -1.01092,-3.367307 -4.141021,-5.656122 -7.65625,-5.59375 -0.117417,0.0019 -0.226887,-0.0071 -0.34375,0 z m 21.4375,21 c -1.937828,0.12532 -3.767515,0.973547 -5.125,2.375 -1.447987,1.494885 -2.253965,3.512862 -2.21875,5.59375 -10e-7,1.266966 0,24.0625 0,24.0625 -0.137593,2.885743 1.33379,5.609689 3.8125,7.09375 2.478711,1.484059 5.55254,1.484061 8.03125,0 2.478713,-1.484063 3.950093,-4.208007 3.8125,-7.09375 0,0 -10e-7,-22.795621 0,-24.0625 0.0358,-2.118777 -0.785781,-4.154894 -2.28125,-5.65625 -1.495467,-1.501357 -3.537348,-2.339972 -5.65625,-2.3125 -0.13006,0.0019 -0.245811,-0.0084 -0.375,0 z" - style="fill:url(#radialGradient11089-09-2);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:4" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4855-2-5" - d="M 89.052758,110.33731 C 115.83808,95.818903 126.60843,63.173429 113.08007,36.784006 c -3.14854,-6.141789 -7.35212,-11.402152 -12.28011,-15.71269 4.52788,4.044347 8.37165,8.938861 11.28913,14.629954 13.10314,25.559983 2.28328,57.263399 -24.150142,70.76265 -26.43342,13.49924 -58.52431,3.70984 -71.62745,-21.850166 C 3.2083579,59.053773 14.028228,27.350338 40.461648,13.851101 52.955568,7.4706054 66.709008,6.3080926 79.127588,9.5390554 65.940318,5.9457846 51.268668,7.0675156 37.954728,13.86679 10.230318,28.025312 -1.1178821,61.276793 12.625218,88.085107 c 13.74309,26.808323 47.40094,37.075733 75.12534,22.917223 0.4332,-0.22125 0.87703,-0.43458 1.3022,-0.66502 z M 80.055218,9.7786728 c -0.30005,-0.087287 -0.59939,-0.1708794 -0.90105,-0.2531907 0.3006,0.07834 0.60207,0.1696947 0.90105,0.2531907 z" - style="fill:url(#linearGradient11091-8-5);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - <path - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4868-42-5" - d="M 60.886675,3.5011061 C 30.994595,4.4513813 7.0114547,29.083452 7.0114647,59.284292 c 0,15.796568 6.5792803,30.076913 17.1118103,40.23189 C 60.218215,87.621632 71.214115,42.093571 109.07913,28.465026 99.107975,13.412218 82.025115,3.5011061 62.664525,3.5011061 c -0.60001,0 -1.18239,-0.018932 -1.77785,0 z" - style="opacity:0.57674417;fill:url(#radialGradient11093-8-2);fill-opacity:1;fill-rule:nonzero;stroke:none" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.7399)" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" - sodipodi:ry="17.67767" - sodipodi:rx="17.67767" - sodipodi:cy="65.774605" - sodipodi:cx="177.4838" - id="path7278-6-3" - style="opacity:0.54945056;fill:#060606;fill-opacity:1;stroke:none;filter:url(#filter7312-8-8)" - sodipodi:type="arc" /> - <path - transform="matrix(0.0808061,0,0,0.07384907,-8.055844,1000.5922)" - sodipodi:type="arc" - style="fill:url(#radialGradient11009-4-9);fill-opacity:1;stroke:none" - id="path7280-68-1" - sodipodi:cx="177.4838" - sodipodi:cy="65.774605" - sodipodi:rx="17.67767" - sodipodi:ry="17.67767" - d="m 195.16146,65.774605 c 0,9.763107 -7.91456,17.677669 -17.67766,17.677669 -9.76311,0 -17.67767,-7.914562 -17.67767,-17.677669 0,-9.763107 7.91456,-17.67767 17.67767,-17.67767 9.7631,0 17.67766,7.914563 17.67766,17.67767 z" /> - <rect - transform="scale(-1,1)" - style="opacity:0.29304026;fill:url(#linearGradient10892-7-7);fill-opacity:1;stroke:none" - id="rect7402-51-6" - width="2.6215534" - height="74.980072" - x="-25.621553" - y="951.75006" - rx="0" - ry="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - id="path3584-28-9" - d="m 62,112 -2,0 0,-96" - style="fill:none;stroke:url(#linearGradient11007-33-4);stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3598-261-9)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsscsc" - id="rect7363-7-7" - d="m 3.9884152,952.73011 36.3115848,0 c 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - style="opacity:0.56306308;fill:url(#linearGradient10888-6-2);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="0.16450633" - rx="0.25630134" - y="955.68286" - x="22.000366" - height="70.530472" - width="1.4270998" - id="rect3186-28-4" - style="fill:#000000;fill-opacity:1;stroke:none" /> - <rect - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3572-3-4" - width="1.4270998" - height="70.530472" - x="22.000366" - y="955.68286" - rx="0.25630134" - ry="0.16450633" /> - <rect - ry="0.16450633" - rx="0.11117215" - y="954.7301" - x="22.399998" - height="70.530472" - width="0.61901248" - id="rect3574-21-7" - style="opacity:0.71794876;fill:url(#linearGradient10883-1-4);fill-opacity:1;stroke:none" /> - <path - id="rect3394-3-8" - d="m 22.000285,962.77201 0,8.26816 1.427204,0 0,-8.26816 -1.427204,0 z" - style="fill:url(#radialGradient10880-3-5);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.4837111,0,0,0.1142406,-289.45421,930.01349)" - style="opacity:0.46520146;fill:url(#radialGradient11005-70-8);fill-opacity:1;stroke:none;filter:url(#filter3469-0-2)" - d="m 642.40625,286.75 0,72.375 5.90625,0 0,-72.375 -5.90625,0 z" - id="path3407-20-7" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient10876-8-2);fill-opacity:1;stroke:none" - d="m 22.000285,1020.5549 0,6.2712 1.427204,0 0,-6.2712 -1.427204,0 z" - id="path4287-26-2" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.7142317,0,0,0.6896645,-20.854876,948.97091)" - sodipodi:nodetypes="ccccc" - id="path4787-1-8" - d="m 59.301763,96.79545 -4.52e-4,15.95387 3.500264,0 L 62.7,96.79545 l -3.398237,0 z" - style="opacity:0.54945056;fill:url(#radialGradient11003-9-2);fill-opacity:1;stroke:none;filter:url(#filter4927-9-8)" - inkscape:connector-curvature="0" /> - <rect - y="951.72955" - x="22.015116" - height="6.0287628" - width="0.54780781" - id="rect7273-37-2" - style="opacity:0.79120878;fill:#060606;fill-opacity:1;stroke:none" /> - <path - style="opacity:0.47985349;fill:url(#radialGradient10871-5-2);fill-opacity:1;stroke:none" - d="m 4.1483093,1030.7925 35.7115847,0 c 0.692448,0 1.249906,-0.2307 1.249906,-0.5173 -11.979557,-4.1048 -26.09051,-3.5144 -38.2113962,0 0,0.2866 0.5574578,0.5173 1.2499055,0.5173 z" - id="path7406-8-5" - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" /> - <g - id="Livello_1-40-5" - transform="matrix(0.5,0,0,0.5,190,942.59711)" /> - <rect - ry="1.6761006" - rx="1.6761006" - y="951.7301" - x="2" - height="4" - width="40.000008" - id="rect4876-1-3" - style="opacity:0.65315312;fill:url(#linearGradient10867-15-7);fill-opacity:1;stroke:none" /> - <g - transform="matrix(0.6010762,0,0,0.6010762,374.33595,1083.6037)" - id="g5647-36-5"> - <path - style="opacity:0.481982;fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5346-81-3)" - d="m -498,-139.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.311808 -10.96875,3.718748 -11.9257,1.21541 -23.53125,7.587115 -23.53125,13.687495 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687495 -3.99292,-0.40694 -9.15288,-1.293738 -10.96875,-3.718748 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-139.31937 z" - id="path5328-5-9" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5184-7-3" - d="m -498,-141.31937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.215408 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472085 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.31937 z" - style="fill:#000000;fill-opacity:0.76216215;fill-rule:evenodd;stroke:none;filter:url(#filter5214-1-1)" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#linearGradient3381-7-3-9);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - id="path3435-0-8" - sodipodi:nodetypes="ccssszssscc" - inkscape:connector-curvature="0" /> - <path - style="fill:url(#radialGradient3383-8-3-4);fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m -497.9851,-141.63165 -14.5625,5.4375 c 0.0823,0.2115 0.14371,0.53213 0.21875,0.90625 l 14.34375,-5.34375 14.28125,5.34375 c 0.0786,-0.3886 0.19552,-0.70835 0.28125,-0.90625 l -14.5625,-5.4375 z m -13.5625,21.21875 c -0.0808,6.89711 -0.65883,13.728 -2.0625,15.375 -1.9651,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.92571,1.21541 -23.53125,7.587123 -23.53125,13.687503 0,0.144795 0.0214,0.294549 0.0313,0.4375 0.692,-5.921036 11.94697,-11.947572 23.5,-13.125003 3.99292,-0.40694 9.00365,-1.413 10.96875,-3.71875 1.47226,-1.72748 2.02909,-9.1492 2.0625,-16.375 z m 27.125,2.0625 c 0.12575,6.40052 0.70665,12.54356 2.03125,14.3125 1.81587,2.42501 6.97582,3.31181 10.96875,3.71875 11.63062,1.18534 22.94516,7.039381 23.5,13.218753 0.0146,-0.173402 0.0625,-0.355119 0.0625,-0.53125 -1e-5,-6.350323 -11.6368,-12.472093 -23.5625,-13.687503 -3.99293,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -1.25624,-1.67765 -1.86615,-7.27675 -2.03125,-13.3125 z" - id="path5218-9-5" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - sodipodi:nodetypes="cscscscc" - id="path5281-38-3" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.41058,-0.396513 -21.97647,-1.083033 -39.53125,0 z" - style="opacity:0.11711713;fill:url(#linearGradient3386-41-4);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-3-6)" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccc" - style="opacity:0.46846846;fill:url(#radialGradient3388-54-4);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257-87-4)" - d="m -511.82885,-112.6004 c -0.0609,5.48859 -0.3553,10.83813 -8.03125,11.25 -3.86166,0.69826 -4.19519,2.151173 -4.875,3.531253 9.03627,-1.36341 19.4666,-4.011823 26.94953,-2.786613 l 0.13258,-8.98705 c -4.24239,-1.08888 -9.97027,-1.89853 -14.17586,-3.00759 z" - id="path5235-80-4" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccccc" - style="opacity:0.4099099;fill:url(#radialGradient3390-7-5);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5257-87-4)" - d="m -510.4226,-109.2254 c -0.35428,4.99035 -5.21804,8.28427 -9.96166,9.09727 5.05584,-0.89459 16.56776,-1.03031 22.5324,-1.04798 l 0.11048,-6.20554 c -3.46184,-0.52011 -8.29888,-0.68808 -12.68122,-1.84375 z" - id="path5261-0-4" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsccscc" - id="path5350-0-3" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 l 53.15625,0 c -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="fill:url(#linearGradient3392-6-12-9);fill-opacity:1;fill-rule:evenodd;stroke:none" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccssszssscc" - id="path5265-09-9" - d="m -498,-141.61937 -14.5625,5.4375 c 1.28562,3.30562 1.77043,27.83222 -1.0625,31.15625 -1.96509,2.30575 -6.97583,3.31181 -10.96875,3.71875 -11.9257,1.21541 -23.53125,7.587113 -23.53125,13.687493 0,10.91453 28.21176,16.59375 50.125,16.59375 21.78824,0 50.125,-5.67922 50.125,-16.59375 0,-6.350325 -11.6368,-12.472083 -23.5625,-13.687493 -3.99292,-0.40694 -9.15288,-1.29374 -10.96875,-3.71875 -2.8714,-3.83463 -2.27652,-28.28154 -1.03125,-31.15625 L -498,-141.61937 z" - style="opacity:0.5495496;fill:none;stroke:url(#linearGradient3394-8-3-8);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.11711713;fill:url(#linearGradient3396-3-9);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-3-6)" - d="m -215.03125,91.125 c 1.79705,0.578786 3.37742,1.345738 4.28125,2.40625 2.41859,2.837859 2.41412,21.09051 1.5625,28.4375 4.74841,0.47841 9.54702,0.71875 14.0625,0.71875 4.50925,0 9.27026,-0.23618 14.03125,-0.71875 -0.83121,-7.18431 -0.87047,-25.188384 1.5625,-28.4375 0.81106,-1.083138 2.28787,-1.842548 4.03125,-2.40625 -10.15799,-0.507294 -21.02253,-0.676229 -39.53125,0 z" - id="path3569-5-8" - sodipodi:nodetypes="cscscscc" - transform="matrix(0.9370573,0,0,0.9370573,-315.15064,-187.06378)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.55405405;fill:#000000;fill-opacity:0.49729728;fill-rule:evenodd;stroke:url(#radialGradient3398-5-3);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter5402-4-6)" - d="m -484.9792,-110.89486 c -0.0309,6.01372 -3.42647,8.66713 -12.45647,8.86418 13.73668,-0.71873 21.51974,1.32042 27.66815,2.278495 -3.12515,-1.117485 -8.27754,-1.167505 -11.4047,-2.985595 -3.35231,-1.94899 -3.48432,-5.07232 -3.80698,-8.15708 z" - id="path5360-82-0" - sodipodi:nodetypes="cccsc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - style="opacity:0.43243247;fill:url(#radialGradient3400-99-1);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649-6-3)" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.5131,9.379008 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.75355,-6.234085 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - id="path3620-79-0" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccscsssc" - id="path5543-8-5" - d="m -511.63312,-136.00757 -0.77482,0.27894 c 0.47095,1.21093 0.83949,5.34079 0.96078,10.19663 0.0638,-3.69336 0.007,-7.47744 -0.18596,-10.47557 z m 26.93275,0 c -0.206,3.1902 -0.30814,7.24261 -0.21695,11.18841 0.10566,-5.25273 0.47249,-9.78227 0.96078,-10.90947 l -0.74383,-0.27894 z m 34.68095,44.784613 c -2.41916,9.028413 -28.98934,15.17194 -48.16282,15.17194 -19.23909,0 -45.72354,-6.122102 -48.13183,-15.10996 -0.53243,0.94277 -0.83681,1.90053 -0.83681,2.85134 0,10.66206 27.56228,16.20924 48.96864,16.20924 21.28424,0 48.96864,-5.54718 48.96864,-16.20924 0,-0.98976 -0.27209,-1.95349 -0.80582,-2.91332 z" - style="fill:url(#radialGradient3402-7-8);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3649-6-3)" - inkscape:connector-curvature="0" /> - <g - id="g5608-1-7" - mask="url(#mask5641-70-0)"> - <path - style="opacity:0.27027025;fill:url(#radialGradient3404-20-7);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178-0-0)" - d="m -221.76796,93.20625 c -9.66876,0.985393 -19.22404,5.312612 -22.36077,10.23165 -2.95517,4.63431 6.61982,3.87902 10.65303,2.25713 9.14413,-3.49527 22.59713,-3.45175 37.58274,-3.45175 17.89278,0 33.6687,0.89525 42.39208,5.61044 5.43293,2.93663 9.21476,-0.42103 8.02165,-3.09878 -2.41912,-5.429356 -12.55538,-10.470722 -23.13248,-11.54869 -30.70887,-2.692478 -35.76778,-1.861224 -53.15625,0 z" - id="path5283-02-5" - sodipodi:nodetypes="cscssscc" - transform="matrix(0.9478225,0,0,0.9234897,-313.03905,-186.89507)" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.9410153,0,0,0.9168573,-314.3667,-186.17274)" - sodipodi:nodetypes="cscscccc" - id="path3661-73-6" - d="m -221.76796,93.20625 c -9.8876,1.007694 -19.55436,5.201049 -22.5707,10.56315 -2.20296,3.91619 6.14869,3.79059 10.73888,1.97324 9.1757,-3.44127 22.65328,-3.63195 37.70682,-3.63195 17.80642,0 33.44474,0.99076 42.26424,5.67477 5.13681,3.01365 9.64454,-0.29612 8.02046,-3.33328 -2.45487,-5.409725 -12.61965,-10.187663 -23.00345,-11.24593 -29.41254,-2.955932 -35.37204,-1.884684 -53.15625,0 z" - style="opacity:0.27027025;fill:url(#radialGradient3406-5-9);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5178-0-0)" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.14864867;fill:url(#linearGradient3408-3-2);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3600-3-6)" - d="m -499.8125,-102.09375 c -4.83212,0.0399 -10.33985,0.16863 -16.84375,0.40625 1.68391,0.54236 3.18431,1.28749 4.03125,2.28125 1.26736,1.487077 1.80071,7.479387 1.90625,13.6875 l 11.25,0 c 0.91468,0 1.65625,-0.832157 1.65625,-1.84375 l 0,-14.53125 c -0.66994,0.002 -1.30348,-0.006 -2,0 z" - id="path5557-6-3" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - id="g3290-73-6" - transform="matrix(0.5,0,0,0.5,218,951.29176)" /> - <path - style="opacity:0.56306308;fill:url(#linearGradient10845-3-4);fill-opacity:1;stroke:none" - d="m 3.9884152,952.73011 c 11.9179838,-0.55763 23.8669268,-1.02239 36.3115848,0 0.692448,0 0.749906,0.23069 0.749906,0.51725 0,0.28655 0.110824,26.3165 -0.549906,26.51725 -10.417481,3.16514 -25.720899,-0.29358 -36.5115848,0 -0.6924477,0 -0.9499055,-26.2307 -0.9499055,-26.51725 0,-0.28656 0.2574578,-0.51725 0.9499055,-0.51725 z" - id="path4347-2-5" - sodipodi:nodetypes="ccsscsc" - inkscape:connector-curvature="0" /> - <rect - y="936.7301" - x="26" - height="78" - width="101" - id="rect3383-74-7" - style="fill:url(#radialGradient10842-0-7);fill-opacity:1;stroke:none" - rx="5.1142359" - ry="5.1142359" /> - <rect - ry="4.9999995" - rx="4.9999995" - style="fill:url(#linearGradient10839-81-8);fill-opacity:1;stroke:none" - id="rect3311-8-1" - width="100" - height="77" - x="26.5" - y="937.2301" /> - <rect - y="938.7301" - x="28" - height="73" - width="96" - id="rect3271-3-5" - style="fill:url(#linearGradient10836-16-4);fill-opacity:1;stroke:none" - rx="2.5754218" - ry="2.5754218" /> - <path - sodipodi:nodetypes="ccccccccc" - id="rect3298-25-7" - d="m 30.568278,938.72476 c -1.426781,0 -2.573138,1.14636 -2.573138,2.57314 l 0,1.9149 c 0,-1.42679 1.146357,-3.21144 2.573138,-3.21144 l 91.858582,-0.0111 c 1.42679,0 2.57314,1.78465 2.57314,3.21143 l 0,-1.91489 c 0,-1.42678 -1.14635,-2.57314 -2.57314,-2.57314 l -91.858582,0.0111 z" - style="fill:url(#linearGradient10833-0-5);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - ry="1.3000005" - rx="1.3000005" - style="opacity:0.70720712;fill:url(#radialGradient10830-1-0);fill-opacity:1;stroke:none" - id="rect3281-5-0" - width="87" - height="64.999992" - x="32.5" - y="942.2301" /> - <rect - y="942.2301" - x="32.5" - height="65" - width="87" - id="rect5414-11-7" - style="opacity:0.70720712;fill:url(#radialGradient10827-9-4);fill-opacity:1;stroke:none" - rx="1.3000005" - ry="1.3000005" /> - <rect - ry="0.64175582" - rx="0.64175582" - style="fill:#000000;fill-opacity:1;stroke:none" - id="rect3267-6-8" - width="86" - height="64.000023" - x="33" - y="942.7301" /> - <path - sodipodi:nodetypes="cccscccc" - id="path3420-1-2" - d="m 30.6,938.73011 c -1.426782,0 -2.573139,1.14636 -2.573139,2.57314 L 28,979.73011 c 15.082806,2.00954 22.213417,2.81832 39.622346,2.81832 24.127254,0 38.223634,-2.1432 57.377654,-5.84441 l -0.0252,-35.40077 c 4e-5,-1.42678 -1.14631,-2.57314 -2.5731,-2.57314 l -91.8017,0 z" - style="fill:url(#linearGradient10823-5-1);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <rect - y="943.7301" - x="34" - height="62" - width="84" - id="rect2487-3-4" - style="fill:url(#linearGradient10820-9-4);fill-opacity:1;stroke:none" /> - <rect - style="fill:url(#radialGradient10817-27-4);fill-opacity:1;stroke:none" - id="rect4321-8-3" - width="82" - height="60" - x="35" - y="944.7301" /> - <path - sodipodi:nodetypes="cccc" - id="rect4373-24-5" - d="m 34.5,944.23011 82.5,0 -82.5,60.99999 0,-60.99999 z" - style="fill:url(#linearGradient10814-02-5);fill-opacity:1;stroke:none" - inkscape:connector-curvature="0" /> - <path - transform="matrix(1.7320754,0,0,1.7320754,24.34579,838.31798)" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - sodipodi:ry="1" - sodipodi:rx="1" - sodipodi:cy="107" - sodipodi:cx="-1" - id="path4419-7-9" - style="fill:url(#radialGradient11001-9-9);fill-opacity:1;stroke:none" - sodipodi:type="arc" /> - <path - sodipodi:type="arc" - style="fill:url(#radialGradient19194);fill-opacity:1;stroke:none" - id="path4437-9-2" - sodipodi:cx="-1" - sodipodi:cy="107" - sodipodi:rx="1" - sodipodi:ry="1" - d="m 0,107 c 0,0.55228 -0.44771525,1 -1,1 -0.5522847,0 -1,-0.44772 -1,-1 0,-0.55228 0.4477153,-1 1,-1 0.55228475,0 1,0.44772 1,1 z" - transform="matrix(1.7320754,0,0,1.7320754,24.34579,780.95949)" /> - </g> - <text - xml:space="preserve" - style="font-size:32px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans" - x="90.157196" - y="911.66412" - id="text14188-8-8" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan14190-6-8" - x="90.157196" - y="911.66412">ARBITER</tspan></text> - <path - sodipodi:type="arc" - style="fill:none;stroke:#ff0000;stroke-width:4;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - id="path20444" - sodipodi:cx="511.42856" - sodipodi:cy="568.79077" - sodipodi:rx="158.57143" - sodipodi:ry="127.85714" - d="m 669.99998,568.79077 c 0,70.61355 -70.99484,127.85714 -158.57142,127.85714 -87.57658,0 -158.57143,-57.24359 -158.57143,-127.85714 0,-70.61355 70.99485,-127.85714 158.57143,-127.85714 87.57658,0 158.57142,57.24359 158.57142,127.85714 z" - transform="translate(63.770872,132.01309)" /> - <text - xml:space="preserve" - style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans" - x="458.64832" - y="768.08661" - id="text20446" - sodipodi:linespacing="125%"><tspan - sodipodi:role="line" - id="tspan20448" - x="458.64832" - y="768.08661">INTERWEBZ</tspan></text> - <path - style="fill:none;stroke:#ff0000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="M 219.79151,809.0032 426.80994,745.97912" - id="path20450" - inkscape:connector-type="polyline" - inkscape:connector-curvature="0" - inkscape:connection-start="#layer1-6-8" - inkscape:connection-start-point="d4" - inkscape:connection-end="#path20444" - inkscape:connection-end-point="d4" /> - <path - style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 575.91371,708.66101 0,0" - id="path20475" - inkscape:connector-type="polyline" - inkscape:connector-curvature="0" /> - <path - style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" - d="m 58.260693,695.90326 0.310735,132.17321" - id="path20481" - inkscape:connector-type="polyline" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <g - id="g44644" - transform="translate(-97.142857,168.57143)"> - <path - style="fill:#fe98fe" - d="m 562.8737,557.35549 0,-2.5465 -5.09298,0 -5.09299,0 0,-45.81564 0,-45.81565 5.07176,0 5.07177,0 0,2.49556 0,2.49556 0.0509,0.0509 0.0509,0.0509 20.31252,0 20.31252,0 0.0509,-0.0509 0.0509,-0.0509 0,-2.49556 0,-2.49556 20.3295,0 20.3295,0 0,2.49556 0,2.49556 0.0509,0.0509 0.0509,0.0509 16.51548,0 16.51547,0 3.82643,-0.0282 3.82643,-0.0282 0.0109,-2.52888 0.0109,-2.52889 2.53588,-0.0109 2.53588,-0.0109 0,-2.54616 0,-2.54616 43.29038,0 43.29037,0 0,2.54616 0,2.54616 2.53589,0.0109 2.53588,0.0109 0.0109,2.53555 0.0109,2.53554 2.53556,0.0109 2.53554,0.0109 0.0107,10.17536 0.0107,10.17536 2.54607,0 2.54607,0 0.0109,-2.53588 0.0109,-2.53588 5.07176,0 5.07177,0 0.0109,2.53555 0.0109,2.53555 2.53555,0.0109 2.53554,0.0109 0.0107,10.17536 0.0107,10.17536 2.54641,0 2.5464,0 0,12.73247 0,12.73246 -2.54616,0 -2.54616,0 -0.0109,2.53588 -0.0109,2.53589 -2.53554,0.0109 -2.53555,0.0109 -0.0109,2.53556 -0.0109,2.53554 -2.53555,0.0109 -2.53555,0.0109 -0.0109,2.53555 -0.0109,2.53555 -2.53554,0.0109 -2.53555,0.0109 -0.0109,2.53555 -0.0109,2.53554 -2.53588,0.0109 -2.53589,0.0109 0,2.54616 0,2.54616 -5.09298,0 -5.09299,0 0,-2.54616 0,-2.54616 -2.53588,-0.0109 -2.53588,-0.0109 -0.0109,-2.53588 -0.0109,-2.53588 -2.54616,0 -2.54616,0 0,5.09298 0,5.09299 -7.63948,0 -7.63947,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -12.73246,0 -12.73247,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,2.5465 0,2.54649 -7.63948,0 -7.63948,0 0,-5.09299 0,-5.09298 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,2.5465 0,2.54649 -22.91843,0 -22.91843,0 0,-2.54649 0,-2.5465 -20.37195,0 -20.37194,0 0,2.5465 0,2.54649 -20.37194,0 -20.37194,0 0,-2.54649 z m 193.53344,-40.74389 0,-2.54649 -2.54649,0 -2.54649,0 0,2.54649 0,2.5465 2.54649,0 2.54649,0 0,-2.5465 z m 35.6509,0 0,-2.54649 -2.54649,0 -2.5465,0 0,2.54649 0,2.5465 2.5465,0 2.54649,0 0,-2.5465 z" - id="path44674" - inkscape:connector-curvature="0" /> - <path - style="fill:#d5d5d5" - d="m 562.8737,557.35549 0,-2.5465 -5.09298,0 -5.09299,0 0,-45.81564 0,-45.81565 5.07176,0 5.07177,0 0,2.49556 0,2.49556 0.0509,0.0509 0.0509,0.0509 20.31252,0 20.31252,0 0.0509,-0.0509 0.0509,-0.0509 0,-2.49556 0,-2.49556 20.3295,0 20.3295,0 0,2.49556 0,2.49556 0.0509,0.0509 0.0509,0.0509 16.51548,0 16.51547,0 3.82643,-0.0282 3.82643,-0.0282 0.0109,-2.52888 0.0109,-2.52889 2.53588,-0.0109 2.53588,-0.0109 0,-2.54616 0,-2.54616 43.29038,0 43.29037,0 0,2.54616 0,2.54616 2.53589,0.0109 2.53588,0.0109 0.0109,2.53555 0.0109,2.53554 2.53556,0.0109 2.53554,0.0109 0.0107,10.17536 0.0107,10.17536 2.54607,0 2.54607,0 0.0109,-2.53588 0.0109,-2.53588 5.07176,0 5.07177,0 0.0109,2.53555 0.0109,2.53555 2.53555,0.0109 2.53554,0.0109 0.0107,10.17536 0.0107,10.17536 2.54641,0 2.5464,0 0,12.73247 0,12.73246 -2.54616,0 -2.54616,0 -0.0109,2.53588 -0.0109,2.53589 -2.53554,0.0109 -2.53555,0.0109 -0.0109,2.53556 -0.0109,2.53554 -2.53555,0.0109 -2.53555,0.0109 -0.0109,2.53555 -0.0109,2.53555 -2.53554,0.0109 -2.53555,0.0109 -0.0109,2.53555 -0.0109,2.53554 -2.53588,0.0109 -2.53589,0.0109 0,2.54616 0,2.54616 -5.09298,0 -5.09299,0 0,-2.54616 0,-2.54616 -2.53588,-0.0109 -2.53588,-0.0109 -0.0109,-2.53588 -0.0109,-2.53588 -2.54616,0 -2.54616,0 0,5.09298 0,5.09299 -7.63948,0 -7.63947,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -12.73246,0 -12.73247,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,2.5465 0,2.54649 -7.63948,0 -7.63948,0 0,-5.09299 0,-5.09298 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,2.5465 0,2.54649 -22.91843,0 -22.91843,0 0,-2.54649 0,-2.5465 -20.37195,0 -20.37194,0 0,2.5465 0,2.54649 -20.37194,0 -20.37194,0 0,-2.54649 z m 173.1615,-20.37194 0,-2.5465 -2.54649,0 -2.54649,0 0,-10.18597 0,-10.18597 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 5.09299,0 5.09298,0 0,-10.18597 0,-10.18597 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 5.09298,0 5.09299,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 7.63947,0 7.63948,0 0,-10.18597 0,-10.18597 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.5465,0 -2.54649,0 0,-2.5465 0,-2.54649 -33.1044,0 -33.10441,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,25.46493 0,25.46493 2.5465,0 2.54649,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 17.82545,0 17.82545,0 0,-2.54649 z m -35.6509,-5.09299 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 15.27896,-5.09299 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m -20.37194,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m 10.18597,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m 15.27895,-10.18597 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 40.74389,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m -61.11583,-5.09299 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.5465,0 0,-2.5465 z m 25.46493,-5.09298 0,-2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 -2.5465,0 -2.54649,0 0,-2.54649 z m 15.27896,0 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m 15.27895,40.74388 0,-2.54649 -2.54649,0 -2.54649,0 0,2.54649 0,2.5465 2.54649,0 2.54649,0 0,-2.5465 z m 35.6509,0 0,-2.54649 -2.54649,0 -2.5465,0 0,2.54649 0,2.5465 2.5465,0 2.54649,0 0,-2.5465 z" - id="path44672" - inkscape:connector-curvature="0" /> - <path - style="fill:#fecb98" - d="m 562.8737,557.35549 0,-2.5465 -5.09298,0 -5.09299,0 0,-45.81564 0,-45.81565 5.07143,0 5.07143,0 0.0109,2.53588 0.0109,2.53588 20.39316,0 20.39316,0 0.0109,-2.53588 0.0109,-2.53588 20.32883,0 20.32884,0 0.0109,2.53588 0.0109,2.53588 20.39317,0 20.39316,0 0.0109,-2.53555 0.0109,-2.53555 2.53555,-0.0109 2.53554,-0.0109 0.0109,-2.55711 0.0109,-2.5571 43.24727,0 43.24727,0 0.0109,2.5571 0.0109,2.55711 2.53555,0.0109 2.53555,0.0109 0.0109,2.53555 0.0109,2.53555 2.53579,0.0109 2.5358,0.0109 0.0107,10.17503 0.0107,10.17502 2.57833,0.0109 2.57832,0.0109 0,-2.54682 0,-2.54682 5.05054,0 5.05055,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,10.18598 0,10.18597 2.56772,0 2.56771,0 0,12.68969 0,12.68969 -2.5571,0.0109 -2.55711,0.0109 -0.0109,2.53588 -0.0109,2.53589 -2.54616,0 -2.54616,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,2.54616 0,2.54616 -2.53588,0.0109 -2.53588,0.0109 -0.0109,2.53588 -0.0109,2.53588 -2.54616,0 -2.54616,0 0,2.56772 0,2.56771 -5.05054,0 -5.05055,0 0,-2.51678 0,-2.51679 -0.0509,-0.0509 -0.0509,-0.0509 -2.49556,0 -2.49556,0 0,-2.49556 0,-2.49556 -0.0509,-0.0509 -0.0509,-0.0509 -2.48707,0 -2.48708,0 -0.0509,0.0509 -0.0509,0.0509 0,5.06327 0,5.06328 -7.61826,0 -7.61825,0 0,-2.54616 0,-2.54616 -2.53589,-0.0109 -2.53588,-0.0109 -0.0109,-2.53588 -0.0109,-2.53588 -12.73179,0 -12.7318,0 -0.0109,2.53588 -0.0109,2.53588 -2.53588,0.0109 -2.53588,0.0109 0,2.54616 0,2.54616 -7.63948,0 -7.63948,0 0,-5.09299 0,-5.09298 -2.54615,0 -2.54617,0 -0.0109,2.53588 -0.0109,2.53588 -2.53588,0.0109 -2.53589,0.0109 0,2.54616 0,2.54616 -22.91843,0 -22.91843,0 0,-2.54649 0,-2.5465 -20.37195,0 -20.37194,0 0,2.5465 0,2.54649 -20.37194,0 -20.37194,0 0,-2.54649 z m 173.1615,-20.37194 0,-2.5465 -2.54649,0 -2.54649,0 0,-10.18597 0,-10.18597 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 5.09299,0 5.09298,0 0,-10.18597 0,-10.18597 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 5.09298,0 5.09299,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 7.63947,0 7.63948,0 0,-10.18597 0,-10.18597 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.5465,0 -2.54649,0 0,-2.5465 0,-2.54649 -33.1044,0 -33.10441,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,25.46493 0,25.46493 2.5465,0 2.54649,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 17.82545,0 17.82545,0 0,-2.54649 z m -35.6509,-5.09299 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 15.27896,-5.09299 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m -20.37194,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m 10.18597,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m 15.27895,-10.18597 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 40.74389,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m -61.11583,-5.09299 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.5465,0 0,-2.5465 z m 25.46493,-5.09298 0,-2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 -2.5465,0 -2.54649,0 0,-2.54649 z m 15.27896,0 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m 15.27895,40.74388 0,-2.54649 -2.54649,0 -2.54649,0 0,2.54649 0,2.5465 2.54649,0 2.54649,0 0,-2.5465 z m 35.6509,0 0,-2.54649 -2.54649,0 -2.5465,0 0,2.54649 0,2.5465 2.5465,0 2.54649,0 0,-2.5465 z" - id="path44670" - inkscape:connector-curvature="0" /> - <path - style="fill:#fea19f" - d="m 562.8737,557.35549 0,-2.5465 -5.09298,0 -5.09299,0 0,-45.81564 0,-45.81565 5.07143,0 5.07143,0 0.0109,2.53588 0.0109,2.53588 20.39316,0 20.39316,0 0.0109,-2.53588 0.0109,-2.53588 20.32883,0 20.32884,0 0.0109,2.53588 0.0109,2.53588 20.38256,0.0107 20.38255,0.0106 0,35.62963 0,35.62964 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.46493,0 25.46493,0 0,-2.54649 0,-2.54649 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.54649,0 -2.54649,0 0,-10.18597 0,-10.18597 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 5.09299,0 5.09298,0 0,-10.18597 0,-10.18597 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 5.09298,0 5.09299,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 10.18597,0 10.18597,0 0,-15.25773 0,-15.25774 2.52518,0 2.52519,0 0.0107,10.17536 0.0107,10.17536 2.57833,0.0109 2.57832,0.0109 0,-2.54682 0,-2.54682 5.05054,0 5.05055,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,10.18598 0,10.18597 2.56772,0 2.56771,0 0,12.69002 0,12.69002 -2.56771,0 -2.56772,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,2.54616 0,2.54616 -2.53588,0.0109 -2.53588,0.0109 -0.0109,2.53588 -0.0109,2.53588 -2.54616,0 -2.54616,0 0,2.56772 0,2.56771 -5.05054,0 -5.05055,0 0,-2.51678 0,-2.51679 -0.0509,-0.0509 -0.0509,-0.0509 -2.49556,0 -2.49556,0 0,-2.49556 0,-2.49556 -0.0509,-0.0509 -0.0509,-0.0509 -2.48708,0 -2.48707,0 -0.0509,0.0509 -0.0509,0.0509 0,5.06327 0,5.06328 -7.61826,0 -7.61825,0 0,-2.54616 0,-2.54616 -2.53589,-0.0109 -2.53588,-0.0109 -0.0109,-2.53588 -0.0109,-2.53588 -12.73179,0 -12.7318,0 -0.0109,2.53588 -0.0109,2.53588 -2.53588,0.0109 -2.53588,0.0109 0,2.54616 0,2.54616 -7.63948,0 -7.63948,0 0,-5.09299 0,-5.09298 -2.54615,0 -2.54617,0 -0.0109,2.53588 -0.0109,2.53588 -2.53588,0.0109 -2.53589,0.0109 0,2.54616 0,2.54616 -22.91843,0 -22.91843,0 0,-2.54649 0,-2.5465 -20.37195,0 -20.37194,0 0,2.5465 0,2.54649 -20.37194,0 -20.37194,0 0,-2.54649 z m 193.53344,-40.74389 0,-2.54649 -2.54649,0 -2.54649,0 0,2.54649 0,2.5465 2.54649,0 2.54649,0 0,-2.5465 z m 35.6509,0 0,-2.54649 -2.54649,0 -2.5465,0 0,2.54649 0,2.5465 2.5465,0 2.54649,0 0,-2.5465 z m -91.67374,15.27896 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 15.27896,-5.09299 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m -20.37194,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m 10.18597,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m 15.27895,-10.18597 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 40.74389,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m -61.11583,-5.09299 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.5465,0 0,-2.5465 z m 25.46493,-5.09298 0,-2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 -2.5465,0 -2.54649,0 0,-2.54649 z m 15.27896,0 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m -55.9804,-10.16475 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52527,0 0,-2.52527 z m 91.63129,0 0,-2.52527 2.52527,0 2.52528,0 0,2.52527 0,2.52527 -2.52528,0 -2.52527,0 0,-2.52527 z m -86.53831,-5.11421 0,-2.54649 43.24794,0 43.24793,0 0,2.54649 0,2.5465 -43.24793,0 -43.24794,0 0,-2.5465 z" - id="path44668" - inkscape:connector-curvature="0" /> - <path - style="fill:#a993fe" - d="m 562.8737,557.35549 0,-2.5465 -5.09298,0 -5.09299,0 0,-45.81564 0,-45.81565 5.07176,0 5.07177,0 0,2.54649 0,2.54649 20.41438,0 20.41438,0 0,-2.54649 0,-2.54649 20.3295,0 20.3295,0 0,2.54649 0,2.54649 20.39317,0 20.39316,0 0,35.62968 0,35.62968 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.46493,0 25.46493,0 0,-2.54649 0,-2.54649 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.54649,0 -2.54649,0 0,-10.18597 0,-10.18597 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 5.09299,0 5.09298,0 0,-10.18597 0,-10.18597 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 5.09298,0 5.09299,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 10.18597,0 10.18597,0 0,-15.25773 0,-15.25774 2.52518,0 2.52519,0 0.0107,10.17536 0.0107,10.17536 2.57833,0.0109 2.57832,0.0109 0,-2.54682 0,-2.54682 5.05054,0 5.05055,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,10.18598 0,10.18597 2.56772,0 2.56771,0 0,12.69002 0,12.69002 -2.54649,0 -2.5465,0 0,-5.07176 0,-5.07177 -5.09298,0 -5.09299,0 0,5.09299 0,5.09298 5.07177,0 5.07176,0 0,2.52527 0,2.52528 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,2.54616 0,2.54616 -2.53588,0.0109 -2.53588,0.0109 -0.0109,2.53588 -0.0109,2.53588 -2.54616,0 -2.54616,0 0,2.56772 0,2.56771 -5.05054,0 -5.05055,0 0,-2.51678 0,-2.51679 -0.0509,-0.0509 -0.0509,-0.0509 -2.49556,0 -2.49556,0 0,-2.49556 0,-2.49556 -0.0509,-0.0509 -0.0509,-0.0509 -2.48708,0 -2.48707,0 -0.0509,0.0509 -0.0509,0.0509 0,5.06327 0,5.06328 -7.61826,0 -7.61825,0 0,-2.54616 0,-2.54616 -2.53589,-0.0109 -2.53588,-0.0109 -0.0109,-2.53588 -0.0109,-2.53588 -12.73179,0 -12.7318,0 -0.0109,2.53588 -0.0109,2.53588 -2.53588,0.0109 -2.53588,0.0109 0,2.54616 0,2.54616 -7.63948,0 -7.63948,0 0,-5.09299 0,-5.09298 -2.54615,0 -2.54617,0 -0.0109,2.53588 -0.0109,2.53588 -2.53588,0.0109 -2.53589,0.0109 0,2.54616 0,2.54616 -22.91843,0 -22.91843,0 0,-2.54649 0,-2.5465 -20.37195,0 -20.37194,0 0,2.5465 0,2.54649 -20.37194,0 -20.37194,0 0,-2.54649 z m 188.44046,-28.01142 0,-5.09299 -5.09299,0 -5.09298,0 0,5.09299 0,5.09298 5.09298,0 5.09299,0 0,-5.09298 z m 5.09298,-12.73247 0,-2.54649 -2.54649,0 -2.54649,0 0,2.54649 0,2.5465 2.54649,0 2.54649,0 0,-2.5465 z m 35.6509,0 0,-2.54649 -2.54649,0 -2.5465,0 0,2.54649 0,2.5465 2.5465,0 2.54649,0 0,-2.5465 z m -91.67374,15.27896 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 15.27896,-5.09299 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m -20.37194,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m 10.18597,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m 15.27895,-10.18597 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 40.74389,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m -61.11583,-5.09299 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.5465,0 0,-2.5465 z m 25.46493,-5.09298 0,-2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 -2.5465,0 -2.54649,0 0,-2.54649 z m 15.27896,0 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m -55.9804,-10.16475 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52527,0 0,-2.52527 z m 91.63129,0 0,-2.52527 2.52527,0 2.52528,0 0,2.52527 0,2.52527 -2.52528,0 -2.52527,0 0,-2.52527 z m -86.53831,-5.11421 0,-2.54649 43.24794,0 43.24793,0 0,2.54649 0,2.5465 -43.24793,0 -43.24794,0 0,-2.5465 z" - id="path44666" - inkscape:connector-curvature="0" /> - <path - style="fill:#8d70fe" - d="m 562.8737,557.35549 0,-2.5465 -5.09298,0 -5.09299,0 0,-45.81564 0,-45.81565 5.07176,0 5.07177,0 0,2.54649 0,2.54649 20.41438,0 20.41438,0 0,-2.54649 0,-2.54649 20.3295,0 20.3295,0 0,2.54649 0,2.54649 20.39317,0 20.39316,0 0,35.62968 0,35.62968 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.46493,0 25.46493,0 0,-2.54649 0,-2.54649 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.54649,0 -2.54649,0 0,-10.18597 0,-10.18597 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 5.09299,0 5.09298,0 0,-10.18597 0,-10.18597 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 5.09298,0 5.09299,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 10.18597,0 10.18597,0 0,-15.25773 0,-15.25774 2.52518,0 2.52519,0 0.0107,10.17536 0.0107,10.17536 2.57833,0.0109 2.57832,0.0109 0,-2.54682 0,-2.54682 5.05054,0 5.05055,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,10.18598 0,10.18597 2.56772,0 2.56771,0 0,12.69002 0,12.69002 -2.54649,0 -2.5465,0 0,-5.07176 0,-5.07177 -5.09298,0 -5.09299,0 0,5.09299 0,5.09298 5.07177,0 5.07176,0 0,2.52527 0,2.52528 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,2.54616 0,2.54616 -2.53588,0.0109 -2.53588,0.0109 -0.0109,2.53588 -0.0109,2.53588 -2.54616,0 -2.54616,0 0,2.56772 0,2.56771 -5.05054,0 -5.05055,0 0,-2.51678 0,-2.51679 -0.0509,-0.0509 -0.0509,-0.0509 -2.49556,0 -2.49556,0 0,-2.49556 0,-2.49556 -0.0509,-0.0509 -0.0509,-0.0509 -2.48708,0 -2.48707,0 -0.0509,0.0509 -0.0509,0.0509 0,5.06327 0,5.06328 -7.61826,0 -7.61825,0 0,-2.54616 0,-2.54616 -2.53589,-0.0109 -2.53588,-0.0109 -0.0109,-2.53588 -0.0109,-2.53588 -12.73179,0 -12.7318,0 -0.0109,2.53588 -0.0109,2.53588 -2.53588,0.0109 -2.53588,0.0109 0,2.54616 0,2.54616 -7.63948,0 -7.63948,0 0,-5.09299 0,-5.09298 -2.54615,0 -2.54617,0 -0.0109,2.53588 -0.0109,2.53588 -2.53588,0.0109 -2.53589,0.0109 0,2.54616 0,2.54616 -22.89688,0 -22.89688,0 -0.0109,-2.5571 -0.0109,-2.55711 -20.39317,0 -20.39316,0 -0.0109,2.55711 -0.0109,2.5571 -20.35039,0 -20.35039,0 0,-2.54649 z m 188.44046,-28.01142 0,-5.09299 -5.09299,0 -5.09298,0 0,5.09299 0,5.09298 5.09298,0 5.09299,0 0,-5.09298 z m 5.09298,-12.73247 0,-2.54649 -2.54649,0 -2.54649,0 0,2.54649 0,2.5465 2.54649,0 2.54649,0 0,-2.5465 z m 35.6509,0 0,-2.54649 -2.54649,0 -2.5465,0 0,2.54649 0,2.5465 2.5465,0 2.54649,0 0,-2.5465 z m -91.67374,15.27896 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 15.27896,-5.09299 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m -20.37194,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m 10.18597,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m 15.27895,-10.18597 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 40.74389,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m -61.11583,-5.09299 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.5465,0 0,-2.5465 z m 25.46493,-5.09298 0,-2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 -2.5465,0 -2.54649,0 0,-2.54649 z m 15.27896,0 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m -55.9804,-10.16475 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52527,0 0,-2.52527 z m 91.63129,0 0,-2.52527 2.52527,0 2.52528,0 0,2.52527 0,2.52527 -2.52528,0 -2.52527,0 0,-2.52527 z m -86.53831,-5.11421 0,-2.54649 43.24794,0 43.24793,0 0,2.54649 0,2.5465 -43.24793,0 -43.24794,0 0,-2.5465 z" - id="path44664" - inkscape:connector-curvature="0" /> - <path - style="fill:#feee00" - d="m 562.90586,557.34488 -0.0109,-2.55711 -5.10359,-0.0108 -5.1036,-0.0108 0,-45.79425 0,-45.79426 5.07176,0 5.07177,0 0,2.54649 0,2.54649 20.41438,0 20.41438,0 0,-2.54649 0,-2.54649 20.3295,0 20.3295,0 0,2.54649 0,2.54649 20.39317,0 20.39316,0 0,35.62968 0,35.62968 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.46493,0 25.46493,0 0,-2.54649 0,-2.54649 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.54649,0 -2.54649,0 0,-10.18597 0,-10.18597 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 5.09299,0 5.09298,0 0,-10.18597 0,-10.18597 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 5.09298,0 5.09299,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 10.18597,0 10.18597,0 0,-15.25773 0,-15.25774 2.52518,0 2.52519,0 0.0107,10.17536 0.0107,10.17536 2.57833,0.0109 2.57832,0.0109 0,-2.54682 0,-2.54682 5.05054,0 5.05055,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,10.18598 0,10.18597 2.56772,0 2.56771,0 0,12.69002 0,12.69002 -2.54649,0 -2.5465,0 0,-5.07176 0,-5.07177 -5.09298,0 -5.09299,0 0,5.09299 0,5.09298 5.07177,0 5.07176,0 0,2.52527 0,2.52528 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,2.54616 0,2.54616 -2.53588,0.0109 -2.53588,0.0109 -0.0109,2.53588 -0.0109,2.53588 -2.54616,0 -2.54616,0 0,2.56772 0,2.56771 -5.05054,0 -5.05055,0 0,-2.51678 0,-2.51679 -0.0509,-0.0509 -0.0509,-0.0509 -2.49556,0 -2.49556,0 0,-2.49556 0,-2.49556 -0.0509,-0.0509 -0.0509,-0.0509 -2.48708,0 -2.48707,0 -0.0509,0.0509 -0.0509,0.0509 0,5.06327 0,5.06328 -7.61826,0 -7.61825,0 0,-2.54616 0,-2.54616 -2.53589,-0.0109 -2.53588,-0.0109 -0.0109,-2.53588 -0.0109,-2.53588 -12.73179,0 -12.7318,0 -0.0109,2.53588 -0.0109,2.53588 -2.53588,0.0109 -2.53588,0.0109 0,2.54616 0,2.54616 -7.63948,0 -7.63948,0 0,-5.09299 0,-5.09298 -2.54615,0 -2.54617,0 -0.0109,2.53588 -0.0109,2.53588 -2.53588,0.0109 -2.53589,0.0109 0,2.54616 0,2.54616 -22.89688,0 -22.89688,0 -0.0109,-2.5571 -0.0109,-2.55711 -20.39317,0 -20.39316,0 -0.0109,2.55711 -0.0109,2.5571 -20.32884,0 -20.32884,0 -0.0109,-2.5571 z m 188.4083,-28.00081 0,-5.09299 -5.09299,0 -5.09298,0 0,5.09299 0,5.09298 5.09298,0 5.09299,0 0,-5.09298 z m 5.09298,-12.73247 0,-2.54649 -2.54649,0 -2.54649,0 0,2.54649 0,2.5465 2.54649,0 2.54649,0 0,-2.5465 z m 35.6509,0 0,-2.54649 -2.54649,0 -2.5465,0 0,2.54649 0,2.5465 2.5465,0 2.54649,0 0,-2.5465 z m -91.67374,15.27896 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 15.27896,-5.09299 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m -20.37194,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m 10.18597,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m 15.27895,-10.18597 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 40.74389,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m -61.11583,-5.09299 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.5465,0 0,-2.5465 z m 25.46493,-5.09298 0,-2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 -2.5465,0 -2.54649,0 0,-2.54649 z m 15.27896,0 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m -55.9804,-10.16475 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52527,0 0,-2.52527 z m 91.63129,0 0,-2.52527 2.52527,0 2.52528,0 0,2.52527 0,2.52527 -2.52528,0 -2.52527,0 0,-2.52527 z m -86.53831,-5.11421 0,-2.54649 43.24794,0 43.24793,0 0,2.54649 0,2.5465 -43.24793,0 -43.24794,0 0,-2.5465 z" - id="path44662" - inkscape:connector-curvature="0" /> - <path - style="fill:#989898" - d="m 562.90586,557.34488 -0.0109,-2.55711 -5.10359,-0.0108 -5.1036,-0.0108 0,-22.89704 0,-22.89705 5.09299,0 5.09298,0 0,2.5465 0,2.54649 20.37194,0 20.37194,0 0,-2.54649 0,-2.5465 20.37194,0 20.37195,0 0,2.5465 0,2.54649 5.09298,0 5.09299,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-5.09298 0,-5.09299 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.54649 -20.37195,0 -20.37194,0 0,2.54649 0,2.54649 -20.37194,0 -20.37194,0 0,-2.54649 0,-2.54649 -5.09298,0 -5.09299,0 0,-15.25774 0,-15.25773 5.07176,0 5.07177,0 0,2.54649 0,2.54649 20.41438,0 20.41438,0 0,-2.54649 0,-2.54649 20.3295,0 20.3295,0 0,2.54649 0,2.54649 20.39317,0 20.39316,0 0,35.62968 0,35.62968 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.46493,0 25.46493,0 0,-2.54649 0,-2.54649 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.54649,0 -2.54649,0 0,-10.18597 0,-10.18597 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 5.09299,0 5.09298,0 0,-10.18597 0,-10.18597 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 5.09298,0 5.09299,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 10.18597,0 10.18597,0 0,-15.25773 0,-15.25774 2.52518,0 2.52519,0 0.0107,10.17536 0.0107,10.17536 2.57833,0.0109 2.57832,0.0109 0,-2.54682 0,-2.54682 5.05054,0 5.05055,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,10.18598 0,10.18597 2.56772,0 2.56771,0 0,12.69002 0,12.69002 -2.54649,0 -2.5465,0 0,-5.07176 0,-5.07177 -5.09298,0 -5.09299,0 0,5.09299 0,5.09298 5.07177,0 5.07176,0 0,2.52527 0,2.52528 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,2.54616 0,2.54616 -2.53588,0.0109 -2.53588,0.0109 -0.0109,2.53588 -0.0109,2.53588 -2.54616,0 -2.54616,0 0,2.56772 0,2.56771 -5.05054,0 -5.05055,0 0,-2.51678 0,-2.51679 -0.0509,-0.0509 -0.0509,-0.0509 -2.49556,0 -2.49556,0 0,-2.49556 0,-2.49556 -0.0509,-0.0509 -0.0509,-0.0509 -2.48708,0 -2.48707,0 -0.0509,0.0509 -0.0509,0.0509 0,5.06327 0,5.06328 -7.61826,0 -7.61825,0 0,-2.54616 0,-2.54616 -2.53589,-0.0109 -2.53588,-0.0109 -0.0109,-2.53588 -0.0109,-2.53588 -12.73179,0 -12.7318,0 -0.0109,2.53588 -0.0109,2.53588 -2.53588,0.0109 -2.53588,0.0109 0,2.54616 0,2.54616 -7.63948,0 -7.63948,0 0,-5.09299 0,-5.09298 -2.54615,0 -2.54617,0 -0.0109,2.53588 -0.0109,2.53588 -2.53588,0.0109 -2.53589,0.0109 0,2.54616 0,2.54616 -22.89688,0 -22.89688,0 -0.0109,-2.5571 -0.0109,-2.55711 -20.39317,0 -20.39316,0 -0.0109,2.55711 -0.0109,2.5571 -20.32884,0 -20.32884,0 -0.0109,-2.5571 z m 188.4083,-28.00081 0,-5.09299 -5.09299,0 -5.09298,0 0,5.09299 0,5.09298 5.09298,0 5.09299,0 0,-5.09298 z m 5.09298,-12.73247 0,-2.54649 -2.54649,0 -2.54649,0 0,2.54649 0,2.5465 2.54649,0 2.54649,0 0,-2.5465 z m 35.6509,0 0,-2.54649 -2.54649,0 -2.5465,0 0,2.54649 0,2.5465 2.5465,0 2.54649,0 0,-2.5465 z m -91.67374,15.27896 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 15.27896,-5.09299 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m -20.37194,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m 10.18597,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m 15.27895,-10.18597 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 40.74389,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m -61.11583,-5.09299 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.5465,0 0,-2.5465 z m 25.46493,-5.09298 0,-2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 -2.5465,0 -2.54649,0 0,-2.54649 z m 15.27896,0 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m -55.9804,-10.16475 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52527,0 0,-2.52527 z m 91.63129,0 0,-2.52527 2.52527,0 2.52528,0 0,2.52527 0,2.52527 -2.52528,0 -2.52527,0 0,-2.52527 z m -86.53831,-5.11421 0,-2.54649 43.24794,0 43.24793,0 0,2.54649 0,2.5465 -43.24793,0 -43.24794,0 0,-2.5465 z" - id="path44660" - inkscape:connector-curvature="0" /> - <path - style="fill:#f9378b" - d="m 562.90586,557.34488 -0.0109,-2.55711 -5.10359,-0.0108 -5.1036,-0.0108 0,-22.89704 0,-22.89705 5.09299,0 5.09298,0 0,2.5465 0,2.54649 20.37194,0 20.37194,0 0,-2.54649 0,-2.5465 20.37194,0 20.37195,0 0,2.5465 0,2.54649 5.09298,0 5.09299,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-5.09298 0,-5.09299 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.54649 -20.37195,0 -20.37194,0 0,2.54649 0,2.54649 -20.37194,0 -20.37194,0 0,-2.54649 0,-2.54649 -5.09298,0 -5.09299,0 0,-15.25774 0,-15.25773 5.07176,0 5.07177,0 0,2.54649 0,2.54649 20.41438,0 20.41438,0 0,-2.54649 0,-2.54649 20.3295,0 20.3295,0 0,2.54649 0,2.54649 20.39317,0 20.39316,0 0,35.62968 0,35.62968 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.46493,0 25.46493,0 0,-2.54649 0,-2.54649 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.54649,0 -2.54649,0 0,-10.18597 0,-10.18597 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 5.09299,0 5.09298,0 0,-10.18597 0,-10.18597 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 5.09298,0 5.09299,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 10.18597,0 10.18597,0 0,-15.25773 0,-15.25774 2.52527,0 2.52527,0 0,10.18597 0,10.18597 2.56772,0 2.56771,0 0,2.52528 0,2.52527 -2.54649,0 -2.5465,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,2.5465 0,2.54649 -10.18597,0 -10.18597,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -5.09299,0 -5.09298,0 0,10.18597 0,10.18597 -2.5465,0 -2.54649,0 0,12.73247 0,12.73246 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.44371,0 25.4437,0 0,2.52528 0,2.52527 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.52527,0 -2.52528,0 0,-2.52527 0,-2.52527 -5.09298,0 -5.09299,0 0,2.52527 0,2.52527 -2.52493,0 -2.52494,0 -0.011,-2.53588 -0.0109,-2.53588 -2.56772,0 -2.56771,0 -0.0108,5.10359 -0.0108,5.1036 -7.59687,0 -7.59686,0 0,-2.54649 0,-2.5465 5.07176,0 5.07177,0 0,-2.54649 0,-2.54649 -5.09299,0 -5.09298,0 0,2.52527 0,2.52527 -2.52494,0 -2.52494,0 -0.0109,-2.53588 -0.0109,-2.53588 -12.75368,0 -12.75369,0 -0.0109,2.53588 -0.0109,2.53588 -2.52494,0 -2.52494,0 0,-2.52527 0,-2.52527 -5.09299,0 -5.09298,0 0,2.54649 0,2.54649 5.07176,0 5.07177,0 0,2.5465 0,2.54649 -7.59687,0 -7.59686,0 -0.0108,-5.1036 -0.0108,-5.10359 -2.56771,0 -2.56771,0 -0.011,2.53555 -0.0109,2.53555 -2.53555,0.0109 -2.53555,0.0109 -0.0109,2.55711 -0.0109,2.5571 -22.87533,0 -22.87533,0 -0.0109,-2.5571 -0.0109,-2.55711 -20.39317,0 -20.39316,0 -0.0109,2.55711 -0.0109,2.5571 -20.32884,0 -20.32884,0 -0.0109,-2.5571 z m 122.19949,-5.08238 0,-2.54649 2.54649,0 2.54649,0 0,-2.54649 0,-2.5465 -7.63948,0 -7.63947,0 0,5.09299 0,5.09298 5.09298,0 5.09299,0 0,-2.54649 z m -5.09299,-35.6509 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -5.09299,0 -5.09298,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 5.09299,0 5.09298,0 0,-2.5465 z m 96.80916,40.74389 0,-2.5465 5.05055,0 5.05054,0 0,2.5465 0,2.54649 -5.05054,0 -5.05055,0 0,-2.54649 z m 20.3295,-15.30018 0,-2.52527 2.52528,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52528,0 0,-2.52527 z m -40.74388,-7.61826 0,-5.09298 2.54649,0 2.5465,0 0,2.54649 0,2.54649 5.09298,0 5.09299,0 0,-2.54649 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 5.09299,0 5.09298,0 0,-2.54649 0,-2.54649 2.5465,0 2.54649,0 0,5.09298 0,5.09299 -17.82545,0 -17.82545,0 0,-5.09299 z m 45.83687,2.52527 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52528 -2.52527,0 -2.52527,0 0,-2.52528 z m -101.85971,-5.07176 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 106.95269,-10.18597 0,-12.69002 2.5465,0 2.54649,0 0,12.69002 0,12.69002 -2.54649,0 -2.5465,0 0,-12.69002 z m -91.67373,5.09298 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m 35.6509,-5.09298 0,-2.54649 2.54649,0 2.54649,0 0,-2.5465 0,-2.54649 2.54649,0 2.5465,0 0,5.09299 0,5.09298 -5.09299,0 -5.09298,0 0,-2.54649 z m 25.46492,0 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 10.18597,0 0,-2.54649 2.5465,0 2.54649,0 0,-2.5465 0,-2.54649 2.54649,0 2.54649,0 0,5.09299 0,5.09298 -5.09298,0 -5.09299,0 0,-2.54649 z m -91.67373,-5.09299 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.54649,0 0,-2.5465 z m 10.18597,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m 96.76672,-7.61826 0,-10.16475 2.52527,0 2.52527,0 0,10.16475 0,10.16475 -2.52527,0 -2.52527,0 0,-10.16475 z m -81.48777,-2.56771 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 40.74389,-10.18597 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m 30.60035,0.0212 0,-2.52527 5.05054,0 5.05055,0 0,2.52527 0,2.52527 -5.05055,0 -5.05054,0 0,-2.52527 z m -91.71618,-5.11421 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.5465 -2.54649,0 -2.5465,0 0,-2.5465 z m 25.46493,-5.09298 0,-2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 -2.5465,0 -2.54649,0 0,-2.54649 z m 15.27896,0 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,-2.54649 z m -55.9804,-10.16475 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52527,0 0,-2.52527 z m 91.63129,0 0,-2.52527 2.52527,0 2.52528,0 0,2.52527 0,2.52527 -2.52528,0 -2.52527,0 0,-2.52527 z m -86.53831,-5.11421 0,-2.54649 43.24794,0 43.24793,0 0,2.54649 0,2.5465 -43.24793,0 -43.24794,0 0,-2.5465 z" - id="path44658" - inkscape:connector-curvature="0" /> - <path - style="fill:#6841fe" - d="m 562.90586,557.34488 -0.0109,-2.55711 -5.10359,-0.0108 -5.1036,-0.0108 0,-22.89704 0,-22.89705 5.09299,0 5.09298,0 0,2.5465 0,2.54649 20.37194,0 20.37194,0 0,-2.54649 0,-2.5465 20.37194,0 20.37195,0 0,2.5465 0,2.54649 5.09298,0 5.09299,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-5.09298 0,-5.09299 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.54649 -20.37195,0 -20.37194,0 0,2.54649 0,2.54649 -20.37194,0 -20.37194,0 0,-2.54649 0,-2.54649 -5.09298,0 -5.09299,0 0,-15.25774 0,-15.25773 5.07176,0 5.07177,0 0,2.54649 0,2.54649 20.41438,0 20.41438,0 0,-2.54649 0,-2.54649 20.3295,0 20.3295,0 0,2.54649 0,2.54649 20.39317,0 20.39316,0 0,35.62968 0,35.62968 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.46493,0 25.46493,0 0,-2.54649 0,-2.54649 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.54649,0 -2.54649,0 0,-12.73246 0,-12.73247 2.54649,0 2.54649,0 0,-10.18597 0,-10.18597 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 5.09298,0 5.09299,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 10.18597,0 10.18597,0 0,-15.25773 0,-15.25774 2.52527,0 2.52527,0 0,10.18597 0,10.18597 2.56772,0 2.56771,0 0,2.52528 0,2.52527 -2.54649,0 -2.5465,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,2.5465 0,2.54649 -10.18597,0 -10.18597,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -5.09299,0 -5.09298,0 0,10.18597 0,10.18597 -2.5465,0 -2.54649,0 0,12.73247 0,12.73246 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.44371,0 25.4437,0 0,2.52528 0,2.52527 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.52527,0 -2.52528,0 0,-2.52527 0,-2.52527 -5.09298,0 -5.09299,0 0,2.52527 0,2.52527 -2.52493,0 -2.52494,0 -0.011,-2.53588 -0.0109,-2.53588 -2.56772,0 -2.56771,0 -0.0108,5.10359 -0.0108,5.1036 -7.59687,0 -7.59686,0 0,-2.54649 0,-2.5465 5.07176,0 5.07177,0 0,-2.54649 0,-2.54649 -5.09299,0 -5.09298,0 0,2.52527 0,2.52527 -2.52494,0 -2.52494,0 -0.0109,-2.53588 -0.0109,-2.53588 -12.75368,0 -12.75369,0 -0.0109,2.53588 -0.0109,2.53588 -2.52494,0 -2.52494,0 0,-2.52527 0,-2.52527 -5.09299,0 -5.09298,0 0,2.54649 0,2.54649 5.07176,0 5.07177,0 0,2.5465 0,2.54649 -7.59687,0 -7.59686,0 -0.0108,-5.1036 -0.0108,-5.10359 -2.56771,0 -2.56771,0 -0.011,2.53555 -0.0109,2.53555 -2.53555,0.0109 -2.53555,0.0109 -0.0109,2.55711 -0.0109,2.5571 -22.87533,0 -22.87533,0 -0.0109,-2.5571 -0.0109,-2.55711 -20.39317,0 -20.39316,0 -0.0109,2.55711 -0.0109,2.5571 -20.32884,0 -20.32884,0 -0.0109,-2.5571 z m 122.19949,-5.08238 0,-2.54649 2.54649,0 2.54649,0 0,-2.54649 0,-2.5465 -7.63948,0 -7.63947,0 0,5.09299 0,5.09298 5.09298,0 5.09299,0 0,-2.54649 z m -5.09299,-35.6509 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -5.09299,0 -5.09298,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 5.09299,0 5.09298,0 0,-2.5465 z m 96.80916,40.74389 0,-2.5465 5.05055,0 5.05054,0 0,2.5465 0,2.54649 -5.05054,0 -5.05055,0 0,-2.54649 z m 20.3295,-15.30018 0,-2.52527 2.52528,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52528,0 0,-2.52527 z m -40.74388,-7.61826 0,-5.09298 2.54649,0 2.5465,0 0,2.54649 0,2.54649 5.09298,0 5.09299,0 0,-2.54649 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 5.09299,0 5.09298,0 0,-2.54649 0,-2.54649 2.5465,0 2.54649,0 0,5.09298 0,5.09299 -17.82545,0 -17.82545,0 0,-5.09299 z m 45.83687,2.52527 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52528 -2.52527,0 -2.52527,0 0,-2.52528 z m 5.09298,-15.25773 0,-12.69002 2.5465,0 2.54649,0 0,12.69002 0,12.69002 -2.54649,0 -2.5465,0 0,-12.69002 z m -56.02283,0 0,-2.54649 2.54649,0 2.54649,0 0,-2.5465 0,-2.54649 2.54649,0 2.5465,0 0,5.09299 0,5.09298 -5.09299,0 -5.09298,0 0,-2.54649 z m 25.46492,0 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 10.18597,0 0,-2.54649 2.5465,0 2.54649,0 0,-2.5465 0,-2.54649 2.54649,0 2.54649,0 0,5.09299 0,5.09298 -5.09298,0 -5.09299,0 0,-2.54649 z m 15.27896,-22.89722 0,-10.16475 2.52527,0 2.52527,0 0,10.16475 0,10.16475 -2.52527,0 -2.52527,0 0,-10.16475 z m -10.14353,-12.73246 0,-2.52527 5.05054,0 5.05055,0 0,2.52527 0,2.52527 -5.05055,0 -5.05054,0 0,-2.52527 z m -106.95269,-20.37194 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52527,0 0,-2.52527 z m 91.63129,0 0,-2.52527 2.52527,0 2.52528,0 0,2.52527 0,2.52527 -2.52528,0 -2.52527,0 0,-2.52527 z m -86.53831,-5.11421 0,-2.54649 43.24794,0 43.24793,0 0,2.54649 0,2.5465 -43.24793,0 -43.24794,0 0,-2.5465 z" - id="path44656" - inkscape:connector-curvature="0" /> - <path - style="fill:#fe9900" - d="m 669.82639,552.2625 0,-7.63948 -12.73246,0 -12.73246,0 0,-2.54649 0,-2.54649 -20.37195,0 -20.37194,0 0,2.54649 0,2.54649 -20.37194,0 -20.37194,0 0,-2.54649 0,-2.54649 -5.09298,0 -5.09299,0 0,-15.27896 0,-15.27896 5.09299,0 5.09298,0 0,2.5465 0,2.54649 20.37194,0 20.37194,0 0,-2.54649 0,-2.5465 20.37194,0 20.37195,0 0,2.5465 0,2.54649 5.09298,0 5.09299,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-5.09298 0,-5.09299 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.54649 -20.37195,0 -20.37194,0 0,2.54649 0,2.54649 -20.37194,0 -20.37194,0 0,-2.54649 0,-2.54649 -5.09298,0 -5.09299,0 0,-15.25774 0,-15.25773 5.07176,0 5.07177,0 0,2.54649 0,2.54649 20.41438,0 20.41438,0 0,-2.54649 0,-2.54649 20.3295,0 20.3295,0 0,2.54649 0,2.54649 20.39317,0 20.39316,0 0,35.62968 0,35.62968 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.46493,0 25.46493,0 0,-2.54649 0,-2.54649 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.54649,0 -2.54649,0 0,-12.73246 0,-12.73247 2.54649,0 2.54649,0 0,-10.18597 0,-10.18597 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 5.09298,0 5.09299,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 10.18597,0 10.18597,0 0,-15.25773 0,-15.25774 2.52527,0 2.52527,0 0,10.18597 0,10.18597 2.56772,0 2.56771,0 0,2.52528 0,2.52527 -2.54649,0 -2.5465,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,2.5465 0,2.54649 -10.18597,0 -10.18597,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -5.09299,0 -5.09298,0 0,10.18597 0,10.18597 -2.5465,0 -2.54649,0 0,12.73247 0,12.73246 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.44371,0 25.4437,0 0,2.52528 0,2.52527 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.52527,0 -2.52528,0 0,-2.52527 0,-2.52527 -5.09298,0 -5.09299,0 0,2.52527 0,2.52527 -2.52493,0 -2.52494,0 -0.011,-2.53588 -0.0109,-2.53588 -2.56772,0 -2.56771,0 -0.0108,5.10359 -0.0108,5.1036 -7.59687,0 -7.59686,0 0,-2.54649 0,-2.5465 5.07176,0 5.07177,0 0,-2.54649 0,-2.54649 -5.09299,0 -5.09298,0 0,2.52527 0,2.52527 -2.52494,0 -2.52494,0 -0.0109,-2.53588 -0.0109,-2.53588 -12.75368,0 -12.75369,0 -0.0109,2.53588 -0.0109,2.53588 -2.52494,0 -2.52494,0 0,-2.52527 0,-2.52527 -5.09299,0 -5.09298,0 0,2.54649 0,2.54649 5.07176,0 5.07177,0 0,2.5465 0,2.54649 -7.59687,0 -7.59686,0 -0.0108,-5.1036 -0.0108,-5.10359 -2.56771,0 -2.56771,0 -0.011,2.53555 -0.0109,2.53555 -2.53555,0.0109 -2.53555,0.0109 -0.0109,2.55711 -0.0109,2.5571 -10.16442,0 -10.16442,0 0,-7.63948 z m 15.27896,0 0,-2.54649 2.54649,0 2.54649,0 0,-2.54649 0,-2.5465 -7.63948,0 -7.63947,0 0,5.09299 0,5.09298 5.09298,0 5.09299,0 0,-2.54649 z m -5.09299,-35.6509 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -5.09299,0 -5.09298,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 5.09299,0 5.09298,0 0,-2.5465 z m 96.80916,40.74389 0,-2.5465 5.05055,0 5.05054,0 0,2.5465 0,2.54649 -5.05054,0 -5.05055,0 0,-2.54649 z m 20.3295,-15.30018 0,-2.52527 2.52528,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52528,0 0,-2.52527 z m -40.74388,-7.61826 0,-5.09298 2.54649,0 2.5465,0 0,2.54649 0,2.54649 5.09298,0 5.09299,0 0,-2.54649 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 5.09299,0 5.09298,0 0,-2.54649 0,-2.54649 2.5465,0 2.54649,0 0,5.09298 0,5.09299 -17.82545,0 -17.82545,0 0,-5.09299 z m 45.83687,2.52527 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52528 -2.52527,0 -2.52527,0 0,-2.52528 z m 5.09298,-15.25773 0,-12.69002 2.5465,0 2.54649,0 0,12.69002 0,12.69002 -2.54649,0 -2.5465,0 0,-12.69002 z m -56.02283,0 0,-2.54649 2.54649,0 2.54649,0 0,-2.5465 0,-2.54649 2.54649,0 2.5465,0 0,5.09299 0,5.09298 -5.09299,0 -5.09298,0 0,-2.54649 z m 25.46492,0 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 10.18597,0 0,-2.54649 2.5465,0 2.54649,0 0,-2.5465 0,-2.54649 2.54649,0 2.54649,0 0,5.09299 0,5.09298 -5.09298,0 -5.09299,0 0,-2.54649 z m 15.27896,-22.89722 0,-10.16475 2.52527,0 2.52527,0 0,10.16475 0,10.16475 -2.52527,0 -2.52527,0 0,-10.16475 z m -10.14353,-12.73246 0,-2.52527 5.05054,0 5.05055,0 0,2.52527 0,2.52527 -5.05055,0 -5.05054,0 0,-2.52527 z m -106.95269,-20.37194 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52527,0 0,-2.52527 z m 91.63129,0 0,-2.52527 2.52527,0 2.52528,0 0,2.52527 0,2.52527 -2.52528,0 -2.52527,0 0,-2.52527 z m -86.53831,-5.11421 0,-2.54649 43.24794,0 43.24793,0 0,2.54649 0,2.5465 -43.24793,0 -43.24794,0 0,-2.5465 z" - id="path44654" - inkscape:connector-curvature="0" /> - <path - style="fill:#008bfe" - d="m 669.82639,552.2625 0,-7.63948 -12.73246,0 -12.73246,0 0,-2.54649 0,-2.54649 -20.37195,0 -20.37194,0 0,2.54649 0,2.54649 -20.37194,0 -20.37194,0 0,-2.54649 0,-2.54649 -5.09298,0 -5.09299,0 0,-15.27896 0,-15.27896 5.09299,0 5.09298,0 0,2.5465 0,2.54649 20.37194,0 20.37194,0 0,-2.54649 0,-2.5465 20.37194,0 20.37195,0 0,2.5465 0,2.54649 5.09298,0 5.09299,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-7.63947 0,-7.63948 10.18597,0 10.18597,0 0,2.54649 0,2.54649 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,-10.18597 0,-10.18597 -17.82545,0 -17.82544,0 0,-2.5465 0,-2.54649 -20.37195,0 -20.37194,0 0,2.54649 0,2.5465 -20.37194,0 -20.37194,0 0,-2.5465 0,-2.54649 -5.09298,0 -5.09299,0 0,-7.61826 0,-7.61825 5.07176,0 5.07177,0 0,2.54649 0,2.54649 20.41438,0 20.41438,0 0,-2.54649 0,-2.54649 20.3295,0 20.3295,0 0,2.54649 0,2.54649 20.39317,0 20.39316,0 0,35.62968 0,35.62968 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.46493,0 25.46493,0 0,-2.54649 0,-2.54649 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.54649,0 -2.54649,0 0,-12.73246 0,-12.73247 2.54649,0 2.54649,0 0,-10.18597 0,-10.18597 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 5.09298,0 5.09299,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 10.18597,0 10.18597,0 0,-15.25773 0,-15.25774 2.52527,0 2.52527,0 0,10.18597 0,10.18597 2.56772,0 2.56771,0 0,2.52528 0,2.52527 -2.54649,0 -2.5465,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,2.5465 0,2.54649 -10.18597,0 -10.18597,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -5.09299,0 -5.09298,0 0,10.18597 0,10.18597 -2.5465,0 -2.54649,0 0,12.73247 0,12.73246 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.44371,0 25.4437,0 0,2.52528 0,2.52527 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.52527,0 -2.52528,0 0,-2.52527 0,-2.52527 -5.09298,0 -5.09299,0 0,2.52527 0,2.52527 -2.52493,0 -2.52494,0 -0.011,-2.53588 -0.0109,-2.53588 -2.56772,0 -2.56771,0 -0.0108,5.10359 -0.0108,5.1036 -7.59687,0 -7.59686,0 0,-2.54649 0,-2.5465 5.07176,0 5.07177,0 0,-2.54649 0,-2.54649 -5.09299,0 -5.09298,0 0,2.52527 0,2.52527 -2.52494,0 -2.52494,0 -0.0109,-2.53588 -0.0109,-2.53588 -12.75368,0 -12.75369,0 -0.0109,2.53588 -0.0109,2.53588 -2.52494,0 -2.52494,0 0,-2.52527 0,-2.52527 -5.09299,0 -5.09298,0 0,2.54649 0,2.54649 5.07176,0 5.07177,0 0,2.5465 0,2.54649 -7.59687,0 -7.59686,0 -0.0108,-5.1036 -0.0108,-5.10359 -2.56771,0 -2.56771,0 -0.011,2.53555 -0.0109,2.53555 -2.53555,0.0109 -2.53555,0.0109 -0.0109,2.55711 -0.0109,2.5571 -10.16442,0 -10.16442,0 0,-7.63948 z m 15.27896,0 0,-2.54649 2.54649,0 2.54649,0 0,-2.54649 0,-2.5465 -7.63948,0 -7.63947,0 0,5.09299 0,5.09298 5.09298,0 5.09299,0 0,-2.54649 z m -5.09299,-35.6509 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -5.09299,0 -5.09298,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 5.09299,0 5.09298,0 0,-2.5465 z m 96.80916,40.74389 0,-2.5465 5.05055,0 5.05054,0 0,2.5465 0,2.54649 -5.05054,0 -5.05055,0 0,-2.54649 z m 20.3295,-15.30018 0,-2.52527 2.52528,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52528,0 0,-2.52527 z m -40.74388,-7.61826 0,-5.09298 2.54649,0 2.5465,0 0,2.54649 0,2.54649 5.09298,0 5.09299,0 0,-2.54649 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 5.09299,0 5.09298,0 0,-2.54649 0,-2.54649 2.5465,0 2.54649,0 0,5.09298 0,5.09299 -17.82545,0 -17.82545,0 0,-5.09299 z m 45.83687,2.52527 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52528 -2.52527,0 -2.52527,0 0,-2.52528 z m 5.09298,-15.25773 0,-12.69002 2.5465,0 2.54649,0 0,12.69002 0,12.69002 -2.54649,0 -2.5465,0 0,-12.69002 z m -56.02283,0 0,-2.54649 2.54649,0 2.54649,0 0,-2.5465 0,-2.54649 2.54649,0 2.5465,0 0,5.09299 0,5.09298 -5.09299,0 -5.09298,0 0,-2.54649 z m 25.46492,0 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 10.18597,0 0,-2.54649 2.5465,0 2.54649,0 0,-2.5465 0,-2.54649 2.54649,0 2.54649,0 0,5.09299 0,5.09298 -5.09298,0 -5.09299,0 0,-2.54649 z m 15.27896,-22.89722 0,-10.16475 2.52527,0 2.52527,0 0,10.16475 0,10.16475 -2.52527,0 -2.52527,0 0,-10.16475 z m -10.14353,-12.73246 0,-2.52527 5.05054,0 5.05055,0 0,2.52527 0,2.52527 -5.05055,0 -5.05054,0 0,-2.52527 z m -106.95269,-20.37194 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52527,0 0,-2.52527 z m 91.63129,0 0,-2.52527 2.52527,0 2.52528,0 0,2.52527 0,2.52527 -2.52528,0 -2.52527,0 0,-2.52527 z m -86.53831,-5.11421 0,-2.54649 43.24794,0 43.24793,0 0,2.54649 0,2.5465 -43.24793,0 -43.24794,0 0,-2.5465 z" - id="path44652" - inkscape:connector-curvature="0" /> - <path - style="fill:#fe1700" - d="m 669.82639,552.2625 0,-7.63948 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 2.54649,0 2.54649,0 0,-5.09299 0,-5.09298 -17.82545,0 -17.82544,0 0,-2.5465 0,-2.54649 -20.37195,0 -20.37194,0 0,2.54649 0,2.5465 -20.37194,0 -20.37194,0 0,-2.5465 0,-2.54649 -5.09298,0 -5.09299,0 0,-7.63948 0,-7.63948 5.09299,0 5.09298,0 0,2.5465 0,2.54649 20.37194,0 20.37194,0 0,-2.54649 0,-2.5465 20.37194,0 20.37195,0 0,2.5465 0,2.54649 5.09298,0 5.09299,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-7.63947 0,-7.63948 10.18597,0 10.18597,0 0,2.54649 0,2.54649 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,-10.18597 0,-10.18597 -17.82545,0 -17.82544,0 0,-2.5465 0,-2.54649 -20.37195,0 -20.37194,0 0,2.54649 0,2.5465 -20.37194,0 -20.37194,0 0,-2.5465 0,-2.54649 -5.09298,0 -5.09299,0 0,-7.61826 0,-7.61825 5.07176,0 5.07177,0 0,2.54649 0,2.54649 20.41438,0 20.41438,0 0,-2.54649 0,-2.54649 20.3295,0 20.3295,0 0,2.54649 0,2.54649 20.39317,0 20.39316,0 0,35.62968 0,35.62968 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.46493,0 25.46493,0 0,-2.54649 0,-2.54649 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.54649,0 -2.54649,0 0,-12.73246 0,-12.73247 2.54649,0 2.54649,0 0,-10.18597 0,-10.18597 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 5.09298,0 5.09299,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 10.18597,0 10.18597,0 0,-15.25773 0,-15.25774 2.52527,0 2.52527,0 0,10.18597 0,10.18597 2.56772,0 2.56771,0 0,2.52528 0,2.52527 -2.54649,0 -2.5465,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,2.5465 0,2.54649 -10.18597,0 -10.18597,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -5.09299,0 -5.09298,0 0,10.18597 0,10.18597 -2.5465,0 -2.54649,0 0,12.73247 0,12.73246 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.44371,0 25.4437,0 0,2.52528 0,2.52527 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.52527,0 -2.52528,0 0,-2.52527 0,-2.52527 -5.09298,0 -5.09299,0 0,2.52527 0,2.52527 -2.52493,0 -2.52494,0 -0.011,-2.53588 -0.0109,-2.53588 -2.56772,0 -2.56771,0 -0.0108,5.10359 -0.0108,5.1036 -7.59687,0 -7.59686,0 0,-2.54649 0,-2.5465 5.07176,0 5.07177,0 0,-2.54649 0,-2.54649 -5.09299,0 -5.09298,0 0,2.52527 0,2.52527 -2.52494,0 -2.52494,0 -0.0109,-2.53588 -0.0109,-2.53588 -12.75368,0 -12.75369,0 -0.0109,2.53588 -0.0109,2.53588 -2.52494,0 -2.52494,0 0,-2.52527 0,-2.52527 -5.09299,0 -5.09298,0 0,2.54649 0,2.54649 5.07176,0 5.07177,0 0,2.5465 0,2.54649 -7.59687,0 -7.59686,0 -0.0108,-5.1036 -0.0108,-5.10359 -2.56771,0 -2.56771,0 -0.011,2.53555 -0.0109,2.53555 -2.53555,0.0109 -2.53555,0.0109 -0.0109,2.55711 -0.0109,2.5571 -10.16442,0 -10.16442,0 0,-7.63948 z m 15.27896,0 0,-2.54649 2.54649,0 2.54649,0 0,-2.54649 0,-2.5465 -7.63948,0 -7.63947,0 0,5.09299 0,5.09298 5.09298,0 5.09299,0 0,-2.54649 z m -5.09299,-35.6509 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -5.09299,0 -5.09298,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 5.09299,0 5.09298,0 0,-2.5465 z m 96.80916,40.74389 0,-2.5465 5.05055,0 5.05054,0 0,2.5465 0,2.54649 -5.05054,0 -5.05055,0 0,-2.54649 z m 20.3295,-15.30018 0,-2.52527 2.52528,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52528,0 0,-2.52527 z m -40.74388,-7.61826 0,-5.09298 2.54649,0 2.5465,0 0,2.54649 0,2.54649 5.09298,0 5.09299,0 0,-2.54649 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 5.09299,0 5.09298,0 0,-2.54649 0,-2.54649 2.5465,0 2.54649,0 0,5.09298 0,5.09299 -17.82545,0 -17.82545,0 0,-5.09299 z m 45.83687,2.52527 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52528 -2.52527,0 -2.52527,0 0,-2.52528 z m 5.09298,-15.25773 0,-12.69002 2.5465,0 2.54649,0 0,12.69002 0,12.69002 -2.54649,0 -2.5465,0 0,-12.69002 z m -56.02283,0 0,-2.54649 2.54649,0 2.54649,0 0,-2.5465 0,-2.54649 2.54649,0 2.5465,0 0,5.09299 0,5.09298 -5.09299,0 -5.09298,0 0,-2.54649 z m 25.46492,0 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 10.18597,0 0,-2.54649 2.5465,0 2.54649,0 0,-2.5465 0,-2.54649 2.54649,0 2.54649,0 0,5.09299 0,5.09298 -5.09298,0 -5.09299,0 0,-2.54649 z m 15.27896,-22.89722 0,-10.16475 2.52527,0 2.52527,0 0,10.16475 0,10.16475 -2.52527,0 -2.52527,0 0,-10.16475 z m -10.14353,-12.73246 0,-2.52527 5.05054,0 5.05055,0 0,2.52527 0,2.52527 -5.05055,0 -5.05054,0 0,-2.52527 z m -106.95269,-20.37194 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52527,0 0,-2.52527 z m 91.63129,0 0,-2.52527 2.52527,0 2.52528,0 0,2.52527 0,2.52527 -2.52528,0 -2.52527,0 0,-2.52527 z m -86.53831,-5.11421 0,-2.54649 43.24794,0 43.24793,0 0,2.54649 0,2.5465 -43.24793,0 -43.24794,0 0,-2.5465 z" - id="path44650" - inkscape:connector-curvature="0" /> - <path - style="fill:#20dc00" - d="m 669.82639,552.2625 0,-7.63948 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 2.54649,0 2.54649,0 0,-5.09299 0,-5.09298 -17.82545,0 -17.82544,0 0,-2.5465 0,-2.54649 -20.37195,0 -20.37194,0 0,2.54649 0,2.5465 -20.37194,0 -20.37194,0 0,-2.5465 0,-2.54649 -5.09298,0 -5.09299,0 0,-7.63948 0,-7.63948 5.09299,0 5.09298,0 0,2.5465 0,2.54649 20.37194,0 20.37194,0 0,-2.54649 0,-2.5465 20.37194,0 20.37195,0 0,2.5465 0,2.54649 5.09298,0 5.09299,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-7.63947 0,-7.63948 10.18597,0 10.18597,0 0,2.54649 0,2.54649 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,-17.80423 0,-17.80423 2.54649,0 2.5465,0 0,35.62968 0,35.62968 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.46493,0 25.46493,0 0,-2.54649 0,-2.54649 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.54649,0 -2.54649,0 0,-12.73246 0,-12.73247 2.54649,0 2.54649,0 0,-10.18597 0,-10.18597 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 5.09298,0 5.09299,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 10.18597,0 10.18597,0 0,-15.25773 0,-15.25774 2.52527,0 2.52527,0 0,10.18597 0,10.18597 2.56772,0 2.56771,0 0,2.52528 0,2.52527 -2.54649,0 -2.5465,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,2.5465 0,2.54649 -10.18597,0 -10.18597,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -5.09299,0 -5.09298,0 0,10.18597 0,10.18597 -2.5465,0 -2.54649,0 0,12.73247 0,12.73246 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.44371,0 25.4437,0 0,2.52528 0,2.52527 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.52527,0 -2.52528,0 0,-2.52527 0,-2.52527 -5.09298,0 -5.09299,0 0,2.52527 0,2.52527 -2.52493,0 -2.52494,0 -0.011,-2.53588 -0.0109,-2.53588 -2.56772,0 -2.56771,0 -0.0108,5.10359 -0.0108,5.1036 -7.59687,0 -7.59686,0 0,-2.54649 0,-2.5465 5.07176,0 5.07177,0 0,-2.54649 0,-2.54649 -5.09299,0 -5.09298,0 0,2.52527 0,2.52527 -2.52494,0 -2.52494,0 -0.0109,-2.53588 -0.0109,-2.53588 -12.75368,0 -12.75369,0 -0.0109,2.53588 -0.0109,2.53588 -2.52494,0 -2.52494,0 0,-2.52527 0,-2.52527 -5.09299,0 -5.09298,0 0,2.54649 0,2.54649 5.07176,0 5.07177,0 0,2.5465 0,2.54649 -7.59687,0 -7.59686,0 -0.0108,-5.1036 -0.0108,-5.10359 -2.56771,0 -2.56771,0 -0.011,2.53555 -0.0109,2.53555 -2.53555,0.0109 -2.53555,0.0109 -0.0109,2.55711 -0.0109,2.5571 -10.16442,0 -10.16442,0 0,-7.63948 z m 15.27896,0 0,-2.54649 2.54649,0 2.54649,0 0,-2.54649 0,-2.5465 -7.63948,0 -7.63947,0 0,5.09299 0,5.09298 5.09298,0 5.09299,0 0,-2.54649 z m -5.09299,-35.6509 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -5.09299,0 -5.09298,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 5.09299,0 5.09298,0 0,-2.5465 z m 96.80916,40.74389 0,-2.5465 5.05055,0 5.05054,0 0,2.5465 0,2.54649 -5.05054,0 -5.05055,0 0,-2.54649 z m 20.3295,-15.30018 0,-2.52527 2.52528,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52528,0 0,-2.52527 z m -40.74388,-7.61826 0,-5.09298 2.54649,0 2.5465,0 0,2.54649 0,2.54649 5.09298,0 5.09299,0 0,-2.54649 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 5.09299,0 5.09298,0 0,-2.54649 0,-2.54649 2.5465,0 2.54649,0 0,5.09298 0,5.09299 -17.82545,0 -17.82545,0 0,-5.09299 z m 45.83687,2.52527 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52528 -2.52527,0 -2.52527,0 0,-2.52528 z m 5.09298,-15.25773 0,-12.69002 2.5465,0 2.54649,0 0,12.69002 0,12.69002 -2.54649,0 -2.5465,0 0,-12.69002 z m -56.02283,0 0,-2.54649 2.54649,0 2.54649,0 0,-2.5465 0,-2.54649 2.54649,0 2.5465,0 0,5.09299 0,5.09298 -5.09299,0 -5.09298,0 0,-2.54649 z m 25.46492,0 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 10.18597,0 0,-2.54649 2.5465,0 2.54649,0 0,-2.5465 0,-2.54649 2.54649,0 2.54649,0 0,5.09299 0,5.09298 -5.09298,0 -5.09299,0 0,-2.54649 z m 15.27896,-22.89722 0,-10.16475 2.52527,0 2.52527,0 0,10.16475 0,10.16475 -2.52527,0 -2.52527,0 0,-10.16475 z m -10.14353,-12.73246 0,-2.52527 5.05054,0 5.05055,0 0,2.52527 0,2.52527 -5.05055,0 -5.05054,0 0,-2.52527 z m -106.95269,-20.37194 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52527,0 0,-2.52527 z m 91.63129,0 0,-2.52527 2.52527,0 2.52528,0 0,2.52527 0,2.52527 -2.52528,0 -2.52527,0 0,-2.52527 z m -86.53831,-5.11421 0,-2.54649 43.24794,0 43.24793,0 0,2.54649 0,2.5465 -43.24793,0 -43.24794,0 0,-2.5465 z" - id="path44648" - inkscape:connector-curvature="0" /> - <path - style="fill:#000000" - d="m 669.82639,552.2625 0,-7.63948 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 2.54649,0 2.54649,0 0,-5.09299 0,-5.09298 -2.54649,0 -2.54649,0 0,-2.5465 0,-2.54649 -5.09299,0 -5.09298,0 0,-2.54649 0,-2.54649 -2.5465,0 -2.54649,0 0,-2.5465 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-7.63947 0,-7.63948 10.18597,0 10.18597,0 0,2.54649 0,2.54649 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,-17.80423 0,-17.80423 2.54649,0 2.5465,0 0,35.62968 0,35.62968 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.46493,0 25.46493,0 0,-2.54649 0,-2.54649 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.54649,0 -2.54649,0 0,-12.73246 0,-12.73247 2.54649,0 2.54649,0 0,-10.18597 0,-10.18597 2.54649,0 2.5465,0 0,-2.54649 0,-2.54649 5.09298,0 5.09299,0 0,2.54649 0,2.54649 2.54649,0 2.54649,0 0,2.5465 0,2.54649 2.54649,0 2.5465,0 0,2.54649 0,2.54649 10.18597,0 10.18597,0 0,-15.25773 0,-15.25774 2.52527,0 2.52527,0 0,10.18597 0,10.18597 2.56772,0 2.56771,0 0,2.52528 0,2.52527 -2.54649,0 -2.5465,0 0,2.54649 0,2.54649 -2.54649,0 -2.54649,0 0,2.5465 0,2.54649 -10.18597,0 -10.18597,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -5.09299,0 -5.09298,0 0,10.18597 0,10.18597 -2.5465,0 -2.54649,0 0,12.73247 0,12.73246 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 25.44371,0 25.4437,0 0,2.52528 0,2.52527 -2.54649,0 -2.54649,0 0,2.54649 0,2.54649 -2.52527,0 -2.52528,0 0,-2.52527 0,-2.52527 -5.09298,0 -5.09299,0 0,2.52527 0,2.52527 -2.52493,0 -2.52494,0 -0.011,-2.53588 -0.0109,-2.53588 -2.56772,0 -2.56771,0 -0.0108,5.10359 -0.0108,5.1036 -7.59687,0 -7.59686,0 0,-2.54649 0,-2.5465 5.07176,0 5.07177,0 0,-2.54649 0,-2.54649 -5.09299,0 -5.09298,0 0,2.52527 0,2.52527 -2.52494,0 -2.52494,0 -0.0109,-2.53588 -0.0109,-2.53588 -12.75368,0 -12.75369,0 -0.0109,2.53588 -0.0109,2.53588 -2.52494,0 -2.52494,0 0,-2.52527 0,-2.52527 -5.09299,0 -5.09298,0 0,2.54649 0,2.54649 5.07176,0 5.07177,0 0,2.5465 0,2.54649 -7.59687,0 -7.59686,0 -0.0108,-5.1036 -0.0108,-5.10359 -2.56771,0 -2.56771,0 -0.011,2.53555 -0.0109,2.53555 -2.53555,0.0109 -2.53555,0.0109 -0.0109,2.55711 -0.0109,2.5571 -10.16442,0 -10.16442,0 0,-7.63948 z m 15.27896,0 0,-2.54649 2.54649,0 2.54649,0 0,-2.54649 0,-2.5465 -7.63948,0 -7.63947,0 0,5.09299 0,5.09298 5.09298,0 5.09299,0 0,-2.54649 z m -5.09299,-35.6509 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -2.5465,0 -2.54649,0 0,-2.54649 0,-2.54649 -2.54649,0 -2.54649,0 0,-2.54649 0,-2.5465 -5.09299,0 -5.09298,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 2.54649,0 2.5465,0 0,2.5465 0,2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.5465 5.09299,0 5.09298,0 0,-2.5465 z m 96.80916,40.74389 0,-2.5465 5.05055,0 5.05054,0 0,2.5465 0,2.54649 -5.05054,0 -5.05055,0 0,-2.54649 z m 20.3295,-15.30018 0,-2.52527 2.52528,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52528,0 0,-2.52527 z m -40.74388,-7.61826 0,-5.09298 2.54649,0 2.5465,0 0,2.54649 0,2.54649 5.09298,0 5.09299,0 0,-2.54649 0,-2.54649 2.54649,0 2.54649,0 0,2.54649 0,2.54649 5.09299,0 5.09298,0 0,-2.54649 0,-2.54649 2.5465,0 2.54649,0 0,5.09298 0,5.09299 -17.82545,0 -17.82545,0 0,-5.09299 z m 45.83687,2.52527 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52528 -2.52527,0 -2.52527,0 0,-2.52528 z m 5.09298,-15.25773 0,-12.69002 2.5465,0 2.54649,0 0,12.69002 0,12.69002 -2.54649,0 -2.5465,0 0,-12.69002 z m -56.02283,0 0,-2.54649 2.54649,0 2.54649,0 0,-2.5465 0,-2.54649 2.54649,0 2.5465,0 0,5.09299 0,5.09298 -5.09299,0 -5.09298,0 0,-2.54649 z m 25.46492,0 0,-2.54649 2.5465,0 2.54649,0 0,2.54649 0,2.54649 -2.54649,0 -2.5465,0 0,-2.54649 z m 10.18597,0 0,-2.54649 2.5465,0 2.54649,0 0,-2.5465 0,-2.54649 2.54649,0 2.54649,0 0,5.09299 0,5.09298 -5.09298,0 -5.09299,0 0,-2.54649 z m 15.27896,-22.89722 0,-10.16475 2.52527,0 2.52527,0 0,10.16475 0,10.16475 -2.52527,0 -2.52527,0 0,-10.16475 z m -10.14353,-12.73246 0,-2.52527 5.05054,0 5.05055,0 0,2.52527 0,2.52527 -5.05055,0 -5.05054,0 0,-2.52527 z m -106.95269,-20.37194 0,-2.52527 2.52527,0 2.52527,0 0,2.52527 0,2.52527 -2.52527,0 -2.52527,0 0,-2.52527 z m 91.63129,0 0,-2.52527 2.52527,0 2.52528,0 0,2.52527 0,2.52527 -2.52528,0 -2.52527,0 0,-2.52527 z m -86.53831,-5.11421 0,-2.54649 43.24794,0 43.24793,0 0,2.54649 0,2.5465 -43.24793,0 -43.24794,0 0,-2.5465 z" - id="path44646" - inkscape:connector-curvature="0" /> - </g> - <path - style="fill:none;stroke:#ff0000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" - d="m 728.31999,426.90658 55.55839,14.14214" - id="path44642" - inkscape:connector-curvature="0" - transform="translate(0,308.2677)" /> - <path - style="fill:none;stroke:#000000;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" - d="m 94.285714,519.09448 c -32.857143,0 -35.714285,0 -35.714285,0" - id="path6001" - inkscape:connector-curvature="0" - transform="translate(0,308.2677)" - sodipodi:nodetypes="cc" /> - </g> -</svg> diff --git a/kpov_judge/doc/presentation/kpov_judge-slides.pdf b/kpov_judge/doc/presentation/kpov_judge-slides.pdf Binary files differdeleted file mode 100644 index c8eda87..0000000 --- a/kpov_judge/doc/presentation/kpov_judge-slides.pdf +++ /dev/null diff --git a/kpov_judge/doc/presentation/kpov_judge-slides.tex b/kpov_judge/doc/presentation/kpov_judge-slides.tex deleted file mode 100644 index c8a6acc..0000000 --- a/kpov_judge/doc/presentation/kpov_judge-slides.tex +++ /dev/null @@ -1,277 +0,0 @@ -% $Header: /Users/joseph/Documents/LaTeX/beamer/solutions/generic-talks/generic-ornate-15min-45min.en.tex,v 90e850259b8b 2007/01/28 20:48:30 tantau $ - -\documentclass{beamer} - -% This file is a solution template for: - -% - Giving a talk on some subject. -% - The talk is between 15min and 45min long. -% - Style is ornate. - -% Copyright 2004 by Till Tantau <tantau@users.sourceforge.net>. -% -% In principle, this file can be redistributed and/or modified under -% the terms of the GNU Public License, version 2. -% -% However, this file is supposed to be a template to be modified -% for your own needs. For this reason, if you use this file as a -% template and not specifically distribute it as part of a another -% package/program, I grant the extra permission to freely copy and -% modify this file as you see fit and even to delete this copyright -% notice. - - -\mode<presentation> -{ - \usetheme[height=9mm]{ULFRI} - % \usecolortheme{beaver} - % or ... - % \setbeamercovered{transparent} - % or whatever (possibly just delete it) -} - -% \usetheme[height=9mm]{ULFRI} - -\usepackage[english]{babel} -% or whatever - -\usepackage[utf8]{inputenc} -% or whatever -\usepackage{multirow} -\usepackage{times} -\usepackage[T1]{fontenc} -% Or whatever. Note that the encoding and the font should match. If T1 -% does not look nice, try deleting the line with the fontenc. - - -\title[Kpov Judge] % (optional, use only with long paper titles) -{Strah in trepet prihodnjih generacij pri KPOV} - -% \subtitle -% {A tale of RFIDs, finance and irritation} % (optional) - -% (optional, use only with lots of authors) -\author[LUSY] -{Ga\v{s}per Fele-\v{Z}or\v{z}} - -% - Use the \inst{?} command only if the authors have different -% affiliation. - -\institute[FRI]{ - Univerza v Ljubljani, Fakulteta za računalništvo in informatiko - {\small polz@fri.uni-lj.si} -} - -\date[FRI pedagoška delavnica] % (optional) -{} - -\subject{KPOV Judge} -% This is only inserted into the PDF information catalog. Can be left -% out. - - - -% If you have a file called "university-logo-filename.xxx", where xxx -% is a graphic format that can be processed by latex or pdflatex, -% resp., then you can add a logo as follows: - -% \pgfdeclareimage[height=0.5cm]{university-logo}{university-logo-filename} -% \logo{\pgfuseimage{university-logo}} - - - -% Delete this, if you do not want the table of contents to pop up at -% the beginning of each subsection: -%\AtBeginSubsection[] -%{ -% \begin{frame}<beamer>{Outline} -% \tableofcontents[currentsection,currentsubsection] -% \end{frame} -%} - - -% If you wish to uncover everything in a step-wise fashion, uncomment -% the following command: - -%\beamerdefaultoverlayspecification{<+->} - -\begin{document} - -\begin{frame}{KPOV! Naravnost v obraz!} - \titlepage -\end{frame} - -\begin{frame}{Pregled} - \tableofcontents - % You might wish to add the option [pausesections] -\end{frame} - - -% Since this a solution template for a generic talk, very little can -% be said about how it should be structured. However, the talk length -% of between 15min and 45min and the theme suggest that you stick to -% the following rules: - -% - Exactly two or three sections (other than the summary). -% - At *most* three subsections per section. -% - Talk about 30s to 2min per frame. So there should be between about -% 15 and 30 frames, all told. -\section{Kaj je KPOV Judge} % ----------------------------------------------- - -\subsection{KPOV} - -\begin{frame}{KPOV} - \begin{itemize} - \item Računalniške komunikacije 2 - \item Predpogoj za Spletne Tehnologije - \item Postavi DHCP, TFTP, SNMP, RDATE, Video streaming... - \item 90 študentov 2. letnika VSŠ, en asistent - \end{itemize} -\end{frame} - -\begin{frame}{Pot na FRI je tlakovana z dobrimi nameni} - \begin{itemize} - \item Dva tedna za prvi prototip s podporo za OpenCloud - \item Devet mesecev za približno delujočih nekaj nalog z navodili - \end{itemize} -\end{frame} - -\begin{frame}{Čas izdelave} - \includegraphics<1>[width=\textwidth,height=0.8\textheight,keepaspectratio]{figs/baby.jpg} -\end{frame} - -\subsection{Uporabi že narejeno!} - -\begin{frame}{Open Virtual Computer Lab} - \includegraphics<1>[width=\textwidth,height=0.8\textheight,keepaspectratio]{figs/VCL.png} - \begin{itemize} - \item Postavi farmo strežnikov - \item Napiši skripte za testiranje - \end{itemize} -\end{frame} - -\subsection{BYOD MOOC} -\begin{frame}{Običajna arhitektura} - \includegraphics<1>[width=\textwidth,height=0.8\textheight,keepaspectratio]{figs/centralised-architecture.png} -\end{frame} - -\begin{frame}{Prihranimo na strojni opremi!} - \includegraphics<1>[width=\textwidth,height=0.8\textheight,keepaspectratio]{figs/kpov-architecture.png} -\end{frame} - -\section{Kako se ga uporablja?} -\begin{frame}{Asistent} - \begin{itemize} - \item Navodila - \item Seznam računalnikov / diskov, mrež - \item Seznam parametrov - \item Pripravljanje parametrov - \item Pripravljanje diskov - \item Preverjanje pri študentu - \item Preverjanje na strežniku - \end{itemize} -\end{frame} - -\begin{frame}{Študent} - \begin{itemize} - \item Povleci virtualke - \item Reši nalogo - \item Poženi testni program - \end{itemize} -\end{frame} - -\begin{frame}{DEMO} - \includegraphics<1>[width=\textwidth,height=0.8\textheight,keepaspectratio]{figs/fail.jpg} -\end{frame} - -\section{Uporabljene tehnologije} -\begin{frame}{Uporabljene tehnologije} - \begin{itemize} - \item Python, Flask - \item MongoDB - \item libguestfs - \item OpenStack (zadnjič deloval 2013) - \end{itemize} -\end{frame} - -\section{Rezultati uporabe} -\begin{frame}{Kako uporabiti študente} - \begin{itemize}[<+->] - \item Skupinsko delo (4 študentje / skupino) - \item Jasno razdeljene naloge - \item Če en ne opravi dela, padejo vsi - \item Vsak je v dveh skupinah, vsak ima backup - \item Brez točnih rokov - \item Brez dobre dokumentacije - \item Brez zadostnega obrtniškega znanja - \end{itemize} -\end{frame} - -\begin{frame}{Kako uporabiti študente} - \begin{itemize}[<+->] - \item V redu za howto, prevod - \item Slabi za programiranje - \end{itemize} -\end{frame} - - -\begin{frame}{Primer naloge} - \begin{itemize} - \item Preimenuj vse datoteke tako, da zamenjaš minuse s podčrtaji - \item Napiši NAJKRAJŠI ukaz, ki premakne datoteke iz ADAHHD v KPOKNM - \item Poišči datoteke, ki vsebujejo "mama" - \item Izpiši zadnje vrstice, filtriraj syslog - \item Namesti paket "cowsay" in ga preizkusi :) - \item Povleci datoteko s CURL - \item Preštej vrstice v datoteki, rezultat spravi v okoljsko spremenljivko - \item Preštej število vrstic v datoteki - \end{itemize} -\end{frame} - -\begin{frame}{Poizkusni zajčki} - \begin{itemize}[<+->] - \item Dva študenta pri RF, druga stopnja Bolognske - \item En zaposleni, ne-asistent - \item Trije asistentje - \end{itemize} -\end{frame} - -\begin{frame}{Koliko časa} - \begin{itemize} - \item En študent - dve uri, rešil pol - \item Študentka - pet ur, rešila nič - \item Zaposleni - pogledal, se ni resno lotil - \item Dva asistenta - pogledala, po pol ure obupala - \item En asistent rešil v slabih 2 urah - \end{itemize} -\end{frame} - -\section{Rad bi pomagal} - -\begin{frame}{Dobri stari svn} - svn co https://lusy.fri.uni-lj.si/svn/kpov-public -\end{frame} - -\begin{frame}{Acknowledgements} - \begin{itemize} - \item Andrej Brodnik - \item Andrej Tolič - \item Študentje KPOV 2014/2015 - \end{itemize} -\end{frame} - -\begin{frame}{Vprašanja} -\end{frame} -%\begin{frame}{Map of Slovenia} - % - A title should summarize the slide in an understandable fashion - % for anyone how does not follow everything on the slide itself. -% \includegraphics<1>[width=\textwidth,height=0.8\textheight,keepaspectratio]{slovenia-map.png} -% \includegraphics<2>[width=\textwidth,height=0.8\textheight,keepaspectratio]{matkurja1.jpg} - -%\end{frame} - -\end{document} - - - - diff --git a/kpov_judge/doc/presentation/znakULFRIbeamer.png b/kpov_judge/doc/presentation/znakULFRIbeamer.png Binary files differdeleted file mode 100644 index be8d1b0..0000000 --- a/kpov_judge/doc/presentation/znakULFRIbeamer.png +++ /dev/null diff --git a/kpov_judge/finalize_opstack.py b/kpov_judge/finalize_opstack.py deleted file mode 100644 index 9f3d959..0000000 --- a/kpov_judge/finalize_opstack.py +++ /dev/null @@ -1,117 +0,0 @@ -import keystoneclient.v2_0.client as ksclient -import quantumclient.quantum.client as qclient -import novaclient.client as nclient -import settings -import pymongo -import sys -import os -import fcntl - -########################################################## -def create_project(project_name): - return kc.tenants.create(tenant_name=project_name) - -def get_project_by_name(project_name): - return kc.users.find(name=username) - -def get_user_by_name(username): - return kc.users.find(name=username) - -def create_network(network_name, tenant_name): - net = {'name': network_name, 'admin_state_up': True, 'tenant_id': getattr(kc.tenants.find(name=tenant_name), 'id')} - network = qc.create_network({'network': net}) - sub = {'name': network_name + "-subnet", 'cidr': '0.0.0.0/24', 'network_id': network['network']['id'], 'ip_version': 4, 'enable_dhcp': False, 'gateway_ip': None} - subnet = qc.create_subnet({'subnet': sub}) - return network - -def get_nova_client(tenant_name): - return nclient.Client("1.1", username=settings.OS_ADMIN_USER, api_key=settings.OS_ADMIN_PASS, auth_url=settings.OS_AUTH_URL, project_id=tenant_name) - -def get_quantum_client(tenant_name): - kcsub = ksclient.Client(auth_url=settings.OS_AUTH_URL, username=settings.OS_ADMIN_USER, password=settings.OS_ADMIN_PASS, tenant_name=tenant_name) - client = qclient.Client('2.0', endpoint_url=settings.OS_QUANTUM_URL, token=kcsub.auth_token) - client.format = 'json' - return client - -########################################################## - -kc = ksclient.Client(endpoint=settings.OS_ADMIN_AUTH_URL, token=settings.OS_ADMIN_TOKEN) -member_role = kc.roles.find(name='Member') - -db = pymongo.MongoClient(settings.DB_URI).get_default_database() - -l = db.student_tasks.find({'create_openstack': True}) -projects = list() -for project in l: - task_id, student_id = project['task_id'], project['student_id'] - if (task_id, student_id) not in projects: - projects.append((task_id, student_id)) -#projects = [ ('01.predvaja','at9036@student.uni-lj.si'), ('01.predvaja', 'andrejtolic@fri1.uni-lj.si') ] -for task_id, student_id in projects: - l = db.student_tasks.find_one({'task_id': task_id, 'student_id': student_id, "create_openstack": True}) - if l is None: - continue - lock_file = os.path.join(settings.OS_LOCKFILE_PATH, '{0}-{1}.lock'.format(student_id, task_id)) - lock_fp = open(lock_file, 'w') - try: - fcntl.lockf(lock_fp, fcntl.LOCK_EX | fcntl.LOCK_NB) - except IOError: - continue - # Ustvarimo projekt - project_name = "{0}-{1}".format(student_id, task_id) - project = create_project(project_name=project_name) - lock_fp.write("Created project {0}.\n".format(project_name)) - # Dodamo admin uporabnika v projekt - kc.roles.add_user_role(get_user_by_name('admin'), admin_role, project) - lock_fp.write("Added user admin to project {0}.\n".format(project_name)) - # Ustvarimo L2 omrezja - qc = get_quantum_client(tenant_name=project_name) - network_list = db.networks.find({'task_id': task_id}) - nets = [] - for n in network_list: - net = create_network(network_name=n['name'], tenant_name=project_name) - lock_fp.write("Created network {0}.".format(n['name'])) - nets.append( (n['name'], {'net-id': net['network']['id']}) ) - db.student_networks.update({'task_id': task_id, 'student_id': student_id, 'name': n['name']}, {'$set': {'network_id': net['network']['id'], 'public': n['public']}}, upsert=True) - #Ustvarimo instance - instance_list = db.computers_meta.find({'task_id': task_id}) - nc = get_nova_client(tenant_name=project_name) - first_instance_in_project = True - for inst in instance_list: - image = nc.images.find(name=inst['image']) - flavor = nc.flavors.find(name=inst['flavor']) - instance_net_names = inst['networks'] - instance_nets = [net[1] for net in nets if net[0] in instance_net_names] - if inst['config_drive']: - if 'string' in inst['userdata'].keys(): - udata = inst['userdata']['string'] - elif 'file' in inst['userdata'].keys(): - try: - udata = open(inst['userdata']['file'], 'r') - except: - udata = None - lock_fp.write("Problem reading file {0} for config drive. Using None instead.".format(inst['userdata']['file'])) - else: - udata = None - if first_instance_in_project: - scheduler_hints = None - first_instance_in_project = False - else: - s = db.student_computers.find_one({'task_id': task_id, 'student_id': student_id, 'name': inst['name']}) - # Value corresponding to the 'same_host' key is a list (with just one element) - # of instances besides which to put the new instance. - scheduler_hints = {'same_host': [s['openstack_instance_id']] } - instance = nc.servers.create(name=project_name + "-" + inst['name'], image=image, flavor=flavor, nics=instance_nets, config_drive=inst['config_drive'], userdata=udata, scheduler_hints=scheduler_hints) - lock_fp.write("Created instance for computer {0}.".format(inst['name'])) - # Write openstack instance id to mongo. - db.student_computers.update({'task_id': task_id, 'student_id': student_id, 'name': inst['name']}, {'$set': {'openstack_instance_id': instance['id'], 'openstack_host': instance['OS-EXT-SRV-ATTR:host'], 'openstack_finalized': False}, upsert=True) - # instance['status'] lahko BUILD, ACTIVE ali SHUTOFF - # instance = nova.servers.get(instance['id']) - db.student_tasks.update({'task_id': task_id, 'student_id': student_id}, {'$set': {'create_openstack': False, 'openstack_created': True}}) - os.unlink(lock_file) - lock_fp.close() - -# TODO v loceni skripti. -# povezi test-net na brarbiters, po izklopu instanc guestfs nad diski in create_image. -# Dodamo studenta v projekt -kc.roles.add_user_role(get_user_by_name(student_id), member_role, project) diff --git a/kpov_judge/instructions_extractor.py b/kpov_judge/instructions_extractor.py deleted file mode 100644 index cc622f9..0000000 --- a/kpov_judge/instructions_extractor.py +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/env python3 - -import glob -import os -import sys - -def print_instructions(p, fname): - try: - print("---------------") - l = p.split(os.sep) - l1 = [] - for i in range(len(l)): - f = os.path.join(*l[:i+1]) - if os.path.islink(f): - s = "{0} ({1})".format(l[i], os.path.split(os.readlink(f))[1]) - else: - s = l[i] - l1.append(s) - print(p) - print(" - ".join(l1)) - with open(os.path.join(p, fname)) as f: - task_code = compile(f.read(), fname, 'exec') - d = {} - exec(task_code, globals(), d) - for lang, text in d['instructions'].items(): - print("Language: {0}".format(lang)) - print(text.encode('utf-8')) - print("") - except Exception as e: - print(e) - -if __name__ == '__main__': - l = glob.glob(sys.argv[1]) - l.sort() - for d in l: - for root, dirs, files in os.walk(d, followlinks=True): - for fname in files: - if fname == 'task.py': - print_instructions(root, fname) diff --git a/kpov_judge/kpov_util.py b/kpov_judge/kpov_util.py deleted file mode 100755 index ac7053f..0000000 --- a/kpov_judge/kpov_util.py +++ /dev/null @@ -1,173 +0,0 @@ -#!/usr/bin/env python3 - -import collections -import glob -import itertools -import math -import os -import random -import re -import socket -import string -import struct - -def ssh_test(host, user, password, commands=()): - import pexpect - from pexpect import pxssh - - results = collections.defaultdict(str) - try: - s = pxssh.pxssh(encoding='utf-8', timeout=10) - s.login(host, user, password, - original_prompt='~[#$] ', - auto_prompt_reset=False) - results['ssh'] = True - results['motd'] = s.before - s.set_unique_prompt() - for test, command in commands: - s.sendline(command) - s.prompt() - if test: - results[test] = s.before[len(command+'\r\n'):] - s.logout() - except pexpect.exceptions.EOF as e: - results['ssh'] = 'connection to {} as {}/{} failed (EOF)'.format(host, user, password) - except pexpect.exceptions.TIMEOUT as e: - results['ssh'] = 'connection to {} as {}/{} failed (timeout)'.format(host, user, password) - except Exception as e: - results['ssh'] = str(e) - return results - -def alnum_gen(r, l=1): - s = "" - for i in range(l): - s += r.choice(string.ascii_letters + string.digits) - return s - -def fortune(r, max_len): - all_fortunes = [] - for fortune_file in itertools.chain( - glob.iglob('/usr/share/fortune/*.u8'), - glob.iglob('/usr/share/games/fortunes/*.u8')): - f = open(fortune_file) - l = f.read().split('\n%\n')[:-1] - for i in l: - if len(i) < max_len: - all_fortunes.append(i) - stripped = re.sub(r'\s+', ' ', r.choice(all_fortunes)) - s = re.sub(r'[^\w?:;!./&%$=,]+', ' ', stripped) - return s.strip() - -def _net_to_int(s): - try: - net, subnet = s.split('/') - except ValueError: - subnet = '32' - try: - subnet_int = int(subnet) - except ValueError: - subnet_bytes = struct.unpack('>I', socket.inet_aton(subnet))[0] - max_bit = 1 << 31 - subnet_int = 0 - while (subnet_bytes & max_bit) > 0: - subnet_int += 1 - max_bit >>= 1 - return struct.unpack('>I', socket.inet_aton(net))[0], subnet_int - -def IPv4_subnet_gen(r, base_net, mask = 24): - base_addr, base_subnet = _net_to_int(base_net) - a = r.randint(1, 1 << mask - base_subnet) << (32 - mask) - if a >= 1<<32: - a = 0 - net_addr = base_addr | a - return socket.inet_ntoa(struct.pack('>I', net_addr)) + '/{0}'.format(mask) - -def IPv4_net_gen(r, min_hosts=254, local=True, multicast=False): - mask = 32 - int(math.ceil(math.log(min_hosts, 2))) - if local and not multicast: - net = r.choice([ - "192.168.0.0/16", - '10.0.0.0/8', - '172.16.0.0/12']) - if multicast: - if local: - net = "239.255.0.0/16" - else: - net = "224.0.0.0/4" - return IPv4_subnet_gen(r, net, mask) - -def IPv4_addr_gen(r, network, n_generated=1, reserve_top=1, reserve_bottom=1): - net, mask = _net_to_int(network) - hosts = [] - l = r.sample(list(range(reserve_bottom, - 2**(32 - mask)-reserve_top)), n_generated) - for i in l: - hosts.append(socket.inet_ntoa(struct.pack('>I', net | i))) - return hosts - -def MAC_gen(r): - s = "0123456789ABCDEF" - return ":".join([r.choice(s) + r.choice("26AE")] + \ - [r.choice(s) + r.choice(s) for i in range(5)]) - -common_file_extensions = ['jpg', 'png', 'txt', 'doc', 'cfg', 'pdf', 'odt', 'cpp', 'c', 'sh', 'java'] -def fname_gen(r, extension = True): - s = alnum_gen(r, 8) - if extension: - s += '.' + r.choice(common_file_extensions) - return s - -fdir = os.path.dirname(os.path.realpath(__file__)) -with open(os.path.join(fdir, 'random_data/greek_gods.txt')) as f: - greek_gods = [i.strip() for i in f.readlines()] -with open(os.path.join(fdir, 'random_data/roman_gods.txt')) as f: - roman_gods = [i.strip() for i in f.readlines()] -with open(os.path.join(fdir, 'random_data/slavic_gods.txt')) as f: - slavic_gods = [i.strip() for i in f.readlines()] - -gods = greek_gods + roman_gods + slavic_gods - -def hostname_gen(r): - return "{0}-{1:02}".format(r.choice(gods), r.randint(1, 99)) - -with open(os.path.join(fdir, 'random_data/slovenian_names.txt')) as f: - names = [i.strip() for i in f.readlines()] - -with open(os.path.join(fdir, 'random_data/slovenian_surnames.txt')) as f: - surnames = [i.strip() for i in f.readlines()] - -def username_gen(r): - return ("{}{}{}".format(r.choice(names), r.choice(surnames), r.randint(1, 99))).lower() - -def unknown_generator(r): - return '' - -default_generators = { - 'IP': lambda r: IPv4_addr_gen(r, IPv4_net_gen(r))[0], - 'localnet': lambda r: IPv4_net_gen(r, min_hosts = r.randint(16, 250), local=True, multicast=False), - 'filename': fname_gen, - 'dirname': lambda r: fname_gen(r, extension = False), - 'username': username_gen, - 'password': lambda r: alnum_gen(r, 8), - 'short_text': lambda r: fortune(r, 40), - 'uint': lambda r: r.randint(0, 2**32), - 'hostname': lambda r: hostname_gen(r), - None: lambda r: alnum_gen(r, 8), - '': unknown_generator, -} - - -def default_gen(userID, param_meta): - r = random.Random(userID) - params = dict() - for name, meta in param_meta.items(): - if meta.get('generated', False): - params[name] = default_generators.get( - meta.get('type', None), unknown_generator)(r) - return params - -if __name__ == '__main__': - r = random.Random() - for k, v in default_generators.items(): - print("---{}---".format(k)) - print(v(r)) diff --git a/kpov_judge/random_data/greek_gods.txt b/kpov_judge/random_data/greek_gods.txt deleted file mode 100644 index 33150aa..0000000 --- a/kpov_judge/random_data/greek_gods.txt +++ /dev/null @@ -1,488 +0,0 @@ -aceso -achelois -achelous -acheron -achlys -achos -acis -acmon -acratopotes -actaeus -adephagia -adikia -adonis -adrastea -adrasteia -aegaeon -aegle -aello -aeolus -aergia -aether -aetna -agdistis -aglaea -aglaope -agon -agrius -aiakos -aidos -aisa -aitnaios -akmon -akte -alala -alastor -alcyone -alcyoneus -alecto -alectrona -aletheia -alexiares -alke -alkon -aloadae -alpheus -amechania -amphiaraus -amphictyonis -amphitrite -anaideia -anatole -anemoi -angelia -angelos -ania -antaeus -anteros -antheia -anthousai -aoide -aparctias -apate -aphaea -apheleia -apheliotes -aphroditus -aphros -apollo -apollonis -aporia -arche -arete -arethusa -arges -argestes -argus -argyron -aristaeus -arke -arktos -artemis -asbetos -asbolus -asclepius -askalaphos -asopus -astraea -astraios -atabyrius -atropos -attis -auge -aura -aurai -auxesia -auxo -benthesikyme -beroe -bia -boreas -borysthenis -briareus -britomartis -brizo -brontes -bythos -cabeiri -caerus -caicias -calleis -calliope -calypso -carmanor -carme -celaeno -centaurs -cephisso -ceraon -cerberus -ceto -chalcon -chaos -chariclo -charites -charon -charybdis -cheimon -chione -chiron -chloris -chryson -chrysothemis -chrysus -circe -circios -cladeus -cleta -clio -clotho -clytie -cocytus -companions -comus -corus -corymbus -cottus -cronus -cyamites -cybele -cyclopes -cyllenus -cymopoleia -daemones -damnameneus -damneus -damon -daphne -deimos -deino -deipneus -delas -delphin -demeter -despoina -dexithea -dikaiosyne -dike -dionysus -dolos -dryades -dysis -dysnomia -dyssebeia -echo -eiar -eidothea -eidyia -eileithyia -eirene -eiresione -ekecheiria -electra -eleos -elete -elpis -empusa -enceladus -enyalius -enyo -eos -eosphorus -ephialtes -epiales -epimedes -epimeliades -epione -epiphron -erato -erebos -eris -eros -ersa -eucleia -eudaimonia -eulabeia -eunomia -eunostus -eupheme -euphrosyne -euporie -eupraxia -euronotus -eurotas -eurus -euryale -eurymedon -eurytion -eusebeia -euterpe -euthenia -euthymia -gaia -galene -gelos -geras -geryon -glaucus -gorgons -gorgyra -gyges -gymnastika -hamadryades -harmonia -harpocrates -hebe -hecate -hecaterus -hedone -hedylogos -hegemone -heimarmene -hekaerge -helios -hemera -hephaestus -hera -heracles -hermaphroditus -hermes -hesperis -hesperus -hestia -himerope -himeros -hippocampi -homados -homonoia -horkos -horme -hybris -hydros -hygieia -hymenaios -hypate -hypnos -iasios -iaso -ichnaea -idaios -ioke -iris -iynx -judges -kakia -kalokagathia -karkinos -karpo -kelmis -keuthonymos -koalemos -kokytos -korybantes -kratos -krotos -kydoimos -kyrbas -lachesis -ladon -lamia -lampades -lethe -leucosia -leucothea -ligeia -limos -lips -loxo -lupe -lycos -lysagora -lyssa -macaria -maenades -maia -makelo -mania -matton -medusa -megaera -megalesius -melete -meliae -melinoe -melpomene -menoetes -merope -mese -mesembria -methe -metope -minos -minthe -mneme -molpe -momus -mormo -moros -morpheus -mousika -muses -mylas -naiades -nemesis -nephelai -nereides -nereus -nerites -nessus -nete -nicothoe -nike -nikon -nomos -notus -nymphe -nyx -oceanides -oceanus -ocypete -oizys -okythoos -olympian -omodamos -onnes -oreades -orion -ormenos -orphne -orthosie -otos -oupis -paidia -palaemon -palaestra -palioxis -pan -panacea -pandaisia -pandia -pannychis -parthenope -pasithea -passalos -peisinoe -peitharchia -peitho -pemphredo -peneus -penia -penthus -pepromene -persephone -phaenna -phaenon -phaethon -phantasos -pheme -pherousa -philomelus -philophrosyne -philotes -phlegethon -phobetor -phobos -pholus -phorcys -phrike -phthonus -pistis -plutus -podarge -poine -polemos -polyhymnia -polymatheia -polyphemus -ponos -pontos -poros -porphyrion -poseidon -potamoi -pothos -praxidike -priapus -proioxis -prophasis -proteus -prymneus -psamathe -pthinoporon -ptocheia -pyroeis -pyrrhichos -raidne -rhadamanthys -rhapso -rhea -rivers -sabaktes -satyrs -scamander -scylla -selene -silenus -simon -skeiron -skelmis -skythes -smaragos -sophrosyne -soter -soteria -sponde -sterope -steropes -stheno -stilbon -styx -syntribos -talos -tartarus -taygete -techne -teles -telesphorus -telete -terpsichore -tethys -thalassa -thalia -thallo -thanatos -thaumas -thelchtereia -thelxinoe -thelxiope -theros -thetis -thoosa -thrasos -tisiphone -titan -titias -tityos -tonnes -triteia -triton -tritones -tyche -typhon -urania -uranus -younger -zagreus -zelos -zephyrus -zeus diff --git a/kpov_judge/random_data/roman_gods.txt b/kpov_judge/random_data/roman_gods.txt deleted file mode 100644 index dcf9cd7..0000000 --- a/kpov_judge/random_data/roman_gods.txt +++ /dev/null @@ -1,184 +0,0 @@ -abundantia -acis -aerecura -aequitas -aesculapius -aeternitas -aion -alernus -angerona -angitia -annona -antevorta -apollo -arimanius -aura -aurora -averruncus -bacchus -bellona -bubona -caca -cacus -caelus -camenae -cardea -carmenta -carmentes -carna -ceres -clementia -cloacina -concordia -consus -cupid -cura -cybele -decima -devera -diana -disciplina -egeria -empanda -epona -falacer -fama -fascinus -fauna -faunus -faustitas -februus -febris -fecunditas -felicitas -ferentina -feronia -fides -flora -fornax -fontus -fortuna -fufluns -fulgora -furrina -genius -gratiae -hercules -hermaphroditus -honos -hora -indiges -intercidona -inuus -inidia -janus -juno -jupiter -justitia -juturna -juventas -lares -laverna -latona -levana -letum -liber -libera -liberalitas -libertas -libitina -lua -lucifer -lucina -luna -lupercus -lympha -manes -mania -mantus -mars -meditrina -mefitis -mellona -mercury -minerva -mithras -molae -moneta -mors -morta -murcia -naenia -nascio -necessitas -nemesis -neptune -nerio -neverita -nixi -nona -nox -ops -orcus -palatua -pales -parcae -pax -penates -picumnus -picus -pietas -pilumnus -pluto -poena -pomona -porrima -portunes -postverta -priapus -proserpina -providentia -pudicitia -querquetulanae -quirinus -quiritis -robigo -roma -rumina -salacia -salus -sancus -saturn -securitas -silvanus -somnus -soranus -sors -spes -sterquilinus -suadela -summanus -tellumo -tempestas -terminus -tiberinus -tibertus -tranquillitas -trivia -ubertas -unxia -vacuna -vediovus -venilia -venti -venus -veritas -verminus -vertumnus -vesta -victoria -virbius -virtus -volturnus -voluptas -vulcan diff --git a/kpov_judge/random_data/slavic_gods.txt b/kpov_judge/random_data/slavic_gods.txt deleted file mode 100644 index bc9543c..0000000 --- a/kpov_judge/random_data/slavic_gods.txt +++ /dev/null @@ -1,72 +0,0 @@ - dazbog - kresnik - jarilo - zemlja - perun - svarun - svetovid - triglav - veles - zarja - ziva - zora - belobog - rusalka - berstuk - crnobog - devana - dodola - flins - hors - karewit - koliada - kupala - marzanna - mokos - porenut - porewit - porvata - radegast - rod - rugiewit - stribog - zirnitra - alkonost - cikavac - zarptica - gamayun - ispolin - kolobok - raróg - raskovnik - simargl - sirin - ved - zmaj - ala - jagababa - bannik - bauk - bes - blud - bukavac - crt - jerina - dola - domovoj - drekavac - dukljan - kikimora - koscej - ovinnik - polevik - psoglav - rusalka - samodiva - skrzak - sudice - topilec - vampir - vesna - vila - povodnimoz diff --git a/kpov_judge/random_data/slovenian_names.txt b/kpov_judge/random_data/slovenian_names.txt deleted file mode 100644 index 6004e4c..0000000 --- a/kpov_judge/random_data/slovenian_names.txt +++ /dev/null @@ -1,20 +0,0 @@ -Franc -Marija -Janez -Ana -Anton -Maja -Ivan -Irena -Rok -Mojca -Andrej -Mateja -Marko -Natalija -Nik -Ivana -Marjan -Nina -Peter -Barbara diff --git a/kpov_judge/random_data/slovenian_surnames.txt b/kpov_judge/random_data/slovenian_surnames.txt deleted file mode 100644 index f50e952..0000000 --- a/kpov_judge/random_data/slovenian_surnames.txt +++ /dev/null @@ -1,10 +0,0 @@ -Novak -Horvat -Zmeda -Krajnc -Brglez -Kolar -Ribnikar -Mlakar -Vidmar -Kos diff --git a/kpov_judge/rm_task.py b/kpov_judge/rm_task.py deleted file mode 100755 index 1752727..0000000 --- a/kpov_judge/rm_task.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 - -import settings -import sys - -import pymongo - -if __name__ == '__main__': - if len(sys.argv) < 2: - print("Usage: {0} [task_name]".format(sys.argv[0])) - exit(1) - task_id = sys.argv[1] - db = pymongo.MongoClient(settings.DB_URI).get_default_database() - db.computers_meta.remove({'task_id': task_id}) - db.networks.remove({'task_id': task_id}) - db.task_checkers.remove({'task_id': task_id}) - db.tasks.remove({'task_id': task_id}) - db.prepare_disks.remove({'task_id': task_id}) - db.student_computers.remove({'task_id': task_id}) - db.results.remove({'task_id': task_id}) - db.gen_params.remove({'task_id': task_id}) - db.task_params_meta.remove({'task_id': task_id}) - db.task_params.remove({'task_id': task_id}) - db.task_instructions.remove({'task_id': task_id}) - db.howtos.remove({'task_id': task_id}) - db.howto_images.remove({'task_id': task_id}) diff --git a/kpov_judge/scripts/make-arbiter.sh b/kpov_judge/scripts/make-arbiter.sh deleted file mode 100755 index b08944c..0000000 --- a/kpov_judge/scripts/make-arbiter.sh +++ /dev/null @@ -1,95 +0,0 @@ -#!/bin/sh - -# Create the disk image for arbiter: a gateway with NAT, dnsmasq and -# sshd. The user account test / test is set up to run the test_task -# script for evaluating the given task. The account is also given sudo -# rights to reboot, poweroff, ifconfig, ip and mount. - -set -e - -if [ $# -lt 1 ]; then - echo "usage: ${0} base" - exit 1 -fi - -base="${1}" -name="arbiter" -format="qcow2" - -# WAN on first interface, LAN on second -file_interfaces=\ -'# see interfaces(5) -source /etc/network/interfaces.d/* - -# loopback interface -auto lo -iface lo inet loopback - -# first interface -allow-hotplug ens3 -iface ens3 inet dhcp -allow-hotplug enp0s3 -iface enp0s3 inet dhcp - -# second interface -allow-hotplug ens4 -iface ens4 inet static - address 10.94.94.1/24 -allow-hotplug enp0s8 -iface enp0s8 inet static - address 10.94.94.1/24 -' - -# NAT rules -file_nftables=\ -'table ip nat { - chain prerouting { - type nat hook prerouting priority 0; policy accept; - } - - chain postrouting { - type nat hook postrouting priority 100; policy accept; - oifname "ens3" masquerade - oifname "enp0s3" masquerade - } -} -' - -file_dnsmasq=\ -'interface=ens4 -interface=enp0s8 - -dhcp-range=10.94.94.16,10.94.94.250,12h -' - -file_sudoers=\ -'test ALL = /sbin/reboot -test ALL = /sbin/poweroff -test ALL = NOPASSWD: /bin/ip -test ALL = NOPASSWD: /bin/mount -test ALL = NOPASSWD: /sbin/ifconfig -' - -qemu-img create -f qcow2 -b "${base}" "${name}.${format}" - -virt-customize -a "${name}.${format}" \ - --hostname "${name}" \ - --update \ - --install fortune-mod,fortunes,fortunes-bofh-excuses,python3-pexpect,python3-paramiko,python3-snimpy,python3-yaml \ - --install dnsmasq \ - --install openssh-server \ - --run-command "apt clean" \ - --write /etc/network/interfaces:"${file_interfaces}" \ - --write /etc/nftables.conf:"${file_nftables}" \ - --write /etc/sysctl.d/gateway.conf:"net.ipv4.ip_forward = 1" \ - --run-command "systemctl enable nftables.service" \ - --write /etc/dnsmasq.d/kpov-gw:"${file_dnsmasq}" \ - --run-command "useradd -m -s /bin/bash -p '\$6\$VdV5y2gl\$YxpYuwcVZHSXiv0N4yzmF8PspBeIK8QLdGJZzYFuKRjkfc82DhaS5fQeuOt0q9APDPLeSMTzt8BtxI2Bwo/hH.' test" \ - --write /etc/sudoers.d/kpov-test:"${file_sudoers}" - -## make a sparse diff -#virt-sparsify "${name}.${format}" "${name}x.${format}" -#qemu-img create -f "${format}" -b "${name}x.${format}" "${name}-diff.${format}" -#qemu-img rebase -b "${base}" "${name}-diff.${format}" - -#rm -f "./${name}-install.${format}" diff --git a/kpov_judge/scripts/make-base.sh b/kpov_judge/scripts/make-base.sh deleted file mode 100755 index 970acac..0000000 --- a/kpov_judge/scripts/make-base.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh - -# Create the base disk image: a minimal Debian install with a user -# account student / vaje. Root password is kaboom. Serial console is -# enabled for grub and boot messages are displayed. Some useful -# additional packages are installed, and the image is sparsified -# (requires at least 30 GB free space). - -set -e - -if [ $# -lt 1 ]; then - echo "usage: ${0} image-name" - exit 1 -fi - -name="${1}" -format=qcow2 - -outfile="${name}.${format}" -fatfile="${name}-fat.${format}" - -tmpdir="$(mktemp -d kpov-tmp.XXXXXX)" -trap 'rm -rf "${tmpdir}"' EXIT - -for f in linux initrd.gz; do - wget "https://d-i.debian.org/daily-images/i386/daily/netboot/debian-installer/i386/${f}" -O "${tmpdir}/${f}" -done - -qemu-img create -f "${format}" -o size=30G "${fatfile}" - -qemu-system-i386 \ - -enable-kvm \ - -nographic \ - -m 1G -smp 2 \ - -kernel "${tmpdir}/linux" -initrd "${tmpdir}/initrd.gz" \ - -append "console=ttyS0,115200n8 serial auto=true url=http://10.0.2.10:8080/preseed.cfg hostname=${name} domain=" \ - -net user,guestfwd=:10.0.2.10:8080-cmd:"/bin/busybox httpd -i" -net nic \ - -hda "${fatfile}" - -virt-customize -a "${fatfile}" \ - --update \ - --install virtualbox-guest-utils,virtualbox-guest-modules \ - --install nftables \ - --install git,nano,net-tools,rsync,sudo,tmux,vim \ - --run-command 'apt clean' \ - --edit /etc/default/grub:'s/^GRUB_CMDLINE_LINUX_DEFAULT=.*$/GRUB_CMDLINE_LINUX_DEFAULT="console=tty0 console=ttyS0"/' \ - --edit /etc/default/grub:'s/^GRUB_TERMINAL=.*$/GRUB_TERMINAL=\"console serial\"/' \ - --run-command update-grub - -virt-sparsify "${fatfile}" "${outfile}" -rm -f "${fatfile}" diff --git a/kpov_judge/scripts/make-student.sh b/kpov_judge/scripts/make-student.sh deleted file mode 100755 index f072b47..0000000 --- a/kpov_judge/scripts/make-student.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh - -# Create the disk image for a basic terminal computer with sshd. -# Typical virtual‐machine network interfaces are configured for DHCP. - -set -e - -if [ $# -lt 1 ]; then - echo "usage: ${0} base" - exit 1 -fi - -base="${1}" -name="student" -format="qcow2" - -file_interfaces=\ -'# see interfaces(5) -source /etc/network/interfaces.d/* - -# loopback interface -auto lo -iface lo inet loopback - -# first interface -allow-hotplug ens3 -iface ens3 inet dhcp -allow-hotplug enp0s3 -iface enp0s3 inet dhcp -' - -qemu-img create -f qcow2 -b "${base}" "${name}.${format}" - -virt-customize -a "${name}.${format}" \ - --hostname "${name}" \ - --update \ - --install openssh-server \ - --write /etc/network/interfaces:"${file_interfaces}" - -#virt-sparsify "${name}.${format}" "${name}x.${format}" -#qemu-img create -f "${format}" -b "${name}x.${format}" "${name}-diff.${format}" -#qemu-img rebase -b "${base}" "${name}-diff.${format}" diff --git a/kpov_judge/scripts/preseed.cfg b/kpov_judge/scripts/preseed.cfg deleted file mode 100644 index 7bf3c7a..0000000 --- a/kpov_judge/scripts/preseed.cfg +++ /dev/null @@ -1,91 +0,0 @@ -d-i debian-installer/language string en -d-i debian-installer/country string SI -d-i debian-installer/locale string en_US.UTF-8 -d-i localechooser/supported-locales multiselect de_DE.UTF-8, es_ES.UTF-8, fr_FR.UTF-8, sl_SI.UTF-8 - -d-i keyboard-configuration/xkb-keymap select slovene -# d-i keyboard-configuration/toggle select No toggling - -d-i netcfg/choose_interface select auto - -# Any hostname and domain names assigned from dhcp take precedence over -# values set here. However, setting the values still prevents the questions -# from being shown, even if values come from dhcp. -d-i netcfg/get_hostname string unassigned-hostname -d-i netcfg/get_domain string unassigned-domain - -d-i netcfg/wireless_wep string - -# mirror settings -d-i mirror/country string manual -d-i mirror/http/hostname string ftp.si.debian.org -d-i mirror/http/directory string /debian -d-i mirror/http/proxy string - -d-i mirror/suite string buster - -# root password, either in clear text -d-i passwd/root-password password kaboom -d-i passwd/root-password-again password kaboom -# or encrypted using a crypt(3) hash. -#d-i passwd/root-password-crypted password [crypt(3) hash] - -d-i passwd/user-fullname string Študent KPOV -d-i passwd/username string student -# normal user's password, either in clear text -d-i passwd/user-password password vaje -d-i passwd/user-password-again password vaje -# or encrypted using a crypt(3) hash. -#d-i passwd/user-password-crypted password [crypt(3) hash] - -d-i passwd/user-default-groups string users audio cdrom video wheel - -d-i clock-setup/utc boolean true -d-i time/zone string Europe/Ljubljana -d-i clock-setup/ntp boolean true - -# Partitioning -# - regular: use the usual partition types for your architecture -# - lvm: use LVM to partition the disk -# - crypto: use LVM within an encrypted partition -d-i partman-auto/method string regular - -# - atomic: all files in one partition -# - home: separate /home partition -# - multi: separate /home, /var, and /tmp partitions -d-i partman-auto/choose_recipe select atomic - -d-i partman-partitioning/confirm_write_new_label boolean true -d-i partman/choose_partition select finish -d-i partman/confirm boolean true -d-i partman/confirm_nooverwrite boolean true - -# this makes partman automatically partition without confirmation. -d-i partman-md/confirm boolean true -d-i partman-partitioning/confirm_write_new_label boolean true -d-i partman/choose_partition select finish -d-i partman/confirm boolean true -d-i partman/confirm_nooverwrite boolean true - -# Base system installation -d-i base-installer/install-recommends boolean false -d-i apt-setup/contrib boolean true -d-i apt-setup/source boolean false - -tasksel tasksel/first multiselect standard -popularity-contest popularity-contest/participate boolean false - -# Individual additional packages to install -#d-i pkgsel/include string openssh-server build-essential nano python3 git tmux rsync vim - -d-i grub-installer/only_debian boolean true -d-i grub-installer/with_other_os boolean true - -# Due notably to potential USB sticks, the location of the MBR can not be -# determined safely in general, so this needs to be specified: -#d-i grub-installer/bootdev string /dev/sda -# To install to the first device (assuming it is not a USB stick): -d-i grub-installer/bootdev string default - -d-i finish-install/reboot_in_progress note -d-i debian-installer/exit/poweroff boolean true
\ No newline at end of file diff --git a/kpov_judge/settings-example.py b/kpov_judge/settings-example.py deleted file mode 100644 index 34e70c3..0000000 --- a/kpov_judge/settings-example.py +++ /dev/null @@ -1,11 +0,0 @@ -DEBUG=True - -DB_URI='mongodb://kpov:SomeSuperSecretPassword@kpov.fri.uni-lj.si:27017/kpov' -# SNAPSHOTS_ROOT='/home/andrejtolic/kpov/snapshots/' -DISK_TEMPLATE_PATH = '/home/kpov/disks/templates' -STUDENT_DISK_PATH='/home/kpov/disks/students' -STUDENT_DISK_FORMAT=['vdi', 'vmdk'] -STUDENT_DISK_COW=False # dokler Andrej ne popravi... -STUDENT_DISK_URL='https://my_html_server.com/kpov-disks/' -STUDENT_LOCKFILE_PATH='/home/kpov/disks/lockfiles' -GUESTFS_DEV_PREFIX = '/dev/vd' diff --git a/kpov_judge/tasks/basic_network_gcc/task.py b/kpov_judge/tasks/basic_network_gcc/task.py deleted file mode 100644 index b23c060..0000000 --- a/kpov_judge/tasks/basic_network_gcc/task.py +++ /dev/null @@ -1,279 +0,0 @@ -# TODO: -# - check if everything is filled in (computers, params, preparation) -# - improve scoring -# - test -# - switch to a real SSH/SFTP client to properly handle filenames - -instructions = { - 'si': '''\ -<p> -Postavite dva navidezna računalnika: <em>SimpleArbiter</em> in <em>Student</em>. Oba naj bosta povezana na internet. Poleg tega mora biti <em>Student</em> na naslovu <code>{{student_IP}</code> dostopen s <em>SimpleArbiter</em>. - -<p> -Računajte, da se na <em>Student</em> ob zagonu zažene program <code>{{net_prog_name}</code>, -ki vam spreminja nastavitve mrežne kartice. - -<p> -V domačem imeniku uporabnika <code>student</code> obstaja program <code>{{P_c}</code> v programskem jeziku C. Prevedite ga v program z imenom <code>{{P_executable}</code>. Izvorna koda je namenoma pokvarjena tako, da so vanjo vrinjeni nepotrebni znaki. -Pred prevajanjem jo morate popraviti. - -<p> -Napišite skripto ali program <code>{{P_script}</code> v domačem imeniku uporabnika <code>student</code>, ki - -<ul> -<li>požene <code>{{P_executable}</code> z argumentom <code>{{arg_c}</code> in mu na standardni vhod pripelje vrednost spremenljivke <code>{{env_c}</code>; -<li>vse, kar <code>{{P_executable}</code> izpiše na <code>stderr</code>, spravi v datoteko <code>{{out_stderr_c}</code>; -<li>vse vrstice, ki jih <code>{{P_executable}</code> izpiše na <code>stdout</code> in vsebujejo zaporedje znakov <code>ma</code>, zapiše v <code>{{out_stdout_c}</code>. -</ul> - -<p> -Lastnik vseh ustvarjenih datotek mora biti uporabnik <code>student</code>. Gesla uporabnika student (<code>vaje</code>) ne smete spreminjati. -''', - 'en': ''' -''', -} - -computers = { - 'SimpleArbiter': { - 'disks': [ - { - 'name': 'simpleArbiter', - }, - ], - 'network_interfaces': [ - {'network': 'net1'}, - {'network': 'net2'}, - ], - 'flavor': 'm1.tiny', - 'config_drive': True, - }, - 'Student': { - 'disks': [ - {'name': 'student-entrance'} - ], - 'flavor': 'm1.tiny', - 'network_interfaces': [{'network': 'net1'}], - 'config_drive': True, - } -} - -networks = { - 'net1': { - 'public': True, - }, - 'net2': { - 'public': False, - }, -} - -params_meta = { - 'student_IP': { - 'descriptions': { 'si': 'IP naslov SimpleStudent', 'en': 'IP address of SimpleStudent', - }, 'w': False, 'public': True, 'type': 'IP', 'generated': True, - }, - 'net_prog_name': { - 'descriptions': { 'si': 'Ime programa, ki ponastalvlja naslov', 'en': 'The name of the program resetting the network' - }, 'w': False, 'public': True, 'type': 'filename', 'generated': True, - }, - 'P_c': { - 'descriptions': { 'si': 'Datoteka s programom v C', 'en': 'Filename of the program in C', - }, 'w': False, 'public': True, 'type': 'filename', 'generated': True, - }, - 'P_executable': { 'descriptions': { 'si': 'Ime prevedenega programa v C', 'en': 'Filename of the compiled C program' - }, 'w': False, 'public': True, 'type': 'filename', 'generated': True, - }, - 'arg_c': { - 'descriptions': { 'si': 'Vrednost argumenta', 'en': 'Argument value', - }, 'w': False, 'public': True, 'type': 'short_text', 'generated': True, - }, - 'env_c': { - 'descriptions': { 'si': 'Ime okoljske spremenljivke', 'en': 'The name of the environment environment', - }, 'w': False, 'public': True, 'type': 'short_text', 'generated': True, - }, - 'out_stderr_c': { - 'descriptions': { 'si': 'Datoteka z napakami', 'en': 'File to store errors', - }, 'w': False, 'public': True, 'type': 'filename', 'generated': True, - }, - 'P_script': { - 'descriptions': { 'si': 'Ime skripte', 'en': 'Filename of the script', - }, 'w': False, 'public': True, 'type': 'filename', 'generated': True, - }, - 'out_stdout_c': { - 'descriptions': { 'si': 'Datoteka z izhodom', 'en': 'File to store the output', - }, 'w': False, 'public': True, 'type': 'filename', 'generated': True, - }, - 'param_gen_seed': { - 'descriptions': { 'si': 'Nakljucno seme', 'en': 'Random seed', - }, 'w': False, 'public': True, 'type': None, 'generated': True, - }, - 'c_destroy_gen_seed': { - 'descriptions': { 'si': 'Nakljucno seme za kvarjenje kode v C', 'en': 'Random seed for destroying the C code', - }, 'w': False, 'public': False, 'type': None, 'generated': True, - } - -} - -def task(student_IP, net_prog_name, - P_c, P_executable, arg_c, env_c, out_stderr_c, out_stdout_c, P_script, - param_gen_seed): - import random - - r = random.Random(int(param_gen_seed)) - env_val = "".join([r.choice('ABCDEFGHIJKLMNPRSTUVZ012345') for i in range(11)]) - arg_val = "".join([r.choice('ABCDEFGHIJKLMNPRSTUVZ012345') for i in range(13)]) - stdin_val = "".join([r.choice('ABCDEFGHIJKLMNPRSTUVZ012345') for i in range(17)]) - - return kpov_util.ssh_test(student_IP, 'student', 'vaje', ( - ('script_ls', 'ls -l {}'.format(P_script)), - ('executable_ls', 'ls -l {}'.format(P_executable)), - ('script_run', 'export {}={}; {}'.format(env_c, env_val, P_script)), - ('script_stdout', 'cat {}'.format(out_stdout_c)), - ('script_stderr', 'cat {}'.format(out_stderr_c)), - ('prog_stdout', 'echo "{}" | {} "{}" 2> /dev/null'.format(stdin_val, P_executable, arg_val)), - ('prog_stderr', 'echo "{}" | {} "{}" > /dev/null'.format(stdin_val, P_executable, arg_val)), - )) - -def gen_params(user_id, params_meta): - import random - r = random.Random(user_id+'evil cornholio') - params = kpov_util.default_gen(user_id, params_meta) - homedir = '/home/student/' - params['env_c'] = "".join([r.choice('ABCDEFGHIJKLMNPRSTUVZ') for i in range(5)]) - params['P_c'] = "".join([r.choice('abcdefghijklmnoprst') for i in range(5)]) + ".c" - params['param_gen_seed'] = str(r.randint(0, 2**24)) - params['c_destroy_gen_seed'] = str(r.randint(0, 2**24)) - dest_net = kpov_util.IPv4_subnet_gen(r, '10.0.2.128/26', 26) - params['student_IP'] = kpov_util.IPv4_addr_gen(r, dest_net)[0] - for k in ['P_c', 'P_executable', 'out_stderr_c', 'P_script', 'out_stdout_c']: - params[k] = homedir + params[k] - return params - -def task_check(results, params): - import os - def test_out_gen(arg, var): - s_out = "" - s_err = "" - r = 0 - arg_len = len(arg) - env_len = len(var) - for i in range(100): - s_out += chr(32 + ((ord(arg[i % arg_len]) ^ ord(var[i % env_len])) % 64)) - r += ord(arg[i % arg_len]) + ord(var[i % env_len]) + i; - if (i % 17 == 0): - s_out += "RAUS\r\n"; - if (i % 29 == 0): - s_out += 'ma' - s_err += chr((r % 31) + ord('A')); - if (i % 23 == 0): - s_err += "PATACIS\r\n" - retval = r % 16 - s_err += '\r\n' - s_out += '\r\n' - return(s_out, s_err, retval) - score = 0 - hints = [] - r = random.Random(int(params['param_gen_seed'])) - env_val = "".join([r.choice('ABCDEFGHIJKLMNPRSTUVZ012345') for i in range(11)]) - arg_val = "".join([r.choice('ABCDEFGHIJKLMNPRSTUVZ012345') for i in range(13)]) - stdin_val = "".join([r.choice('ABCDEFGHIJKLMNPRSTUVZ012345') for i in range(17)]) - expected_script_stdout, expected_script_stderr, rval = test_out_gen( - params['arg_c'], env_val - ) - if expected_script_stderr != results['script_stderr']: - hints += ['wrong script stderr'] - else: - score += 2 - split_stdout = expected_script_stdout.split('\r\n') - expected_script_stdout = "\r\n".join([ i for i in split_stdout if i.find('ma') >= 0]) - if expected_script_stdout != results['script_stdout'].strip(): - hints += ['wrong script stdout'] - else: - score += 2 - expected_prog_stdout, expected_prog_stderr, rval = test_out_gen( - arg_val, stdin_val - ) - if expected_prog_stderr != results['prog_stderr'][-len(expected_prog_stderr):]: - hints += ['wrong program stderr'] - else: - score += 2 - if expected_prog_stdout != results['prog_stdout'][-len(expected_prog_stdout):]: - hints += ['wrong program stdout'] - else: - score += 2 - if results['script_ls'].find('-r') < 0: - hints += ['script not found'] - else: - score += 1 - if results['executable_ls'].find('xr') < 0: - hints += ['C executable not found'] - else: - score += 1 - return score, hints - -def prepare_disks(templates, task_params, global_params): - c_source = '''#include<stdio.h> -#include<stdlib.h> -#include<string.h> -/* Odstranite vse odvecne velike crke Q, W ali X in program se bo prevedel. */ - -int main(int argc, char **argv){ - unsigned char *arg; - unsigned char var[255]; - int i, arg_len, env_len, r; - scanf("%s", var); - arg = argv[1]; - arg_len = strlen(argv[1]); - env_len = strlen(var); - r = 0; - for (i = 0; i<100; i++){ - printf("%c", 32 + (arg[i % arg_len] ^ var[i % env_len]) % 64); - r += (int)arg[i % arg_len] + (int)var[i % env_len] + i; - if (i % 17 == 0){ - printf("RAUS\\n"); - } - if (i % 29 == 0){ - printf("ma"); - } - fprintf(stderr, "%c", (r % 31) + 'A'); - if (i % 23 == 0){ - fprintf(stderr, "PATACIS\\n"); - } - } - printf("\\n"); - fprintf(stderr, "\\n"); - return r % 16; -} -''' - evil_shell_source = """#!/bin/bash -e -{ while true; do - ifconfig eth1 10.0.4.19 2> /dev/null; - ifconfig eth0 10.0.4.20 2> /dev/null; - ifconfig eth2 10.0.4.21 2> /dev/null; - sleep 10; -done; }& -""" - import random - d = templates['student-entrance'] - r = random.Random(task_params['c_destroy_gen_seed']) - destroyed_c_source = c_source[:110] - for c in c_source[110:]: - i = r.randint(0, 5) - if i == 1: - destroyed_c_source += 'QW' - if i == 2: - destroyed_c_source += 'XW' - if i == 3: - destroyed_c_source += 'QX' - destroyed_c_source += c - d.write(task_params['P_c'], destroyed_c_source) - d.chown(1000, 1000, task_params['P_c']) - sh_path = r.choice(['/usr/share/doc', '/var/lib', '/usr/local/share', '/etc/alternatives']) - sh_file = sh_path + '/' + task_params['net_prog_name'] - d.write(sh_file, evil_shell_source) - d.chmod(0o775, sh_file) - d.write("/etc/rc.local", """#!/bin/sh -e -export PATH=$PATH:{} -{} & - -exit 0 -""".format(sh_path, task_params['net_prog_name'])) diff --git a/kpov_judge/tasks/copy_rename_100_files/task.py b/kpov_judge/tasks/copy_rename_100_files/task.py deleted file mode 100644 index 9dcf69a..0000000 --- a/kpov_judge/tasks/copy_rename_100_files/task.py +++ /dev/null @@ -1,120 +0,0 @@ -# TODO: -# - check if everything is filled in (computers, params, preparation) -# - improve scoring -# - test -# - switch to a real SSH/SFTP client to properly handle filenames - -instructions = { - 'si':""" -<pre>Ustvari dva navidezna računalnika. Za prvega uporabi sliko diska simpleArbiterDhcp. Na drugem računalniku -ustvari uporabnika test z geslom test. -Na sliki diska simpleArbiterDhcp najdeš imenik s 100 datotekami. Prekopiraj vse datoteke na drugi računalnik v domači imenik uporabnika test. -Spremeni vsebino datotek tako, da vse male črke spremeniš v velike. Poskrbi, da se bo s prvega računalnika (simpleArbiterDhcp) mogoče prek -ssh prijaviti na drugi računalnik in prebrati predelane datoteke.</pre> -""", - 'en': ''' -<pre>Create two virtual machines. For the first, use the `simpleArbiterDhcp' image. -On the second machine, create a user `test' with the password `test'. -The `simpleArbiterDhcp' disk image contains a folder with 100 files. Copy all -of these files to the other computer into the home folder of theuser `test'. -Modify the content of these files by converting all lowercase letters into -uppercase. Make sure that the first machine (`simpleArbiterDhcp') can use ssh -to access the second machine and read the processed files.</pre> -''', -} - -computers = { - 'SimpleArbiter': { - 'disks': [ - { - 'name': 'simpleArbiterDhcp', - }, - ], - 'network_interfaces': [ - { - 'network': 'net1', - }, - ], - 'flavor': 'm1.tiny', - 'config_drive': False, - } -} - -networks = { - 'net1': { - 'public': True, - }, -} - -params_meta = { - 'folder': { - 'descriptions': { - 'si': 'Mapa, ki vsebuje 100 datotek', - 'en': 'A folder with 100 files', - }, - 'w': False, - 'public': True, - 'type': 'dirname', - 'generated': False, - }, - 'host': { - 'descriptions': { - 'si': 'Naslov racunalnika, na katerega kopiramo datoteke', - 'en': 'The address of the computer to which the files are copied', - }, - 'w': True, - 'public': True, - 'type': 'IP', - 'generated': False, - }, -} - -def task(host, folder): - return kpov_util.ssh_test(host, 'test', 'test', ( - ('files', 'ls -1'), # XXX: file may have newlines - ('contents', 'cat *'), # XXX: may include other files in $HOME - )) - -def gen_params(user_id, params_meta): - pass - -def task_check(results, params): - import os - - score = 0 - hints = [] - if results['ssh'] is not True: - hints += ['ssh failed: ' + results['ssh']] - - matched = 0 - files = os.listdir(params['folder']) - for fn in files: - if fn in results['files'].splitlines(): - matched += 1 - if matched > 0: - score = 1 - else: - hints += ["no files"] - if matched > len(files)/2: - score += 2 - else: - hints += ["less than half the files"] - if (matched == len(files)): - score += 3 - else: - hints += ["wrong number of files"] - rl = results['contents'].splitlines() - rl.sort() - tl = [] - for fn in files: - with open(os.path.join(params['folder'], fn)) as f: - tl += f.read().upper().splitlines() - tl.sort() - if rl == tl: - score += 4 - else: - hints += ["wrong files"] - return score, hints - -def prepare_disks(templates, task_params, global_params): - pass diff --git a/kpov_judge/tasks/copy_rename_20_files_tail_env/howtos/en/index.html b/kpov_judge/tasks/copy_rename_20_files_tail_env/howtos/en/index.html deleted file mode 100644 index b1008cc..0000000 --- a/kpov_judge/tasks/copy_rename_20_files_tail_env/howtos/en/index.html +++ /dev/null @@ -1,18 +0,0 @@ -<html>
-<body>
-<h2>Purpose of this exercise</h2>
- <p>To learn how to use a few BASH commands.</p>
-<h2>Quick summary</h2>
- <p>You will use bash commands like: mv, grep, env etc.</p>
-<h2>Instructions</h2>
-
-<h2><ol>
- <li>Log into your system and in your home folder you will find a directory called Mapa containing 20 files.</li>
- <li>Rename all files, by replacing all minus signs with underscores using the command: "rename 's/-/_/' *".</li>
- <li>Remove all files from /home/user/mapa/mojimenik into /home/user/novi using command: "mkdir-p /home/user/novi && mv /home/user/mapa/mojimenik/* /home/user/novi"</li>
- <li>Write all regular files containing a string "mama" into file "mama.txt", and all errors in file "napake.txt" by using: "find . -type f | grep mama 1> mama.txt 2> napake.txt".</li>
- <li>Inspect /var/log/syslog for 5 seconds and in case a string"zmeda" appears in syslog, write "imam ga". Also while inspecting syslog, reduce the counter by every second using a command: "for i in 5 4 3 2 1; do echo $i; echo $(sed -n "$i p" /var/log/syslog | grep zmeda > /dev/null && echo "imam ga"); sleep 1; done".</li>
- <li>Set a variable TEST to the same value as the variable USER + the number of environmen variables not containing string "TEST" in their names, by adding ~/.bashrc to the end of the file: "export TEST=$USER" + "$(env | grep -v TEST | wc -l)"</li>
-</ol></h2>
-</body>
-</html>
diff --git a/kpov_judge/tasks/copy_rename_20_files_tail_env/howtos/si/index.html b/kpov_judge/tasks/copy_rename_20_files_tail_env/howtos/si/index.html deleted file mode 100644 index 1ce8b44..0000000 --- a/kpov_judge/tasks/copy_rename_20_files_tail_env/howtos/si/index.html +++ /dev/null @@ -1,38 +0,0 @@ -<html>
-<body>
-
-<!--
-Prijavi se na sistem.
-V domači mapi najdeš imenik Mapa z 20 datotekami.
- - preimenuj vse datoteke tako, da zamenjaš minuse s podčrtaji
- - Napiši čim krajši ukaz, ki vse datoteke iz /home/user/mapa/mojimenik premakne v /home/user/novi
- - Napiši ukaz, ki s pomočjo ukaza grep v datoteko "mama.txt" izpiše vse navadne (ne skrite) datoteke v trenutnem imeniku, ki vsebujejo niz "mama", v datoteko "napake.txt" pa izpiše vse morebitne napake (npr. to, da so nekateri objekti v trenutnem imeniku dejansko imeniki ali napačne simbolične povezave)
- - Napiši ukaz, ki bo 5s sledil vsebini /var/log/syslog. V primeru, da se v syslogu pojavi niz "zmeda", naj program izpiše "imam ga". Poleg tega naj program med sledenjem syslog-u odšteva od 5 do 1 (vsako sekundo naj se izpiše naslednja številka.
- - Nastavi okoljsko spremenljivko TEST, da bo imela isto vrednost kot okoljska spremenljivka USER + število okoljskih spremenljivk, ki v imenu ali vrednosti ne vsebujejo besede TEST. Primer: polz37
--->
-<!--
-English
-Log into the system.
-in the home directory find the directory Mapa with 20 files.
- -rename all the files in a such a manner that u replace al the minuses with an underscore
- -write the shortest command possible to move all the files from /home/user/mapa/mojimenik to home/user/novi
- -write a command which (with the help of the command grep) in the file "mama.txt" writes all the normal files (not hidden) in the current directory that contain the word "mama", and any mistakes to the file "napake.txt" (such as that the files are actually directories or wrong symbolic links)
- -write a command which will follow the content of /var/log/syslog for 5s. In the case that the expresion "zmeda" appears in the syslog print out "imam ga". Also for every second of following the syslog print out the a number, counting down from 5 to 1.
- -set the environment variable TEST, so it has the same value as the environmental variable USER + the number of invironmental variables which in their name do not contain the word TEST (example: polz37)
--->
-<h2>Namen vaje</h2>
- <p>Naučite se uporabe nekaj BASH ukazov.</p>
-<h2>Naloga na hitro</h2>
- <p>Uporabljali boste BASH ukaze kot so: mv, grep, env in druge.</p>
-<h2>Navodila</h2>
-
-<h2><ol>
- <li>Prijavite se v sistem. V domačem imeniku najdete imenik Mapa z 20 datotekami.</li>
- <li>Preimenujete vse datoteke tako, da zamenjate minuse s podčrtaji z ukazom: "rename 's/-/_/' *".</li>
- <li>Premaknite vse datoteke /home/user/mapa/mojimenik v /home/user/novi z ukazom: "mkdir-p /home/user/novi && mv /home/user/mapa/mojimenik/* /home/user/novi"</li>
- <li>V datoteko "mama.txt" zapišite vse navadne datoteke v trenutnem imeniku, ki vsebujejo niz "mama", v datoteko "napake.txt" pa zapišite vse morebitne napake z ukazom: "find . -type f | grep mama 1> mama.txt 2> napake.txt".</li>
- <li>Sledite vsebini /var/log/syslog za 5 sekund in v primeru, da se v syslogu pojavi niz "zmeda", izpišite "imam ga". Poleg tega med sledenjem syslog-u odštevajte od 5 do 1 z ukazom: "for i in 5 4 3 2 1; do echo $i; echo $(sed -n "$i p" /var/log/syslog | grep zmeda > /dev/null && echo "imam ga"); sleep 1; done".</li>
- <li>Nastavite okoljsko spremenljivko TEST, da bo imela isto vrednost kot okoljska spremenljivka USER + število okoljskih spremenljivk, ki v imenu ali vrednosti ne vsebujejo besede TEST tako, da na koncu datoteke ~/.bashrc dodate: "export TEST=$USER" + "$(env | grep -v TEST | wc -l)"</li>
-</ol></h2>
-</body>
-</html>
diff --git a/kpov_judge/tasks/copy_rename_20_files_tail_env/solution/solution.py b/kpov_judge/tasks/copy_rename_20_files_tail_env/solution/solution.py deleted file mode 100644 index f661c4d..0000000 --- a/kpov_judge/tasks/copy_rename_20_files_tail_env/solution/solution.py +++ /dev/null @@ -1,92 +0,0 @@ -# preimenuj vse datoteke tako, da zamenjaš minuse s podčrtaji -def rename(): - import os - for filename in os.listdir('.'): - os.rename(filename, filename.replace('-', '_')) - -# Napiši čim krajši ukaz, ki vse datoteke iz /home/user/mapa/mojimenik premakne v /home/user/novi -def mv_novi(): - import os - for filename in os.listdir("/home/user/mapa/mojimenik/"): - os.rename('/home/user/mapa/mojimenik/' + filename, '/home/user/novi/' + filename) - -# Napiši ukaz, ki s pomočjo ukaza grep v datoteko "mama.txt" izpiše vse navade (ne skrite) datoteke v trenutnem imeniku, ki vsebujejo niz "mama", v datoteko "napake.txt" pa izpiše vse morebitne napake (npr. to, da so nekateri objekti v trenutnem imeniku dejansko imeniki ali napačne simbolične povezave) -def mama(): - import os - import re - import mmap - mama = '' - wrong = '' - for filename in os.listdir('.'): - try: - f = open(filename, 'r+') - data = mmap.mmap(f.fileno(), 0) - if re.search('mama', data): - mama = mama + filename + "\n" - except ValueError: - wrong = wrong + filename + "\n" - open('mama.txt', 'w').write(mama) - open('napake.txt', 'w').write(wrong) - -# Napiši ukaz, ki bo 5s sledil vsebini /var/log/syslog. V primeru, da se v syslogu pojavi niz "zmeda", naj program izpiše "imam ga". Poleg tega naj program med sledenjem syslog-u odšteva od 5 do 1 (vsako sekundo naj se izpiše naslednja številka. -def checker(): - import time - import re - import mmap - t = time.time() * 1000 - n = t - - f = open('/var/log/syslog', 'r+') - data = mmap.mmap(f.fileno(), 0) - me = re.findall('zmeda', data) - - c = len(me) - for i in range(5, 0, -1): - print(i) - n += 1000 - while n > t: - f = open('/var/log/syslog', 'r+') - data = mmap.mmap(f.fileno(), 0) - me = re.findall('zmeda', data) - if len(me) > c: - c = len(me) - print('imam ga') - t = time.time() * 1000 - -# Nastavi okoljsko spremenljivko TEST, da bo imela isto vrednost kot okoljska spremenljivka USER + število okoljskih spremenljivk, ki v imenu ali vrednosti ne vsebujejo besede TEST. Primer: polz37 -def env(): - import os - import re - c = 0 - for i in os.environ: - if not (re.search('TEST', i) or re.search('TEST', os.environ[i])): - c = c + 1 - os.environ['TEST'] = os.environ['USER'] + repr(c) - -# S pomočjo programa cURL shrani vsebino spletne strani www.google.com v datoteko z imenom website.txt -def googl(): - import urllib.request - open('website.txt', 'w').write(urllib.request.urlopen('http://www.google.com').read()) - -# Napiši ukaz, ki bo število pojavitev značke <div> v datoteki website.txt dodal na konec te iste datoteke brez, da bi se ukaz zapisal v zgodovino ukazov "bash history" -def div(): - import re - import mmap - f = open('website.txt', 'r+') - data = mmap.mmap(f.fileno(), 0) - me = re.findall('<[^/<>]*div[^>]*>', data) - open('website.txt', 'a+').write(repr(len(me))) - -# Napiši ukaz brez uporabe programa cron, kateri 5 minut po izvedbi izpiše vsebino imenika v katerem se trenutno nahajaš -def sleep(): - import time - import os - time.sleep(300) - print(os.listdir('.')) - -# Napiši najkrajši ukaz, ki s pomočjo Pythona zažene preprost (integriran) HTTP strežnik kateri streže datoteke iz imenika iz katerega je bil pognan na vratih 8000 -def server(): - import http.server - import socketserver - httpd = socketserver.TCPServer(("", 8000), http.server.SimpleHTTPRequestHandler) - httpd.serve_forever() diff --git a/kpov_judge/tasks/copy_rename_20_files_tail_env/solution/solution.sh b/kpov_judge/tasks/copy_rename_20_files_tail_env/solution/solution.sh deleted file mode 100644 index b8e2d13..0000000 --- a/kpov_judge/tasks/copy_rename_20_files_tail_env/solution/solution.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash
-
-# preimenuj vse datoteke tako, da zamenja minuse s podrtaji
-rename 'y/-/_/' *
-
-# Napii im kraji ukaz, ki vse datoteke iz /home/user/mapa/mojimenik premakne v /home/user/novi
-mv /home/user/mapa/mojimenik/* /home/user/novi/
-
-# Napii ukaz, ki s pomojo ukaza grep v datoteko "mama.txt" izpie vse navade (ne skrite) datoteke v trenutnem imeniku, ki vsebujejo niz "mama", v datoteko "napake.txt" pa izpie vse morebitne napake (npr. to, da so nekateri objekti v trenutnem imeniku dejansko imeniki ali napane simboline povezave)
-grep -l 'mama' * 1>mama.txt 2>napake.txt
-
-# Napii ukaz, ki bo 5s sledil vsebini /var/log/syslog. V primeru, da se v syslogu pojavi niz "zmeda", naj program izpie "imam ga". Poleg tega naj program med sledenjem syslog-u odteva od 5 do 1 (vsako sekundo naj se izpie naslednja tevilka.
-COUNT=$(grep 'zmeda' /var/log/syslog | wc -l );
-END=$(date +%s%N | cut -b1-13);
-for i in {5..1}; do
- END=$(($END + 1000));
- echo "$i";
- while [ $(date +%s%N | cut -b1-13) -lt $END ]; do
- COUN1=$(grep 'zmeda' /var/log/syslog | wc -l );
- if [ $COUN1 -gt $COUNT ]; then
- echo "imam ga";
- COUNT=$COUN1;
- fi
- done
-done
-
-# Nastavi okoljsko spremenljivko TEST, da bo imela isto vrednost kot okoljska spremenljivka USER + tevilo okoljskih spremenljivk, ki v imenu ali vrednosti ne vsebujejo besede TEST. Primer: polz37
-TEST="$USER$(printenv | grep -v TEST | wc -l)"; export TEST
-
-# S pomojo programa cURL shrani vsebino spletne strani www.google.com v datoteko z imenom website.txt
-curl http://www.google.com > website.txt
-
-# Napii ukaz, ki bo tevilo pojavitev znake <div> v datoteki website.txt dodal na konec te iste datoteke brez, da bi se ukaz zapisal v zgodovino ukazov "bash history"
-grep -o "<[^/<>]*div[^>]*>" website.txt | wc -l >> website.txt; history -d $((HISTCMD-1))
-
-# Napii ukaz brez uporabe programa cron, kateri 5 minut po izvedbi izpie vsebino imenika v katerem se trenutno nahaja
-$(sleep 300; ls) &
-
-# Napii najkraji ukaz, ki s pomojo Pythona zaene preprost (integriran) HTTP strenik kateri stree datoteke iz imenika iz katerega je bil pognan na vratih 8000
-python -m SimpleHTTPServer
\ No newline at end of file diff --git a/kpov_judge/tasks/copy_rename_20_files_tail_env/task.py b/kpov_judge/tasks/copy_rename_20_files_tail_env/task.py deleted file mode 100644 index ce51c9c..0000000 --- a/kpov_judge/tasks/copy_rename_20_files_tail_env/task.py +++ /dev/null @@ -1,351 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si': '''\ -<p> -Prijavi se na sistem kot uporabnik <code>student</code> z geslom <code>vaje</code>. - -<p> -V domači mapi najdeš imenik <code>{{file_rename_dirname}}</code> z 20 datotekami. Preimenuj vse datoteke tako, da zamenjaš minuse s podčrtaji. - -<p> -Napiši najkrajši ukaz v <code>bash</code>, ki vse datoteke iz imenika <code>{{mv_src_dir}}</code> premakne v imenik <code>{{mv_dst_dir}}</code>. Ukaz spravi v <code>/home/student/mv_ukaz</code>. Pazite, da bodo ob testiranju v izvornem imeniku <em>iste</em> datoteke, kot so bile, ko je bila virtualka nova, ciljni imenik pa bo prazen. To pomeni, da boste verjetno morali po vsakem testiranju datoteke premakniti nazaj. Za krajšanje ukaza lahko izkoristite imeni imenikov. - -<p> -Napiši ukaz, ki s pomočjo ukaza <code>grep</code> v datoteko <code>~/mama.txt</code> izpiše imena vseh navadnih (ne skritih) datotek v trenutnem imeniku, ki vsebujejo niz <code>mama</code>, v datoteko <code>~/napake.txt</code> pa izpiše vse morebitne napake (npr. to, da so nekateri objekti v trenutnem imeniku dejansko imeniki ali napačne simbolične povezave). Ukaz spravite v datoteko <code>/home/student/mama_ukaz</code>. - -<p> -Napiši program (lahko v <code>bash</code>), ki bo pet sekund sledil vsebini <code>/var/log/syslog</code>. V primeru, da se v syslogu pojavi niz <code>zmeda</code>, naj program izpiše <code>imam ga</code>. Poleg tega naj program med sledenjem syslog-u odšteva od 5 do 1 (vsako sekundo naj se izpiše naslednja številka). Program naj bo v <code>/home/student/syslog_ukaz.sh</code>. - -<p> -Namesti paket <code>cowsay</code> in ga preizkusi. 😊 - -<p> -S pomočjo programa <code>curl</code> preštej število pojavitev niza <code>images</code> v spletni strani, ki jo dobiš na naslovu <code>http://localhost/{{curl_fname}}</code> na <em>malishell</em> in število zapiši v spremenljivko <code>$images</code> na <em>simpleArbiterDhcpGW</em> v lupini, kjer poganjaš <code>task_check.py</code>. - -<p> -V imeniku <code>{{wc_dirname}}</code> najdeš datoteko <code>count.txt</code>. Preštej število prehodov v novo vrstico v <code>count.txt</code> in rezultat zapiši v novo datoteko <code>lines.txt</code> v istem imeniku. -''', - 'en': '''\ -<p> -Log into the system as <code>student</code> using <code>vaje</code> as your password. - -<p> -In your home folder you will find a directory called <code>{{file_rename_dirname}}</code> containing 20 files. Rename all files in that directory replacing all dashes with underscores - -<p> -Find the shortest command for copying all the files located in <code>{{mv_src_dir}}</code> into the folder <code>{{mv_dst_dir}}</code>. Create a shell script <code>/home/student/mv_ukaz</code> containing this command. Before running <code>test_task.py</code>, make sure <code>{{mv_src_dir}}</code> contains the same files as when you downloaded your virtual disk. This probably means that you will have to move the files back from <code>{{mv_dst_dir}}</code> to <code>{{mv_src_dir}}</code> after each test. - -<p> -Come up with a command or sequence of commands in bash which will, using <code>grep</code>, write the names all normal (not hidden) files which contain the string <code>mama</code> and are located in the working directory (<code>pwd</code>) into the file <code>~/mama.txt</code> while writing errors such as files in current directory being folders or symbolic links in the file called <code>napake.txt</code>. Write this command to <code>/home/student/mama_ukaz</code>. - -<p> -Write a program (which may be a shell script) that will track the contents of <code>/var/log/syslog</code> for five seconds. Every time an entry containing the string <code>zmeda</code> appears in the syslog, the script should output <code>imam ga</code>. In addition, the script should count down from 5 to 1 with a one-second interval. Store the script in <code>/home/student/syslog_ukaz.sh</code>. - -<p> -Install the package <code>cowsay</code> and test it. 😊 - -<p> -Using the <code>curl</code> command count the number of occurences of the string <code>images</code> on the web page accessible from <em>malishell</em> at <code>http://localhost/{{curl_fname}}</code>. On <em>simpleArbiterDhcpGW</em> within the shell where you are running <code>test_task.py</code>, set the environment variable <code>$images</code> to this number. - -<p> -In the directory <code>{{wc_dirname}}</code> there is a file called <code>count.txt</code>. Write the number of newlines in this file into the file <code>lines.txt</code> in the same directory. -''', -} - -computers = { - 'malishell': { - 'disks': [ - { 'name': 'malishell', - }, - #{ 'name': 'CDROM', - # 'options':{'readonly': True}, - # 'parts': [],# no parts, no mounting. - #} - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiterDhcpGW': { - 'disks': [ - { 'name': 'simpleArbiterDhcpGW', - # attempt automount - }, - #{ 'name': 'CDROM', - # 'options': {'readonly': True}, - # 'parts': [{'dev': 'b1', 'path': '/cdrom'}], - #}, - ], - 'network_interfaces': [{'network': 'test-net'}, {'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = {'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'IP_malishell': {'descriptions': {'si': 'Naslov malishell'}, 'w': True, 'public':True, 'type': 'IP', 'generated': False}, - 'file_creator_random_seed': {'descriptions': {'si': 'random file creator seed'}, 'w': False, 'public':False, 'type': None, 'generated': True}, - 'file_rename_dirname': {'descriptions': {'si': 'imenik z datotekami, ki naj se jih preimenuje'}, 'w': False, 'public':True, 'type': 'dirname', 'generated': True}, - 'mv_src_dir': {'descriptions': {'si': 'imenik, iz katerega premakni datoteke'}, 'w': False, 'public':True, 'type': 'dirname', 'generated': True}, - 'mv_dst_dir': {'descriptions': {'si': 'imenik, v katerega premakni datoteke'}, 'w': False, 'public':True, 'type': 'dirname', 'generated': True}, - 'cowsay_string': {'descriptions': {'si': 'Kaj rece krava?'}, 'w': False, 'public':True, 'type': 'short', 'generated': True}, - 'syslog_n_zmeda': {'descriptions': {'si': 'st. zapisov zmeda v 5s'}, 'w': False, 'public':True, 'type': 'uint', 'generated': True}, - 'curl_fname': {'descriptions': {'si': 'ime datoteke, dostopne prek http'}, 'w': False, 'public':True, 'type': 'filename', 'generated': True}, - 'curl_n_images': {'descriptions': {'si': 'n pojavitev niza images'}, 'w': False, 'public':False, 'type': 'integer', 'generated': True}, - 'wc_dirname': {'descriptions': {'si': 'imenik, v katerem je datoteka count.txt'}, 'w': False, 'public':True, 'type': 'dirname', 'generated': True}, - 'wc_n_lines': {'descriptions': {'si': 'n vrstic v count.txt'}, 'w': False, 'public':False, 'type': 'integer', 'generated': True}, -} - -def task(IP_malishell, file_rename_dirname, mv_src_dir, mv_dst_dir, cowsay_string, curl_fname, wc_dirname): - import collections - import os - - # TOD: (polz) this has to be changed! Get a move on! - # - # sv: Z primozem lavricem sva skusala nekaj narediti - # Ker gen params ni narejen, sklepam da je "Mapa" na namizju, - # imena datotek pa so: 1,1-,2,2-,3,3-,4,5,6,7,8,9,.mama1,mama2,mama3,mama4,mama5,mojimenik,novi,oce1 - # v mojimenik se nahaja mojimenikfile - # mama2 vsebuje "mama" - #Stirje subt-aski dodani.By Mihec. - results = kpov_util.ssh_test(IP_malishell, 'student', 'vaje', ( - ('preimenuj', '/bin/ls -a1 {}'.format(file_rename_dirname)), - ('pre_mv_src', '/bin/ls -a1 {}'.format(mv_src_dir)), - ('pre_mv_dst', '/bin/ls -a1 {}'.format(mv_dst_dir)), - ('mv_ls_size', '/bin/ls -l ~/mv_ukaz'), - (None, '. ~/mv_ukaz'), - ('post_mv_src', '/bin/ls -a1 {}'.format(mv_src_dir)), - ('post_mv_dst', '/bin/ls -a1 {}'.format(mv_dst_dir)), - - # mama_ukaz - (None, 'cd /home/student/grep_test_dir'), - (None, '. ~/mama_ukaz'), - ('grep_napake', 'cat ~/napake.txt'), - ('grep_mama', 'cat ~/mama.txt'), - - # sledenje syslog - (None, 'date'), - ('syslog_start_time', '/usr/local/bin/syslog_spammer &'), - ('syslog_result', '/home/student/syslog_ukaz.sh'), - ('syslog_end_time', 'date'), - - ('cowsay', 'cowsay "{}"'.format(cowsay_string)), - ('wc_origfile', 'cat {}/count.txt'.format(wc_dirname)), - ('wc_lines', 'cat {}/lines.txt'.format(wc_dirname)), - )) - - try: - results['curl_env'] = os.environ['images'] - except: - results['curl_env'] = '' - - #results['curl'] = subprocess.check_output(["cat","/home/student/Desktop/website.txt"]) - #results['chkimages'] = subprocess.check_output(["curl www.24ur.com >> dlg.txt && cat dlg.txt | grep -c ","images"]) - #results['count'] = subprocess.check_output(["wc","/home/student/Desktop/count.txt"]) - #results['lines'] = subprocess.check_output(["cat","/home/student/Desktop/lines.txt"]) - #results['cowsay'] = subprocess.check_output(["dpkg --get-selections | grep","cowsay"]) - - return results - -def gen_params(user_id, params_meta): - import random - import subprocess - params = dict() - homedir = '/home/student/' - r = random.Random(user_id) - params['file_creator_random_seed'] = str(r.random()) - params['file_rename_dirname'] = homedir + kpov_util.default_generators['dirname'](r) - params['mv_src_dir'] = homedir + "".join([r.choice("abcdefgh") for i in range(6)]) - params['mv_dst_dir'] = homedir + "".join([r.choice("ijklmnop") for i in range(6)]) - params['syslog_n_zmeda'] = str(r.randint(5, 15)) - params['cowsay_string'] = kpov_util.default_generators['short_text'](r) - params['curl_fname'] = kpov_util.default_generators['filename'](r) - params['curl_n_images'] = str(r.randint(30,100)) - params['wc_dirname'] = homedir + "".join([r.choice("rstuvxz") for i in range(8)]) - params['wc_n_lines'] = str(r.randint(200, 600)) - #params['images'] = subprocess.check_output(["echo","$images"]) - return params - -def task_check(results, params): - import re - import random - score = 0 - hints = [] - r = random.Random(params['file_creator_random_seed']) - fnames = [] - for i in range(20): - fnames.append("".join([ r.choice("_abcdefghijk") for j in range(8)])) - #TO FINISH SCORING WE REQUIRE DICT KEYS AND FUNCTIONS gen_params AND task TO BE FINISHED - - # preimenuj 1 - task1_ok = True - for fname in fnames: - task1_ok = task1_ok and results['preimenuj'].find(fname) > 0 - if task1_ok: - score += 2 - else: - hints += ["wrong dash rename"] - - # premakni datoteke s cim krajsim ukazom - fnames = [] - try: - for i in range(40): - fnames.append("".join([ r.choice("123456789abcdefghijk") for j in range(8)])) - task2_re = re.search( - r"-rw[x-][r-][w-][x-][r-][w-][x-] \d* student student (\d*) .*mv_ukaz", - results['mv_ls_size']) - mv_ls_size = int(task2_re.group(1)) - task2_ok = mv_ls_size <= 17 and mv_ls_size > 2 - except: - task2_ok = False - if task2_ok: - score += 1 - else: - hints += ["wrong mv_command size or owner"] - - # rename files - pre_src = set([i.strip() for i in results['pre_mv_src'].splitlines()[2:]]) - pre_dst = set([i.strip() for i in results['pre_mv_dst'].splitlines()[2:]]) - print(set(fnames)) - print(pre_src) - task2_ok = task2_ok and pre_src == set(fnames) - task2_ok = task2_ok and len(pre_dst) < 3 - post_src = set([i.strip() for i in results['post_mv_src'].splitlines()[2:]]) - post_dst = set([i.strip() for i in results['post_mv_dst'].splitlines()[2:]]) - task2_ok = task2_ok and post_dst == set(fnames) - task2_ok = task2_ok and len(post_src) < 3 - if task2_ok: - score += 1 - else: - hints += ["wrong rename files"] - - # mama_ukaz - task3_ok = True - mama_fnames = [] - for i in range(20): - mama_fnames.append("".join([ r.choice("123456789abcdefghijk") for j in range(8)])) - papa_fnames = [] - for i in range(20): - papa_fnames.append("".join([ r.choice("123456789abcdefghijk") for j in range(8)])) - dirnames = [] - for i in range(20): - dirnames.append("".join([ r.choice("123456789abcdefghijk") for j in range(8)])) - linknames = [] - for i in range(20): - linknames.append("".join([ r.choice("123456789abcdefghijk") for j in range(8)])) - for i in dirnames + linknames + papa_fnames: - if (i not in papa_fnames) and results['grep_napake'].find(i) < 0: - task3_ok = False - if results['grep_mama'].find(i) >= 0: - task3_ok = False - for i in papa_fnames: - if results['grep_napake'].find(i) >= 0: - task3_ok = False - if results['grep_mama'].find(i) >= 0: - task3_ok = False - for i in mama_fnames: - if results['grep_mama'].find(i) < 0: - task3_ok = False - if task3_ok: - score += 2 - else: - hints += ["mama cries"] - - # sledenje syslog - #print( results['syslog_start_time']) - #print( results['syslog_result']) - #print( results['syslog_end_time']) - # syslog count - # TODO: check syslog - task4_ok = True - if task4_ok: - score += 1 - else: - hints += ["wrong syslog count"] - - task5_ok = True - try: - assert int(results['curl_env'].strip()) == int(params['curl_n_images']) - except: - task5_ok = False - if task5_ok: - score += 2 - else: - hints += ["wrong image count"] - task6_ok = True - try: - assert int(results['wc_lines'].strip()) == int(params['wc_n_lines']) - except: - task6_ok = False - if task6_ok: - score += 1 - else: - hints += ["wrong line count"] - return score, hints - -def prepare_disks(templates, task_params, global_params): - import random - d = templates['malishell'] - r = random.Random(task_params['file_creator_random_seed']) - # rename - d.mkdir(task_params['file_rename_dirname']) - d.chown(1000, 1000, task_params['file_rename_dirname']) - for i in range(20): - fname = task_params['file_rename_dirname'] + '/' + "".join( - [r.choice("-abcdefghijk") for j in range(8)]) - d.touch(fname) - d.chown(1000, 1000, fname) - # mv ukaz - d.mkdir(task_params['mv_src_dir']) - d.chown(1000, 1000, task_params['mv_src_dir']) - for i in range(40): - fname = task_params['mv_src_dir'] + '/' +"".join( - [r.choice("123456789abcdefghijk") for j in range(8)]) - d.touch(fname) - d.chown(1000, 1000, fname) - d.mkdir(task_params['mv_dst_dir']) - d.chown(1000, 1000, task_params['mv_dst_dir']) - # grep mama - # mama fnames - d.mkdir('/home/student/grep_test_dir') - for i in range(20): - d.write("/home/student/grep_test_dir/" + "".join( - [ r.choice("123456789abcdefghijk") for j in range(8)]), - "mama") - # papa fnames - for i in range(20): - d.write("/home/student/grep_test_dir/" + "".join( - [ r.choice("123456789abcdefghijk") for j in range(8)]), - "papa") - # dirnames - for i in range(20): - d.mkdir("/home/student/grep_test_dir/" + "".join( - [ r.choice("123456789abcdefghijk") for j in range(8)])) - # linknames - for i in range(20): - d.ln_sf("mali zeleni", "/home/student/grep_test_dir/" + "".join( - [ r.choice("123456789abcdefghijk") for j in range(8)])) - # sledenje syslog - spammer_source = "#!/bin/sh\n" + int(task_params['syslog_n_zmeda']) * "logger zmeda\n" - d.write("/usr/local/bin/syslog_spammer", spammer_source) - d.chmod(0o775, "/usr/local/bin/syslog_spammer") - # curl - l1 = ['images'] * int(task_params['curl_n_images']) - l2 = ['imeges'] * r.randint(30, 100) - lx = l1 + l2 - r.shuffle(lx) - d.write("/var/www/html/{}".format(task_params['curl_fname']), ''.join(lx)) - # wc - lx = ['\n']*int(task_params['wc_n_lines']) - lx += ['a', 'b', 'c', 'repa', 'in', 'krompir', - 'raus', 'e', 'patacis'] * r.randint(50, 150) - r.shuffle(lx) - d.mkdir(task_params['wc_dirname']) - d.chown(1000, 1000, task_params['wc_dirname']) - d.write("{}".format(os.path.join(task_params['wc_dirname'], 'count.txt')), "".join(lx)) - - write_default_config(templates['simpleArbiterDhcpGW'], global_params) diff --git a/kpov_judge/tasks/custom_rdate/CustomRDate.java b/kpov_judge/tasks/custom_rdate/CustomRDate.java deleted file mode 100644 index 426dece..0000000 --- a/kpov_judge/tasks/custom_rdate/CustomRDate.java +++ /dev/null @@ -1,21 +0,0 @@ -import java.io.InputStream;
-import java.net.Socket;
-import java.nio.ByteBuffer;
-import java.util.Date;
-
-public class CustomRDate {
- public static void main(String main[]) throws Exception{
- try {
- Socket s = new Socket("ntp1.arnes.si", 37);
- InputStream vhod = s.getInputStream();
- byte podatek[] = new byte[8];
- int dejanskoPrebranih = vhod.read(podatek, 4, 4);
- ByteBuffer buf = ByteBuffer.wrap(podatek);
- long stevilka = buf.getLong() - 2208988800L;
- Date d = new Date(stevilka*1000);
- System.out.println(d);
- } catch(Exception e) {
- System.out.println("Nedosegljiv streznik.");
- }
- }
-}
\ No newline at end of file diff --git a/kpov_judge/tasks/custom_rdate/TejoLicen/rServe.zip b/kpov_judge/tasks/custom_rdate/TejoLicen/rServe.zip Binary files differdeleted file mode 100644 index 9061692..0000000 --- a/kpov_judge/tasks/custom_rdate/TejoLicen/rServe.zip +++ /dev/null diff --git a/kpov_judge/tasks/custom_rdate/howtos/en/index.html b/kpov_judge/tasks/custom_rdate/howtos/en/index.html deleted file mode 100644 index 18ebfc1..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/en/index.html +++ /dev/null @@ -1,65 +0,0 @@ -<!doctype html>
-<html>
-<head>
- <meta charset="utf-8">
- <style>
- img{
- margin:10px 0px 10px 0px;
- }
- </style>
-</head>
-
-<body>
- <h1>Custom rdate</h1>
- <h2>Short preview:</h2>
- Set time on server using rdate. Write a program that converts 32-bit numbers into a readable time format.</p>
- <h2>Instructions:</h2>
- 1. Downlaod Student.vdi (client) and SimpleArbiter.vdi (server) from the virtual machine images folder<br>
- 2. Use VirtualBox (or similar) to create two virtual machines, select the virtual disk images from the previous step as hard drives<br>
- 3. Run both virtual machines.<br>
- 4. Login on client user:<strong> root</strong> pass:<strong> kaboom </strong> and server user:<strong> tester</strong> pass:<strong> tester</strong></p>
- <img src="../images/bu15.png">
- <img src="../images/bu1.png">
- <h3>First part: update time using rdate.</h3>
- <p>
- 1. Find and remember your server IP address. (ifconfig)<br><img src="../images/bu2.png"><br><img src="../images/bu3.png"><br>
- 2. Install rdate with <strong>sudo apt-get install</strong> rdate<br>
- 3. On Student client use rdate to update the machine time <strong>rdate SERVER_IP</strong><br><img src="../images/bu4.png"><br>
- Note: It's NOT an error if the updated time does not match the correct time.<br>
- </p>
- <h3>Second part: write a program that converts 32bit numbers into a readable time format.</h3>
- <p>
- You can write a program in Java or Python using your favourite text editor.
- </p>
- <h4>Java</h4>
- <p>
- 1. We use <strong>nano guliver.java</strong> to create a new blank file<br>
- 2. Write a program that converts 32bit numbers into a readable time format.<br>
- <img src="../images/bu6.png"><br><img src="../images/bu7.png"><br>
- 3. Press Ctrl+X, then Y and Enter to save the program<br>
- 4. In case you don't have java installed use <strong>sudo apt-get install openjdk-6-jdk</strong><br>
- <img src="../images/predvaja_clip_image003.gif"><br>
- 5. To compile use <strong>javac bintodec3.java</strong><br>
- 6. Run the created program with <strong>java guliver</strong> and input the server IP or name...<br>
- <img src="../images/bu9.png"><br>
- </p>
- <h4>Python</h4>
- 1. Use nano guliver.py to create a new empty python file.<br>
- 2. Write a program that converts 32bit numbers into a readable time format.<br>
- <img src="../images/bu5.png"><br>
- 3. Press Ctrl+X, then Y and Enter to save our program<br>
- 4. Run the created program with <strong>python guliver.py</strong><br><img src="../images/bu8.png"><br>
- </p>
- <h3>Testing</h3>
- <p>
- 1. Use command ./run_test.py to run the tester<br>
- <img src="../images/s1.png"><br>
- 2. Your username and password are the same as on ucilnica (npr.: "pz1234@student.uni-lj.si" in "geslo123").<br>
- <img src="../images/s2.png"> <img src="../images/s3.png"> <br>
- 3. Name of the task should look like 09.predvaja.<br>
- 4. When prompted for file path insert your program path (example: if bintodec3.py is in the same folder as program run_test.py run with ./bintodec3.py).<br>
- 5. Then input your server IP address (SimpleArbiterRDate).<br>
- 6. If all goes well the program should give you an OK that means you've completed your task successfully.
- </p>
-</body>
-</html>
diff --git a/kpov_judge/tasks/custom_rdate/howtos/images/bu1.png b/kpov_judge/tasks/custom_rdate/howtos/images/bu1.png Binary files differdeleted file mode 100644 index c6eeac8..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/images/bu1.png +++ /dev/null diff --git a/kpov_judge/tasks/custom_rdate/howtos/images/bu15.png b/kpov_judge/tasks/custom_rdate/howtos/images/bu15.png Binary files differdeleted file mode 100644 index c2ac808..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/images/bu15.png +++ /dev/null diff --git a/kpov_judge/tasks/custom_rdate/howtos/images/bu2.png b/kpov_judge/tasks/custom_rdate/howtos/images/bu2.png Binary files differdeleted file mode 100644 index 85fcfa8..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/images/bu2.png +++ /dev/null diff --git a/kpov_judge/tasks/custom_rdate/howtos/images/bu3.png b/kpov_judge/tasks/custom_rdate/howtos/images/bu3.png Binary files differdeleted file mode 100644 index 831e764..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/images/bu3.png +++ /dev/null diff --git a/kpov_judge/tasks/custom_rdate/howtos/images/bu4.png b/kpov_judge/tasks/custom_rdate/howtos/images/bu4.png Binary files differdeleted file mode 100644 index 495351a..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/images/bu4.png +++ /dev/null diff --git a/kpov_judge/tasks/custom_rdate/howtos/images/bu5.png b/kpov_judge/tasks/custom_rdate/howtos/images/bu5.png Binary files differdeleted file mode 100644 index 103e0e6..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/images/bu5.png +++ /dev/null diff --git a/kpov_judge/tasks/custom_rdate/howtos/images/bu6.png b/kpov_judge/tasks/custom_rdate/howtos/images/bu6.png Binary files differdeleted file mode 100644 index b032223..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/images/bu6.png +++ /dev/null diff --git a/kpov_judge/tasks/custom_rdate/howtos/images/bu7.png b/kpov_judge/tasks/custom_rdate/howtos/images/bu7.png Binary files differdeleted file mode 100644 index bd50500..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/images/bu7.png +++ /dev/null diff --git a/kpov_judge/tasks/custom_rdate/howtos/images/bu8.png b/kpov_judge/tasks/custom_rdate/howtos/images/bu8.png Binary files differdeleted file mode 100644 index 98f7812..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/images/bu8.png +++ /dev/null diff --git a/kpov_judge/tasks/custom_rdate/howtos/images/bu9.png b/kpov_judge/tasks/custom_rdate/howtos/images/bu9.png Binary files differdeleted file mode 100644 index 9ed78ce..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/images/bu9.png +++ /dev/null diff --git a/kpov_judge/tasks/custom_rdate/howtos/images/predvaja_clip_image003.gif b/kpov_judge/tasks/custom_rdate/howtos/images/predvaja_clip_image003.gif Binary files differdeleted file mode 100644 index 02be389..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/images/predvaja_clip_image003.gif +++ /dev/null diff --git a/kpov_judge/tasks/custom_rdate/howtos/images/s1.png b/kpov_judge/tasks/custom_rdate/howtos/images/s1.png Binary files differdeleted file mode 100644 index 52b6ee5..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/images/s1.png +++ /dev/null diff --git a/kpov_judge/tasks/custom_rdate/howtos/images/s2.png b/kpov_judge/tasks/custom_rdate/howtos/images/s2.png Binary files differdeleted file mode 100644 index 78a65ce..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/images/s2.png +++ /dev/null diff --git a/kpov_judge/tasks/custom_rdate/howtos/images/s3.png b/kpov_judge/tasks/custom_rdate/howtos/images/s3.png Binary files differdeleted file mode 100644 index c32eae1..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/images/s3.png +++ /dev/null diff --git a/kpov_judge/tasks/custom_rdate/howtos/si/index.html b/kpov_judge/tasks/custom_rdate/howtos/si/index.html deleted file mode 100644 index e68221c..0000000 --- a/kpov_judge/tasks/custom_rdate/howtos/si/index.html +++ /dev/null @@ -1,67 +0,0 @@ -<!doctype html>
-<html>
-<head>
- <meta charset="utf-8">
- <style>
- img{
- margin:10px 0px 10px 0px;
- }
- </style>
-</head>
-
-<body>
- <h1>Custom rdate</h1>
- <h2>Naloga na hitro:</h2>
- <p>
- Nastavi uro na strežniku s pomočjo rdate. Napiši program, ki pretvori 32-bitna števila v čas.
- </p>
- <h2>Navodila:</h2>
- <p>
- 1. Z imenika s slikami virtualnih računalnikov povlecite sliki Student.vdi(klient) in SimpleArbiterRDate.vdi(strežnik).<br>
- 2. Z VirtualBoxom (ali podobnim) ustvarite dva virtualna računalnika in jim kot disk za shranjevanje podajte Student.vdi ter SimpleArbiterRDate.vdi.<br>
- 3. Zaženite oba navidezna računalnika.<br>
- 4. Na Student se prijavite z uporabnikom <strong>root</strong> in geslom <strong>kaboom</strong>
- na SimpleArbiterRDate pa z uporabnikom <strong>tester</strong> in geslom <strong>tester</strong>.
- </p>
- <img src="../images/bu15.png"> <img src="../images/bu1.png">
- <h3>Prvi del naloge: posodobi uro računalnika s pomočjo rdate.</h3>
- <p>
- 1. Preverite in si zapišite IP naslov na SimpleArbiterRDate. (ifconfig)<br><img src="../images/bu2.png"><br><img src="../images/bu3.png"><br>
- 2. Z ukazom <strong>sudo apt-get install</strong> rdate namestimo program rdate.<br>
- 3. Na Student z pomočjo rdate posodobi uro računalnika. <strong>rdate IP_SIMPLE_ARBITER</strong><br><img src="../images/bu4.png"><br>
- Opozorilo: NI napaka, če se posodobljen čas ne ujema s pravilnim časom. <br>
- </p>
- <h3>Drugi del naloge: napiši program, ki pretvori binarni zapis 32-bitnega števila v časovni format.</h3>
- <p>
- Nalogo lahko rešite v Javi ali v Pythonu. Prav tako pa lahko kodo pišete v poljubnem tekstovnem urejevalniku.</p>
- <p>
- <h4>Java</h4>
- <p>
- 1. Z ukazom nano guliver.java ustvarimo in odpremo prazen program s tekstovnim urejevalnikom nano<br>
- 2. Napišemo program za pretvarjanje 32-bitnega števila v čas<br>
- 3. Pritisnemo Ctrl+X, nato Y in Enter, da program zapremo in shranimo.<br>
- 4. Če je še nimamo, naložimo Javo <strong>sudo apt-get install openjdk-6-jdk</strong><br><im src="../images/predvaja_clip_image003.gif"><br>
- 5. Prevedemo program <strong>javac bintodec3.java</strong><br>
- 6. Lahko ga še zaženemo ter preizkusimo <strong>java guliver</strong>.Na standardni vhod vnasemo IP naslov ali ime strežnika NTP strežnikom, ki nam pošlje 32 bitno število in pretvori v čas<br><br>
- </p>
- <h4>Python</h4>
- <p>
- 1. Z ukazom nano guliver.py ustvarimo in odpremo prazen program s tekstovnim urejevalnikom nano<br>
- 2. Napišemo program za pretvarjanje 32-bitnega števila v čas<br>
- 3. Pritisnemo Ctrl+X, nato Y in Enter, da program zapremo in shranimo.<br>
- 4. Program zaženemo z ukazom <strong>python guliver.py</strong><br><img src="../images/bu8.png"><br>
- </p>
-
- <h3>Testiranje</h3>
- <p>
- 1. Lahko poženemo tester; z ukazom ./run_test.py<br>
- <img src="../images/s1.png"><br>
- 2. Kot "Upor. Ime" in "Geslo" napišite vaše podatke učilnice. (npr.: "pz1234@student.uni-lj.si" in "geslo123")<br>
- <img src="../images/s2.png"> <img src="../images/s3.png"> <br>
- 3. Kot ime naloge vpišite 09.predvaja.<br>
- 4. Ko vas program vpraša po poti programa vnesite vašo pot do programa za pretvarjanje. (npr.: če imate program bintodec3.py v isti mapi kot program run_test.py, vnesete: ./bintodec3.py)<br>
- 5. Povpraša tudi po IP naslovu SimpleArbiterjaRDate, vnesite.<br>
- 6. Če je šlo vse po sreči, program vrne OK vi pa ste opravili nalogo.
- </p>
-</body>
-</html>
diff --git a/kpov_judge/tasks/custom_rdate/rDate.java b/kpov_judge/tasks/custom_rdate/rDate.java deleted file mode 100644 index 8c8bae7..0000000 --- a/kpov_judge/tasks/custom_rdate/rDate.java +++ /dev/null @@ -1,34 +0,0 @@ -import java.io.IOException; -import java.io.InputStream; -import java.io.OutputStreamWriter; -import java.net.Socket; -import java.net.SocketException; -import java.nio.ByteBuffer; -import java.uti.Date; -import java.util.Scanner; - -public class rDate{ - - public static void main(String[] args) throw IOException{ - Scanner sc=new Scanner(System.in); - String niz=sc.next(); - - try{ - Socket s=new Socket(niz,37); - OutputStreamWriter izhod=new OutputStreamWriter(s.getOutputStream()); - InputStream vhod=s.getInputStream(); - byte[] podatek=new byte[4]; - ByteBuffer buf=ByteBuffer.wrap(podatek); - int stevilka=buf.getInt(); - long dolga=stevilka - long maska=-1; - maska =~(maska <<32); - dolga = dolga & maska; - Date d=new Date(dolga *1000 - 2208988800000L); - System.out.print(d); - izhod.write(d.toString()); - }catch(SocketException e){ - System.out.println("Strežnik ne obstaja"); - } - } -} diff --git a/kpov_judge/tasks/custom_rdate/rDate.py b/kpov_judge/tasks/custom_rdate/rDate.py deleted file mode 100644 index 97885b0..0000000 --- a/kpov_judge/tasks/custom_rdate/rDate.py +++ /dev/null @@ -1,18 +0,0 @@ - -#!/usr/bin/env python -#-*- coding utf-8 -*- - -import socket -import struct -import time - -niz=input("Vnesi IP ali ime strežnika:") -s = socket.socket( - socket.AF_Inet, socket.SOCK_STREAm) -s.connect((niz,37)) -podatek = s.recv(4) -stevilka = struct.unpack("!I", podatek) -st= stevilka[0]-220898800 -date = time.localtime(st) -print((time.strftime('%Y-%m-%d %H:%M:%S'), date)) -s.send(date) diff --git a/kpov_judge/tasks/custom_rdate/task.py b/kpov_judge/tasks/custom_rdate/task.py deleted file mode 100644 index 4c5ff9f..0000000 --- a/kpov_judge/tasks/custom_rdate/task.py +++ /dev/null @@ -1,146 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -# TODO: finish this! -instructions = { - 'si': '''\ -<p> -Postavite dva navidezna računalnika: <em>SimpleArbiterDhcpRdate</em> in <em>rdateClient</em>. - -<p> -Nastavite čas na <em>rdateClient</em> tako, da kot rdate strežnik uporabite <em>SimpleArbiterDhcpRdate</em>. - -<p> -Na <em>rdateClient</em> ustvarite uporabnika <code>test</code> z geslom <code>test</code>. V domačem imeniku uporabnika <code>test</code> ustvarite program z imenom <code>{{PROGRAM_FILENAME}}</code>. Program naj prebere štiri bajte podatkov s standardnega vhoda in jih pretvori v predznačeno celo število, pri čemer naj uporablja zapis z debelim koncem (angl. <em lang="en">big endian</em>). Število naj program izpiše na standardni izhod v obliki niza. -''', - 'en': '''\ -<p> -Set up two virtual machines: <em>SimpleArbiterDhcpRdate</em> and <em>rdateClient</em>. - -<p> -Set the time on <em>rdateClient</em> using rdate with <em>SimpleArbiterDhcpRdate</em> as -the server. - -<p> -On <em>rdateClient</em> create a user with the username <code>test</code> and password <code>test</code>. Then, write a program called <code>{{PROGRAM_FILENAME}}</code> and put it in user <code>test</code>’s home directory. The program should read four bytes of data from standard input, convert them into a signed integer using big endian byte ordering and output the resulting integer (as a string) to standard output. -''', -} - -computers = { - 'rdateClient': { - 'disks': [ - { 'name': 'student-rdate', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterDhcpGWRdate', - }, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -# Tu sem dolocil parametre -params_meta = { - 'RDATE_OFFSET':{'descriptions': {'si': 'Napaka v času pri rdate', 'en': 'Timekeeping error for rdate'}, 'w': False, 'public': False, 'type': 'integer', 'generated': True}, - 'PROGRAM_FILENAME':{'descriptions': {'si': 'Ime programa', 'en': 'program filename'}, 'w': False, 'public': True, 'type': 'integer', 'generated': True}, - 'IP_RDATECLIENT':{'descriptions': {'si': 'IP rdateClient', "en": "rdateClient's IP"}, 'w': True, 'public': True, 'type': 'IP', 'generated': False}, -} - -def task(IP_RDATECLIENT, PROGRAM_FILENAME): - import collections - import base64 - import random - import struct - import pexpect - - r = random.Random(PROGRAM_FILENAME) - results = collections.defaultdict(str) - tests = [] - for i in range(10): - data = struct.pack("!I", r.randint(0, 2**32)) - results['in_'+str(i)] = data_ascii = base64.encodestring(data) - tests += [('out_'+str(i), 'echo "{}" | base64 -d | ~/{}'.format(data_ascii.decode().strip(), PROGRAM_FILENAME))] - tests += [('date', 'date -u +"%s"')] - - results.update( - kpov_util.ssh_test(IP_RDATECLIENT, 'test', 'test', tests)) - results['ldate'] = pexpect.run('date -u +"%s"') - - return results - -#Dolocil sem tri parametre in sicer jih lahko vidite v prams_meta, -#zato prosim da jih upostevate v naslednih nalogah. - -def gen_params(user_id, params_meta): - import socket - import struct - import datetime - params = dict() - r = random.Random(user_id) - params['PROGRAM_FILENAME'] = kpov_util.fname_gen(r, False) - params['RDATE_OFFSET'] = str(r.randint(-2**24, 2**24)) - return params - -def task_check(results, params): - import random - import struct - import base64 - - r = random.Random(params['PROGRAM_FILENAME']) - score = 0.0 - hints = [] - for i in range(10): - data = base64.decodestring(results['in_' + str(i)]) - x = struct.pack("!I", r.randint(0, 2**32)) - if data != x: - hints += ["data: " + str((data,)) + " != " + str((x,))] - break - res = results['out_' + str(i)] - if str(struct.unpack("!i", data)[0]) == res.strip(): - score += 0.5 - else: - hints += ["wrong convert"] - - if abs(int(results['ldate']) + \ - int(params['RDATE_OFFSET']) - int(results['date'])) < 3: - score += 5 - else: - hints += ["wrong offset"] - return score, hints - -def prepare_disks(templates, task_params, global_params): - d = templates['simpleArbiterDhcpGWRdate'] - s1 = """service "time_tcp" {{ - enabled yes; - protocol tcp; - port "time"; - user "nobody"; - exec "/usr/local/bin/kpovrdate {RDATE_OFFSET}"; - server "/usr/sbin/tcpd"; - wait no; -}} -""".format(**task_params) - d.write('/etc/rlinetd.d/time', s1) - s2 = """#!/usr/bin/python - -import struct -import time -import sys - -offset = int(sys.argv[1]) -t = time.time() + offset # used to have + 2208988800 -sys.stdout.write(struct.pack("!I", int(t))) -""" - d.write('/usr/local/bin/kpovrdate', s2) - d.chmod(0o775, '/usr/local/bin/kpovrdate') - write_default_config(templates['simpleArbiterDhcpGWRdate'], global_params) diff --git a/kpov_judge/tasks/dhcp_dns_predefined_ip/task.py b/kpov_judge/tasks/dhcp_dns_predefined_ip/task.py deleted file mode 100644 index 4822c2a..0000000 --- a/kpov_judge/tasks/dhcp_dns_predefined_ip/task.py +++ /dev/null @@ -1,116 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si':""" -<pre>Ustvari tri navidezne računalnike. Za enega (SimpleArbiter) uporabi sliko diska simpleArbiter. Na drugega (DHCP_server) postavi strežnika DHCP in DNS in poskrbi, da ta računalnik dobi IP naslov {IP_server}. Poskrbi, da bo preostali računalnik (DHCP_client) dobil naslov {IP_client}, ki mu ga določi DHCP strežnik. Poskrbi še,da DNS strežnik vrne za hostname {HOSTNAME_X} IP naslov {IP_X}.</pre> -""" -} - -computers = { - 'maliNetworkManager': { - 'disks': [ - { 'name': 'maliNetworkManager', - }, - #{ 'name': 'CDROM', - # 'options':{'readonly': True}, - # 'parts': [],# no parts, no mounting. - #} - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'maliBrezNetworkManager': { - 'disks': [ - { 'name': 'maliBrezNetworkManager', - }, - #{ 'name': 'CDROM', - # 'options':{'readonly': True}, - # 'parts': [],# no parts, no mounting. - #} - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterDhcp', - # attempt automount - }, - #{ 'name': 'CDROM', - # 'options': {'readonly': True}, - # 'parts': [{'dev': 'b1', 'path': '/cdrom'}], - #}, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'IP_server': {'descriptions': {'si': 'IP naslov DHCP streznika'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'IP_client': {'descriptions': {'si': 'IP naslov DHCP klienta'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, - 'MAC_client': {'descriptions': {'si': 'MAC naslov DHCP klienta'}, 'w': True, 'public': True, 'type': 'MAC', 'generated': False}, - 'HOSTNAME_X': {'descriptions': {'si': 'Hostname za DNS'}, 'w': False, 'public': True, 'type': 'short_text', 'generated': True}, - 'IP_X': {'descriptions': {'si': 'Naslov, ki ga vrne DNS'}, 'w': False, 'public': False, 'type': 'IP', 'generated': True}, -} - -def task(IP_server, IP_client, MAC_client, HOSTNAME_X): - tests = { - IP_server: ( - ('dhcp_proces', 'sudo ps -A')), - IP_client: ( - ('dhcp', 'sudo dhcping -s {} -h {} -c {}'.format(IP_server, MAC_client, IP_client)), - ('dns_hostname', 'nslookup {}'.format(HOSTNAME_X)), - ('client_IP', '/sbin/ifconfig')), - } - - results = collections.defaultdict(str) - for host, host_tests in tests.items(): - results.update(kpov_util.ssh_test(host, 'student', 'vaje', host_tests)) - return results - -def gen_params(user_id, params_meta): - params = dict() - r = random.Random(user_id+"bla") - net = kpov_util.IPv4_subnet_gen(r, '172.23.128.0/18', 24) - params['IP_server'], params['IP_client'], params['IP_X'] = kpov_util.IPv4_addr_gen(r, net, 3) - params['HOSTNAME_X'] = "".join([r.choice('ABCDEFGHIJKLMNPRSTUVZ') for i in range(5)]) - return params - -def task_check(results, params): - import re - score = 0 - hints = [] - if results['dhcp'].find("Got answer from: {}".format(params['IP_server'])) > -1: - score += 2 - else: - hints += ["dhcp server IP wrong"] - if results['dhcp_proces'].find("dhcpd") > -1: - score += 2 - else: - hints += ["dhcp wrong"] - if results['dns_hostname'].find("Address: {}".format(params['IP_X'])) >= 0: - score += 2 - else: - hints += ['dns hostname IP wrong'] - if results['dns_hostname'].find("Server:\t\t{}".format(params['IP_server'])) > -1: - score += 2 - else: - hints += ['dns server IP wrong'] - if results['client_IP'].find('inet {}'.format(params['IP_client'])) > -1: - score += 2 - else: - hints += ['client IP wrong'] - return score, hints - - -def prepare_disks(templates, task_params, global_params): - write_default_config(templates['simpleArbiterDhcp'], global_params) - diff --git a/kpov_judge/tasks/edit_find_grep_compile_convert/task.py b/kpov_judge/tasks/edit_find_grep_compile_convert/task.py deleted file mode 100644 index deaac4f..0000000 --- a/kpov_judge/tasks/edit_find_grep_compile_convert/task.py +++ /dev/null @@ -1,313 +0,0 @@ -# TODO: -# - check if everything is filled in (computers, params, preparation) -# - improve scoring -# - test -# - switch to a real SSH/SFTP client to properly handle filenames - -instructions = { - 'si': '''\ -<p> -Ustvari dva navidezna računalnika: <em>SimpleArbiter</em> <em>SmallStudent</em>. - -<p> -Poskrbi, da bo <em>SmallStudent</em> s <em>SimpleArbiter</em> dostopen na naslovu <code>{{testip}}</code>. - -<p> -Na <em>SmallStudent</em> ustvari uporabnika <code>{{testuser}}</code> z geslom <code>{{passwd}}</code>. - -<p> -Na <em>SmallStudent</em> je nekje v domačem imeniku uporabnika <code>bilbo</code> skrita datoteka, ki vsebuje niz <code>{{magicstr}}</code>. Skopiraj jo v domači imenik uporabnika <code>{{testuser}}</code> in jo poimenuj <code>{{dstfile}}</code>. Poskrbi, da bo lastnik <code>{{testuser}}</code>, skupina pa naj bo enaka kot pri izvorni datoteki. Brati naj jo ima pravico samo lastnik, pisati lastnik in skupina, poganjati nihče. - -<p> -V <code>{{dstfile}}</code> zamenjaj vse vrstice oblike <code>poXYZlz</code>, kjer je <code>XYZ</code> poljubno zaporedje znakov, tako, da bo namesto <code>XYZ</code> niz <code>kaka</code>. - -<p> -Napiši program v poljubnem programskem jeziku, ki kot argument sprejme število B med 0 in 7. Program naj prebere znak s standardnega vhoda Če je B-ti bit v znaku nastavljen na 1, naj izpiše <code>ta</code>. Če je B-ti bit nastavljen na 0, naj program izpiše <code>ti</code>. Program poimenuj <code>{{progname}}</code> in ga spravi v domači imenik uporabnika <code>{{testuser}}</code>. -''', - 'en': '''\ -<p> -Create two virtual machines: <em>SimpleArbiter</em> and <em>SmallStudent</em>. - -<p> -Make sure that <em>SmallStudent</em> is accessible from <em>SimpleArbiter</em> on IP <code>{{testip}}</code>. - -<p> -Create a user <code>{{testuser}}</code> with the password <code>{{passwd}}</code> on <em>SmallStudent</em>. - -<p> -There is a file containing <code>{{magicstr}}</code> hidden somewhere in the home directory of user <code>bilbo</code>. Copy it into <code>{{testuser}}</code>’s home directory and name it <code>{{dstfile}}</code>. Change the owner to <code>{{testuser}}</code> and ensure the group is the same as for the original file. Make sure only the owner has the right to read it, only the owner and group members have the right to write to it and nobody has the right to execute it. - -<p> -In <code>{{dstfile}}</code>, replace all lines of the form <code>poXYZlz</code> where <code>XYZ</code> are arbitrary characters so that <code>XYZ</code> is replaced by <code>kaka</code>. - -<p> -Write a program in any programming language. The program should accept a single argument B, which is a number between 0 and 7. It should read a character from standard input and output <code>ta</code> if B-th bit in this character is set to 1, and <code>ti</code>. If B-th bit is set to 0. Name the program <code>{{progname}}</code> and place it in the home directory of <code>{{testuser}}</code>. -''', -} - -# instructions = {'si': 'Potrpite.', 'en': 'Have patience.'} - -computers = { - 'SimpleArbiter': { - 'disks': [ - { - 'name': 'simpleArbiterDhcpGW', - }, - ], - 'network_interfaces': [ - { - 'network': 'net1', - }, - { - 'network': 'net2', - }, - ], - 'flavor': 'm1.tiny', - 'config_drive': False, - }, - 'SmallStudent': { - 'disks': [ - { - 'name': 'student-entrance2', - }, - ], - 'network_interfaces': [ - { - 'network': 'net2', - }, - ], - 'flavor': 'm1.tiny', - 'config_drive': False, - } -} - -networks = { - 'net1': { - 'public': True, - }, - 'net2': { - 'public': False, - } -} - -params_meta = { - 'testip': { - 'descriptions': { - 'si': 'IP SmallStudent', - 'en': 'IP SmallStudent', - }, - 'w': False, - 'public': True, - 'type': 'IP', - 'generated': True, - }, - 'testuser': { - 'descriptions': { - 'si': 'Uporabnik na SmallStudent', - 'en': 'Username on SmallStudent', - }, - 'w': False, - 'public': True, - 'type': 'username', - 'generated': True, - }, - 'passwd': { - 'descriptions': { - 'si': 'Geslo na SmallStudent', - 'en': 'Password on SmallStudent', - }, - 'w': False, - 'public': True, - 'type': None, - 'generated': True, - - }, - 'magicstr':{ - 'descriptions': { - 'si': 'Niz v iskani datoteki', - 'en': 'String in the file you need to find', - }, - 'w': False, - 'public': True, - 'type': None, - 'generated': True, - - }, - 'dstfile':{ - 'descriptions': { - 'si': 'Ciljno ime datoteke', - 'en': 'Destination filename', - }, - 'w': False, - 'public': True, - 'type': 'filename', - 'generated': True, - }, - 'progname':{ - 'descriptions': { - 'si': 'Ime programa', - 'en': 'Program filename', - }, - 'w': False, - 'public': True, - 'type': 'filename', - 'generated': True, - }, - 'pubseed':{ - 'descriptions': { - 'si': 'Nekaj nepredvidenega', - 'en': 'A random seed', - }, - 'w': False, - 'public': True, - 'type': None, - 'generated': True, - }, - 'rndseed':{ - 'descriptions': { - 'si': 'random seed za skrito datoteko', - 'en': 'random seed for hiding the file', - }, - 'w': False, - 'public': False, - 'type': None, - 'generated': True, - }, -} - -def task(testip, testuser, passwd, magicstr, dstfile, progname, pubseed): - import random - - r = random.Random(pubseed) - tests = [ - ('dst_ls', 'ls -l ~/{}'.format(dstfile)), - ('dst_file_contents', 'cat ~/{}'.format(dstfile)), - ('home_ls', 'ls ~/'.format(dstfile)), - ] - - N_TITA = 40 - for i in range(N_TITA): - b = r.randint(0, 7) - x = oct(r.randint(37, 127)).replace('o', '') - tests += [('tita-{:02}'.format(i), 'echo -e "\\{}" | ~/{} {}'.format(x, progname, b))] - - results = kpov_util.ssh_test(testip, testuser, passwd, tests) - results['tita_return'] = ''.join(results['tita-{:02}'.format(i)] for i in range(N_TITA)) - - return results - -def gen_params(user_id, params_meta): - import random - params = dict() - r = random.Random(user_id) - params['testip'] = kpov_util.IPv4_addr_gen(r, - network = '10.94.80.0/19', n_generated=1)[0] - params['testuser'] = kpov_util.default_generators['username'](r) - params['passwd'] = kpov_util.alnum_gen(r, 8) - params['magicstr'] = "".join([r.choice("qwerztlpoQWERTPOL") for i in range(10)]) - params['dstfile'] = kpov_util.default_generators['filename'](r) - params['progname'] = kpov_util.default_generators['filename'](r) - while params['dstfile'] == params['progname']: - params['progname'] = kpov_util.default_generators['filename'](r) - params['pubseed'] = kpov_util.alnum_gen(r, 8) - params['rndseed'] = kpov_util.alnum_gen(r, 8) - return params - - -def task_check(results, params): - import os - import re - N_TITA = 40 - hints = [] - score = 0 - r = random.Random(params['rndseed']) - - if results['ssh'] is not True: - hints += ['ssh failed: ' + results['ssh']] - return score, hints - - expected_contents = params['magicstr'] - for i in range(1000): - start = "".join([r.choice(["po", "p0", "no", "ko", "fo", "qo"]) for i in range(20)]) - mid = "".join([r.choice("uiasdfghjkyxcvbnm1234567890ASDFGHJKYZXCVBNM") for i in range(60)]) - end = r.choice(["lz", "1z", "Iz", "iz", "l2", "I2", "12"]) - if start[:2] == "po" and end == "lz": - start = "po" - mid = "kaka" - x = start + mid + end - expected_contents += x + "\r\n" - if results["dst_file_contents"] == expected_contents: - score += 3 - else: - for i, (a, b) in enumerate(zip(expected_contents, results['dst_file_contents'])): - if a != b: - break - hints += ['wrong file {} at position {}'.format(params['dstfile'], i)] - - expected_ls = "-rw--w---- 1 {testuser} bilbo .*{dstfile}.*\r\n".format(**params) - if re.match(expected_ls, results["dst_ls"]): - score += 3 - else: - hints += ["missing file or wrong user/permissions\n" + results["dst_ls"]] - if results["home_ls"].find(params['progname']) > -1: - score += 2 - else: - hints += ["missing program"] - - expected_tita = "" - r = random.Random(params['pubseed']) - for i in range(N_TITA): - b = r.randint(0, 7) - x_i = r.randint(37, 127) - if x_i & (1 << b): - expected_tita += "ta" - else: - expected_tita += "ti" - if results["tita_return"] == expected_tita: - score += 2 - else: - hints += ['program output incorrect:\nwanted:\t{}\ngot:\t{}'.format(expected_tita, results["tita_return"])] - return score, hints - - -def prepare_disks(templates, task_params, global_params): - import random - import os - - # first create the file contents to make it easyer to check. - hidden_contents = task_params['magicstr'] - r = random.Random(task_params['rndseed']) - for i in range(1000): - x = "".join([r.choice(["po", "p0", "no", "ko", "fo", "qo"]) for i in range(20)]) - x += "".join([r.choice("uiasdfghjkyxcvbnm1234567890ASDFGHJKYZXCVBNM") for i in range(60)]) - x += r.choice(["lz", "1z", "Iz", "iz", "l2", "I2", "12"]) - hidden_contents += x + "\n" - - # create hidden file - dir_list = ['Qlipper', 'Thunar', 'blender', 'autostart', 'kazam', 'mc', 'netsurf', 'pulse', 'qupzilla', 'radare2', 'teamviewer', 'texstudio', 'vlc'] - ending_list = ['rc', '.conf', ''] - start_list = ['net', 'dev', 'doc', 'lib', 'time', 'conf'] - r.shuffle(dir_list) - file_letters = ["mod", "co"] - - d = templates['student-entrance2'] - for potential_dir in dir_list: - try: - potential_dir = os.path.join('/home/bilbo/.config', potential_dir) - d.mkdir(potential_dir) - d.chown(1001, 1001, potential_dir) - except: - pass - for i in range(r.randint(2, 20)): - rndstr2 = r.choice(start_list) + \ - r.choice(file_letters) + r.choice(ending_list) - hidden_file_name = os.path.join(potential_dir, - rndstr2) - d.write(hidden_file_name, hidden_contents) - d.chown(1001, 1001, hidden_file_name) - file_letters = ["stamp", "", "dev", "re"] - hidden_contents = "".join([r.choice("asdfghjkyxcvbnm1234567890 \n") for j in range(10000)]) - file_letters = file_letters + ["mod", "co"] - # TODO create some additional files - - write_default_config(templates['simpleArbiterDhcpGW'], global_params) diff --git a/kpov_judge/tasks/entrance_exam/task.py b/kpov_judge/tasks/entrance_exam/task.py deleted file mode 100644 index bfefbd1..0000000 --- a/kpov_judge/tasks/entrance_exam/task.py +++ /dev/null @@ -1,2 +0,0 @@ -instructions = {'si': """ -Reši pristopni kolokvij z visoko oceno.""" } diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/en/index.html b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/en/index.html deleted file mode 100644 index 63d2463..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/en/index.html +++ /dev/null @@ -1,172 +0,0 @@ -<html>
- <head>
- <meta charset="UTF-8">
- <title>06 - preparation (isc_dhcp_live_boot)</title>
- </head>
-
- <body>
- <h1 style="color:blue">06 - preparation (isc_dhcp_live_boot)</h1>
- <h2>Table of contents</h2>
- <ul>
- <li><a href="#namen">Purpose of this exercise</a></li>
- <li><a href="#navidezniRacunalniki">Virtual machines, needed for the purpose of exercise</a></li>
- <li><a
-href="#skicaPodomrezja">Schematics of our subnet</a></li>
- <li><a href="#simpleArbiterGW">Setting up simpleArbiterGW</a></li>
- <li><a href="#DHCP">Setting up DHCP Server</a></li>
- <li><a href="#clientA">Setting BootableClient A</a></li>
- <li><a href="#clientB">Setting up BootableClient B</a></li>
- </ul>
-
-
- <h2 id="namen">Purpose of this exercise</h2>
- <p>How to perform live boot using a DHCP server.</p>
-
- <h2 id="navidezniRacunalniki">Virtual machines needed to perform the task.</h2>
- <p>We need VirtualBox and the following 4 virtual
-machines:
- <ul>
- <li><a href="http://www.polz.si/media/uploads/kpov/virtualke/simpleArbiterGW.vdi">simpleArbiterGW</a></li>
- <li><a href="http://www.polz.si/media/uploads/kpov/virtualke/simpleArbiterDhcp.vdi">DHCP Server</a></li>
- <li>Bootable Client A (diskless
-machine)</li>
- <li>Bootable Client B (diskless
-machine)</li>
- </ul>
- </p>
-
- <h2 id="skicaPodomrezja">Schematics of our subnet</h2>
- <img style="width: 800px; height: 610px;" src="../images/01.png" alt="slika-01"></img>
- <p>Our goal is to make BootableClient A get it's IP
-through DHCP server and boot up using file
-A, which is located on simpleArbiterGW,</br>If we run
-BootableClient B machines, we would like it to retrieve it's IP
-through DHCP server and boot from some live ISO which is also located on
-SimpleArbiterGW.
- </p>
-
- <h2 id="simpleArbiterGW">Setting up <mark>simpleArbiterGW</mark></h2>
- <p>Download <a
-href="http://www.polz.si/media/uploads/kpov/virtualke/simpleArbiterGW.vdi">simpleArbiterGW.vdi</a>
-and then run VirtualBox. After the file is downloaded, choose the New
-option in VirtualBoxu and set simpleArbiterGW in the Name
-field.</br>Memory size, should be set accordingly (1gb will suffice). Then choose "Use an existing virtual hard drive file" and select simpleArbiterGW.vdi clicking Create.</p>
- </br>
- <img style="width: 800px; height: 464px;" src="../images/02.png" alt="slika-02"></img>
- <p>We start our virtual machines simpleArbiterGW using the
-following login
-credentials; username: "root", password: "kaboom".</br></br>
- At the start, the computer on NAt get's it's IP(in our case 10.0.2.15).</br>(to check this use<b>ifconfig</b>) We now use this address and eth0 interface to access the internet.<p>
- <img style="width: 800px; height: 384px;" src="../images/03.png" alt="slika-03"></img>
- <p>However, we would like this machine to have 2
-interfaces! One on NAT(we already have this one), and the other one on Internal Network,</br>throuh which we will communicate wiht the DHCP Server and other machines on our Internal Network.</br></br>
- We add a new interface, by turning off the virtual machine,
-select our machine in VirtualBox and select
-računalnik, ter v VirtualBoxu <b>Settings -> Network</b></br>
- <b>Adapter</b> 1 is already set to NAT, we set <b>Adapter
-2</b> to
-Internal Network</p>
- <img style="width: 800px; height: 137px;" src="../images/04.png" alt="slika-04"></img>
- <p>So, now we have two network interfaces!</br>In VirtuaBox
-we can define multiple Internal Networks, however, for our needs two
-will suffice. We save the settings and restart simpleArbiterGW.</br></br>
- What we must do now, is to assign both interfaces IP addresses. We do this by setting the<b>interfaces</b>file
- located at<b>/etc/network</b>.</p>
- <img style="width: 800px; height: 229px;" src="../images/05.png" alt="slika-05"></img>
- <p>Eth0 was already handled by and integrated DHCP, so eth0 had been assigned an IP).</br>
- We have to set up the other network interface. If we don't know it's name, we find it out using <b>ifconfig -a</b>.</p>
- <img style="width: 800px; height: 117px;" src="../images/06.png" alt="slika-06"></img>
- <p>We can conclude the interface names is set to Eth1.
- Now we would like to assign an IP naslov to Eth1.</br>
- Ifconfig could be used, but rebooting the machine would reset the settings. Which is not ideal :)</br>
- So configuring <b>/etc/network/interfaces would be a better idea.</b></br></br>
- Let's make up a random local network or a local area network or local area network address and assign it to eth1.
- </p>
- <img style="width: 800px; height: 296px;" src="../images/07.png" alt="slika-07"></img>
- <p>We save the config file. Our machine still has no IP on eth1 so we use the <b>ifup eth1</b> command</p>
- <img style="width: 800px; height: 23px;" src="../images/08.png" alt="slika-08"></img></br>
- <p>Now we use the <b>ifconfig</b> command, to see whether and ip is assigned to eth1 interface</p>
- <img style="width: 800px; height: 389px;" src="../images/09.png" alt="slika-09"></img>
- <p>We can see the IP is set. Now let's set up the DHCP
-Server!</p>
-
- <h2 id="DHCP">Setting up <mark>DHCP Server</mark></h2>
- <p>We download <a href="http://www.polz.si/media/uploads/kpov/virtualke/simpleArbiterDhcp.vdi">simpleArbiterDhcp.vdi</a> and start VirtualBox. After the file had been dowloaded we select New in VirtualBoxu and unde rthe Name tag write DHCP Server.</br>We set the Memory size accordingly(1gb of memory should be sufficient). We also select "Use an existing virtual hard drive file" and select the simpleArbiterDhcp and press Create.</p>
- </br>
- <img style="width: 800px; height: 464px;" src="../images/10.png" alt="slika-10"></img>
- <p>We run DHCP Server virtual machine and login using "root" ad username and "kaboom" as password.</br></br>
- <p>At first, our machine has no assigned IP, since none was set! Let+s configure it in <b>/etc/network/interfaces</b>.</br>But which interface should we configure? Using <b>ifconfig -a</b> command, we see it's <b>eth0</b>interface.<br>
- Again we select our IP address.</p>
- <img style="width: 800px; height: 283px;" src="../images/11.png" alt="slika-11"></img>
- <p>We save the configuration file. Our computer still has no IP address assigned to eth0, so using <b>ifdown eth0</b> and then <b>ifup eth0</b>we provide one.</p>
- <img style="width: 800px; height: 25px;" src="../images/12.png" alt="slika-12"></img>
- <p>Now let us use <b>ifconfig</b> command, to check whether there is an IP assigned to interface eth0</p>
- <img style="width: 800px; height: 329px;" src="../images/13.png" alt="slika-13"></img>
- <p>We got it! We install DHCP server using <b>apt-get install isc-dhcp-server</b></p>
- <img style="width: 800px; height: 322px;" src="../images/14.png" alt="slika-14"></img>
- <p>We see a bunch of errors. Why? Bacause, we have no internet access! <br>
- We need to specify the Gateway for our inteface. Our Gateway will be set as IP of our simpleArbiter virtual machine.</br> We do this using the<b>route add default gw 192.168.251.1 eth0</b> command</p>
- <img style="width: 800px; height: 43px;" src="../images/15.png" alt="slika-15"></img>
- <p>Try pinging Google's DNS server at 8.8.8.8, to check if now have internet access.</br>
- We do this using the <b>ping 8.8.8.8</b> command.</p>
- <img style="width: 800px; height: 361px;" src="../images/16.png" alt="slika-16"></img>
- <p>Google's DNS server is responding. Great! </br>
- However, we still cannot run <b>apt-get install isc-dhcp-server</b></br>
- Let's tempororly add another interface and set it to NAT, so we get internet access and install the DHCP server.</br></br>
- We add a new interface by turning off the virtual computer, in VirtualBox we select our virtual machine and then select <b>Settings -> Network</b></br>
- <b>Adapter 1</b> has already been set to Internal Network, we set <b>Adapter 2</b> to NAT</p>
- <img style="width: 800px; height: 134px;" src="../images/17.png" alt="slika-17"></img>
- <p>We run DHCP Server and in file<b>/etc/network/interfaces</b> at the end of the line add <b>iface eth1 inet dhcp</b>, then save the file and run <b>ifup eth1</b>.<br>
- Now we have access to the internet and can install our DHCP server with <b>apt-get install isc-dhcp-server install</b> command</br>
- <img style="width: 800px; height: 26px;" src="../images/18.png" alt="slika-18"></img></br>
- <p>Let's see what's in<b>/var/log/syslog</b>, which is a file where our system information is stored in.</p>
- <img style="width: 800px; height: 323px;" src="../images/19.png" alt="slika-19"></img></br>
- <p>Looks like we need to set up a DHCP server and specify where it should listen! </br>
- DHCP settings are stored in <b>/etc/dhcp/dhcpd.conf</b>. Let's set it! </br>
- First let's comment out <b>option domain-name-servers</b> to avoid having errors.</p>
- <img style="width: 800px; height: 26px;" src="../images/20.png" alt="slika-20"></img></br>
- <p>Then we configure DHCP server, so it would serve IPs a a certain subnet. We add the following lines:</p>
- <img style="width: 800px; height: 417px;" src="../images/21.png" alt="slika-21"></img>
- <p><b>(subnet)</b> We set the subnet and the IP range, which the DHCP server should use, and which file it should serve.</p>Some PXEs are so unintelligent, that you should specify where they should get the files from and to do that you specify next-server </br>(IP from which it will be served from, in our case simpleArbiter), we also specify gateway, which, in our case is also simpleArbiter.</br></br>Since we would like, that in the case of BootableClient B another file to be served, we do it by defining a special host like this:</br><b>(host special)</b> Under <b>hardware ethernet</b> we specifiy MAC address of our BootableClient B, we assign it a static ip and where the file <b>live-ISO</b> is located.</p>
- <p>We save the settings and kill the process named <b>dnsmasq</b>using<b>kilall dnsmasq</b>.</p>
- <img style="width: 740px; height: 34px;" src="../images/22.png" alt="slika-22"></img>
- <p>We restart our DHCP server, to apply the new settings. This is done using <b>service isc-dhcp-server restart</b></br> command. DHCP server is now ready! We supply BootableClientA and BootableClientB and test them!</p>
-
-
- <h2 id="clientA">Setting up <mark>BootableClient A</mark></h2>
- <p>We open VirtualBox and select <b>New</b>, for the
-<b>Name</b> field we specify
-BootableClient A and for the <b>Hard drive</b> we select <b>Do not add a
-virtual
-hard drive</b> (as we want diskless device), </br>and select Create.
-We want the computer to be on Internal network so vse select our
-<b>Bootable Client
-A</b> and select </br><b>Settings->Network</b> where we change Adapter
-1 to Internal Network.</p>
- <img style="width: 800px; height: 678px;" src="../images/23.png" alt="slika-23"></img>
- <p>We also want our computer to boot through the network, so
-under<b>Boot Order</b>tab select <b>Network</b>.</br>
- We save the setting by clicking <b>OK</b></p>
- <img style="width: 800px; height: 697px;" src="../images/24.png" alt="slika-24"></img>
- <p>We run our BootableClient-a A and it get's it's
-IP(which is great), using the DHCP server and the simpleArbiter serves
-it exactly the file we specified. <b>A.0</b></p>
- <img style="width: 800px; height: 494px;" src="../images/25.png" alt="slika-25"></img>
-
-
-
- <h2 id="clientB">Setting up<mark>BootableClient
-B</mark></h2>
- <p>We open virtual box and select <b>New</b> and under the <b>Name</b> tag write BootableClient B and under the <b>Hard drive</b>tab choose <b>Do not add a virtual hard drive</b> (since we want a diskless machine), </br>and then press the Create button, which will create a virtual machine. We want our machine to be connected to out Internal network so we select <b>Bootable Client B</b> and then select </br><b>Settings->Network</b> and set the Adapter 1 to Internal Network.</br>
- Under <b>MAC Address</b> we specify the same MAC address that is specified in the (dhcpd.conf -> host special) file, since we want our machine to be an exception</br> and will be served a special file named<b>live-ISO</b></p>
- <img style="width: 800px; height: 678px;" src="../images/26.png" alt="slika-26"></img>
- <p>We want our machine to perform a netboot, so under the <b>System</b></p> <b>Boot Order</b> tag specify only <b>Network</b>.</br>
- We save the setting by clicking the <b>OK</b> button</p>
- <img style="width: 800px; height: 697px;" src="../images/27.png" alt="slika-27"></img>
- <p>We run our BootableClient-a A and it get's it's IP address using DHCP server and simpleArbiter serves it the file we selected called <b>live-ISO</b></p>
- <img style="width: 800px; height: 494px;" src="../images/28.png" alt="slika-28"></img>
-
-
- </body>
-</html>
-
diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/en/indexEN.html b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/en/indexEN.html deleted file mode 100644 index c83ed57..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/en/indexEN.html +++ /dev/null @@ -1,172 +0,0 @@ -<html>
- <head>
- <meta charset="UTF-8">
- <title>06 - preparation (isc_dhcp_live_boot)</title>
- </head>
-
- <body>
- <h1 style="color:blue">06 - preparation (isc_dhcp_live_boot)</h1>
- <h2>Table of contents</h2>
- <ul>
- <li><a href="#namen">Purpose of this exercise</a></li>
- <li><a href="#navidezniRacunalniki">Virtual machines, needed for the purpose of exercise</a></li>
- <li><a
-href="#skicaPodomrezja">Schematics of our subnet</a></li>
- <li><a href="#simpleArbiterGW">Setting up simpleArbiterGW</a></li>
- <li><a href="#DHCP">Setting up DHCP Server</a></li>
- <li><a href="#clientA">Setting BootableClient A</a></li>
- <li><a href="#clientB">Setting up BootableClient B</a></li>
- </ul>
-
-
- <h2 id="namen">Purpose of this exercise</h2>
- <p>How to perform live boot using a DHCP server.</p>
-
- <h2 id="navidezniRacunalniki">Virtual machines needed to perform the task.</h2>
- <p>We need VirtualBox and the following 4 virtual
-machines:
- <ul>
- <li><a href="http://www.polz.si/media/uploads/kpov/virtualke/simpleArbiterGW.vdi">simpleArbiterGW</a></li>
- <li><a href="http://www.polz.si/media/uploads/kpov/virtualke/simpleArbiterDhcp.vdi">DHCP Server</a></li>
- <li>Bootable Client A (diskless
-machine)</li>
- <li>Bootable Client B (diskless
-machine)</li>
- </ul>
- </p>
-
- <h2 id="skicaPodomrezja">Schematics of our subnet</h2>
- <img style="width: 800px; height: 610px;" src="../images/01.png" alt="slika-01"></img>
- <p>Our goal is to make BootableClient A get it's IP
-through DHCP server and boot up using file
-A, which is located on simpleArbiterGW,</br>If we run
-BootableClient B machines, we would like it to retrieve it's IP
-through DHCP server and boot from some live ISO which is also located on
-SimpleArbiterGW.
- </p>
-
- <h2 id="simpleArbiterGW">Setting up <mark>simpleArbiterGW</mark></h2>
- <p>Download <a
-href="http://www.polz.si/media/uploads/kpov/virtualke/simpleArbiterGW.vdi">simpleArbiterGW.vdi</a>
-and then run VirtualBox. After the file is downloaded, choose the New
-option in VirtualBoxu and set simpleArbiterGW in the Name
-field.</br>Memory size should be set accordingly (1gb will suffice). Then choose "Use an existing virtual hard drive file" and select simpleArbiterGW.vdi clicking Create.</p>
- </br>
- <img style="width: 800px; height: 464px;" src="../images/02.png" alt="slika-02"></img>
- <p>We start our virtual machines simpleArbiterGW using the
-following login
-credentials; username: "root", password: "kaboom".</br></br>
- At the start, the computer on NAt get's it's IP(in our case 10.0.2.15).</br>(to check this use<b>ifconfig</b>) We now use this address and eth0 interface to access the internet.<p>
- <img style="width: 800px; height: 384px;" src="../images/03.png" alt="slika-03"></img>
- <p>However, we would like this machine to have 2
-interfaces! One on NAT(we already have this one), and the other one on Internal Network,</br>throuh which we will communicate wiht the DHCP Server and other machines on our Internal Network.</br></br>
- We add a new interface, by turning off the virtual machine,
-select our machine in VirtualBox and select
-računalnik, ter v VirtualBoxu <b>Settings -> Network</b></br>
- <b>Adapter</b> 1 is already set to NAT, we set <b>Adapter
-2</b> to
-Internal Network</p>
- <img style="width: 800px; height: 137px;" src="../images/04.png" alt="slika-04"></img>
- <p>So, now we have two network interfaces!</br>In VirtuaBox
-we can define multiple Internal Networks, however, for our need's two
-will suffice. We save the settings and restart simpleArbiterGW.</br></br>
- What we must do now, is to assign both interfaces IP addresses. We do this by setting the<b>interfaces</b>file
- located at<b>/etc/network</b>.</p>
- <img style="width: 800px; height: 229px;" src="../images/05.png" alt="slika-05"></img>
- <p>Eth0 was already handled by and integrated DHCP, so eth0 had been assigned an IP).</br>
- We have to set up the other network interface. If we don't know it's name, we find it out using <b>ifconfig -a</b>.</p>
- <img style="width: 800px; height: 117px;" src="../images/06.png" alt="slika-06"></img>
- <p>We can conclude the interface names is set to Eth1.
- Now we would like to assign an IP naslov to Eth1.</br>
- Ifconfig could be used, but rebooting the machine would reset the settings. Which is not ideal :)</br>
- So configuring <b>/etc/network/interfaces would be a better idea.</b></br></br>
- Let's make up a random local network or a local area network or local area network address and assign it to eth1.
- </p>
- <img style="width: 800px; height: 296px;" src="../images/07.png" alt="slika-07"></img>
- <p>We save the config file. Our machine still has no IP on eth1 so we use the <b>ifup eth1</b> command</p>
- <img style="width: 800px; height: 23px;" src="../images/08.png" alt="slika-08"></img></br>
- <p>Now we use the <b>ifconfig</b> command, to see whether and ip is assigned to eth1 interface</p>
- <img style="width: 800px; height: 389px;" src="../images/09.png" alt="slika-09"></img>
- <p>We can see the IP is set. Now let's set up the DHCP
-Server!</p>
-
- <h2 id="DHCP">Setting up <mark>DHCP Server</mark></h2>
- <p>We download <a href="http://www.polz.si/media/uploads/kpov/virtualke/simpleArbiterDhcp.vdi">simpleArbiterDhcp.vdi</a> ter zaženemo VirtualBox. Ko je datoteka prenesena v VirtualBoxu izberemo New ter v polje Name vpišemo DHCP Server.</br>Ustrezno nastavimo tudi Memory size (1gb pomnilnika nam bo zadostovalo). Spodaj izberemo še "Use an existing virtual hard drive file" ter izberemo naš simpleArbiterDhcp in pritisnimo Create.</p>
- </br>
- <img style="width: 800px; height: 464px;" src="../images/10.png" alt="slika-10"></img>
- <p>We run DHCP Server virtual machine and login using "root" ad username and "kaboom" as password.</br></br>
- <p>At first, our machine has no assigned IP, since none was set! Let+s configure it in <b>/etc/network/interfaces</b>.</br>But which interface should we configure? Using <b>ifconfig -a</b> command, we see it's <b>eth0</b>interface.<br>
- Again we select our IP address.</p>
- <img style="width: 800px; height: 283px;" src="../images/11.png" alt="slika-11"></img>
- <p>We save the configuration file. Our computer still has no IP address assigned to eth0, so using <b>ifdown eth0</b> and then <b>ifup eth0</b>we provide one.</p>
- <img style="width: 800px; height: 25px;" src="../images/12.png" alt="slika-12"></img>
- <p>Now let us use <b>ifconfig</b> command, to check whether there is an IP assigned to interface eth0</p>
- <img style="width: 800px; height: 329px;" src="../images/13.png" alt="slika-13"></img>
- <p>We got it! We install DHCP server using <b>apt-get install isc-dhcp-server</b></p>
- <img style="width: 800px; height: 322px;" src="../images/14.png" alt="slika-14"></img>
- <p>We see a bunch of errors. Why? Bacause, we have no internet access! <br>
- We need to specify the Gateway for our inteface. Our Gateway bo seveda IP našega simpleArbiter navideznega računalnika.</br> To naredimo s pomočjo ukaza <b>route add default gw 192.168.251.1 eth0</b></p>
- <img style="width: 800px; height: 43px;" src="../images/15.png" alt="slika-15"></img>
- <p>Try pinging Google's DNS server at 8.8.8.8, to check if now have internet access.</br>
- We do this using the <b>ping 8.8.8.8</b> command.</p>
- <img style="width: 800px; height: 361px;" src="../images/16.png" alt="slika-16"></img>
- <p>Google's DNS server is responding. Great! </br>
- However, we still cannot run <b>apt-get install isc-dhcp-server</b></br>
- Let's tempororly add another interface and set it to NAT, so we get internet access and install the DHCP server.</br></br>
- We add a new interface by turning off the virtual computer, in VirtualBox we select our virtual machine and then select <b>Settings -> Network</b></br>
- <b>Adapter 1</b> has already been set to Internal Network, we set <b>Adapter 2</b> to NAT</p>
- <img style="width: 800px; height: 134px;" src="../images/17.png" alt="slika-17"></img>
- <p>We run DHCP Server and in file<b>/etc/network/interfaces</b> at the end of the line add <b>iface eth1 inet dhcp</b>, then save the file and run <b>ifup eth1</b>.<br>
- Now we have access to the internet and can install our DHCP server with <b>apt-get install isc-dhcp-server install</b> command</br>
- <img style="width: 800px; height: 26px;" src="../images/18.png" alt="slika-18"></img></br>
- <p>Let's see what's in<b>/var/log/syslog</b>, which is a file where our system information is stored in.</p>
- <img style="width: 800px; height: 323px;" src="../images/19.png" alt="slika-19"></img></br>
- <p>Looks like we need to set up a DHCP server and specify where it should listen! </br>
- DHCP settings are stored in <b>/etc/dhcp/dhcpd.conf</b>. Let's set it! </br>
- First let's comment out <b>option domain-name-servers</b> to avoid having errors.</p>
- <img style="width: 800px; height: 26px;" src="../images/20.png" alt="slika-20"></img></br>
- <p>Then we configure DHCP server, so it would serve IPs a a certain subnet. We add the following lines:</p>
- <img style="width: 800px; height: 417px;" src="../images/21.png" alt="slika-21"></img>
- <p><b>(subnet)</b> We set the subnet and the IP range, which the DHCP server should use, and which file it should serve.</p>Some PXEs are so unintelligent, that you should specify where they should get the files from and to do that you specify next-server </br>(IP from which it will be served from, in our case simpleArbiter), we also specify gateway, which, in our case is also simpleArbiter.</br></br>Ker bi radi, da v primeru zagona navideznega računalnika BootableClient B serviramo drugo datoteko, to naredimo tako da definiramo nek dodaten host na sledeč način:</br><b>(host special)</b> Pod <b>hardware ethernet</b> zapišemo MAC naslov našega BootableClient B katerega bo imel, dodelimo mu nek statičen ip naslov ter povemo še iz kje se naj datoteka <b>live-ISO</b> zažene.</p>
- <p>We save the settings and kill terthe process with ubijemo named <b>dnsmasq</b>using<b>kilall dnsmasq</b>.</p>
- <img style="width: 740px; height: 34px;" src="../images/22.png" alt="slika-22"></img>
- <p>Sledi restart našega DHCP strežnika, da bo deloval z novimi nastavitvami, to naredimo z ukazom <b>service isc-dhcp-server restart</b></br>DHCP server is now ready! We supply BootableClientA and BootableClientB and test them!</p>
-
-
- <h2 id="clientA">Postavitev <mark>BootableClient A</mark></h2>
- <p>We open VirtualBox and select <b>New</b>, for the y
-<b>Name</b> field we specify
-BootableClient A and for the <b>Hard drive</b> we select <b>Do not add a
-virtual
-hard drive</b> (as we want diskless device), </br>and select Create.
-We want the computer to be on Internal network so vse select our
-<b>Bootable Client
-A</b> and select </br><b>Settings->Network</b> where we change Adapter
-1 to Internal Network.</p>
- <img style="width: 800px; height: 678px;" src="../images/23.png" alt="slika-23"></img>
- <p>We also wan our computer to boot through network, so
-under<b>Boot Order</b>tab select <b>Network</b>.</br>
- We save the setting by clicking <b>OK</b></p>
- <img style="width: 800px; height: 697px;" src="../images/24.png" alt="slika-24"></img>
- <p>We run our BootableClient-a A and it get's it's
-IP(which is great), using the DHCP server and the simpleArbiter serves
-it exactly the file we specified. <b>A.0</b></p>
- <img style="width: 800px; height: 494px;" src="../images/25.png" alt="slika-25"></img>
-
-
-
- <h2 id="clientB">Setting up<mark>BootableClient
-B</mark></h2>
- <p>Odpremo VirtualBox ter izberemo <b>New</b> in pod <b>Name</b> napišemo BootableClient B ter pod <b>Hard drive</b> izberemo <b>Do not add a virtual hard drive</b> (saj si želimo računalnik brez diska), </br>in pritisnemo na gump Create, da se nam ustvari navidezni računalnik. Želimo, da bo računalnik priklopljen na Internal network zato označimo naš <b>Bootable Client B</b> ter pritisnimo na </br><b>Settings->Network</b> in prvi Adapter 1 spremenimo na Internal Network.</br>
- Poleg tega nastavimo še pod <b>MAC Address</b> takšen MAC naslov, kot ga imamo v nastavitvah DHCP strežnika (dhcpd.conf -> host special), saj želimo da bo ta naš računalnik izjema</br> in bo ob zagonu dobil drugo datoteko kot ostali in sicer <b>live-ISO</b></p>
- <img style="width: 800px; height: 678px;" src="../images/26.png" alt="slika-26"></img>
- <p>Želimo še, da se računalnik boot-a preko mreže, zato to nastavimo pod zavihkom <b>System</b></p> tako, da pod <b>Boot Order</b> obkljukamo samo <b>Network</b>.</br>
- Nastavitve shranimo z pritiskom na gumb <b>OK</b></p>
- <img style="width: 800px; height: 697px;" src="../images/27.png" alt="slika-27"></img>
- <p>Poženemo našega BootableClient-a A in odličnoo, dobi ip naslov s pomočjo DHCP strežnika in simpleArbiter mu servira točno to datoteko katero si želimo <b>live-ISO</b></p>
- <img style="width: 800px; height: 494px;" src="../images/28.png" alt="slika-28"></img>
-
-
- </body>
-</html>
-
diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/en/indexEN.html.save b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/en/indexEN.html.save deleted file mode 100644 index e69de29..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/en/indexEN.html.save +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/01.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/01.png Binary files differdeleted file mode 100644 index 906135b..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/01.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/02.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/02.png Binary files differdeleted file mode 100644 index 545f630..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/02.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/03.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/03.png Binary files differdeleted file mode 100755 index 0b69590..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/03.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/04.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/04.png Binary files differdeleted file mode 100755 index ce4dc18..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/04.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/05.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/05.png Binary files differdeleted file mode 100755 index f343ec1..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/05.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/06.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/06.png Binary files differdeleted file mode 100755 index b4fe8e1..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/06.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/07.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/07.png Binary files differdeleted file mode 100755 index b6da6eb..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/07.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/08.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/08.png Binary files differdeleted file mode 100755 index 333fd7d..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/08.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/09.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/09.png Binary files differdeleted file mode 100755 index c7cb8b8..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/09.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/10.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/10.png Binary files differdeleted file mode 100755 index c7f9225..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/10.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/11.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/11.png Binary files differdeleted file mode 100755 index e1192e9..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/11.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/12.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/12.png Binary files differdeleted file mode 100755 index 295b3c7..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/12.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/13.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/13.png Binary files differdeleted file mode 100755 index 8d3badc..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/13.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/14.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/14.png Binary files differdeleted file mode 100755 index 3009f41..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/14.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/15.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/15.png Binary files differdeleted file mode 100755 index c4413e8..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/15.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/16.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/16.png Binary files differdeleted file mode 100755 index a4de5a8..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/16.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/17.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/17.png Binary files differdeleted file mode 100755 index 0ab5c0f..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/17.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/18.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/18.png Binary files differdeleted file mode 100755 index 4e1e17a..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/18.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/19.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/19.png Binary files differdeleted file mode 100755 index 570f644..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/19.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/20.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/20.png Binary files differdeleted file mode 100755 index ea67ce0..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/20.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/21.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/21.png Binary files differdeleted file mode 100755 index 428f92f..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/21.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/22.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/22.png Binary files differdeleted file mode 100755 index 7119fff..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/22.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/23.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/23.png Binary files differdeleted file mode 100755 index 68d0477..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/23.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/24.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/24.png Binary files differdeleted file mode 100755 index 4ab2dd2..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/24.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/25.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/25.png Binary files differdeleted file mode 100755 index 8823ac1..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/25.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/26.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/26.png Binary files differdeleted file mode 100755 index 09eb081..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/26.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/27.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/27.png Binary files differdeleted file mode 100755 index 9b867e1..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/27.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/28.png b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/28.png Binary files differdeleted file mode 100755 index 5844b8a..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/images/28.png +++ /dev/null diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/si/index.html b/kpov_judge/tasks/isc_dhcp_live_boot/howtos/si/index.html deleted file mode 100644 index d83b934..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/howtos/si/index.html +++ /dev/null @@ -1,147 +0,0 @@ -<html>
- <head>
- <meta charset="UTF-8">
- <title>06 - preparation (isc_dhcp_live_boot)</title>
- </head>
-
- <body>
- <h1 style="color:blue">06 - preparation (isc_dhcp_live_boot)</h1>
- <h2>Kazalo</h2>
- <ul>
- <li><a href="#namen">Namen vaje</a></li>
- <li><a href="#navidezniRacunalniki">Navidezni računalniki, ki so potrebni za izvedbo naloge</a></li>
- <li><a href="#skicaPodomrezja">Skica našega podomrežja</a></li>
- <li><a href="#simpleArbiterGW">Postavitev simpleArbiterGW</a></li>
- <li><a href="#DHCP">Postavitev DHCP Server</a></li>
- <li><a href="#clientA">Postavitev BootableClient A</a></li>
- <li><a href="#clientB">Postavitev BootableClient B</a></li>
- </ul>
-
-
- <h2 id="namen">Namen vaje</h2>
- <p>Kako narediti live boot z DHCP strežnikom.</p>
-
- <h2 id="navidezniRacunalniki">Navidezni računalniki, ki so potrebni za izvedbo naloge</h2>
- <p>Potrebujemo program VirtualBox ter naslednje 4 navidezne računalnike:
- <ul>
- <li><a href="http://www.polz.si/media/uploads/kpov/virtualke/simpleArbiterGW.vdi">simpleArbiterGW</a></li>
- <li><a href="http://www.polz.si/media/uploads/kpov/virtualke/simpleArbiterDhcp.vdi">DHCP Server</a></li>
- <li>Bootable Client A (računalnik brez diska)</li>
- <li>Bootable Client B (računalnik brez diska)</li>
- </ul>
- </p>
-
- <h2 id="skicaPodomrezja">Skica našega podomrežja</h2>
- <img style="width: 800px; height: 610px;" src="../images/01.png" alt="slika-01"></img>
- <p>Naš cilj je, da računalnik BootableClient A preko DHCP strežnika pridobil IP naslov ter se zažene z datoteko A, ki se nahaja na simpleArbiterGW,</br>če pa zaženemo računalnik BootableClient B pa si želimo, da ta preko DHCP strežnika pridobi IP naslov ter se zažene z nekim live ISO, ki se prav tako nahaja na simpleArbiterGW.
- </p>
-
- <h2 id="simpleArbiterGW">Postavitev <mark>simpleArbiterGW</mark></h2>
- <p>Prenesemo <a href="http://www.polz.si/media/uploads/kpov/virtualke/simpleArbiterGW.vdi">simpleArbiterGW.vdi</a> ter zaženemo VirtualBox. Ko je datoteka prenesena v VirtualBoxu izberemo New ter v polje Name vpišemo simpleArbiterGW.</br>Ustrezno nastavimo tudi Memory size (1gb pomnilnika nam bo zadostovalo). Spodaj izberemo še "Use an existing virtual hard drive file" ter izberemo naš simpleArbiterGW.vdi in pritisnimo Create.</p>
- </br>
- <img style="width: 800px; height: 464px;" src="../images/02.png" alt="slika-02"></img>
- <p>Nato zaženemo virtualni računalnik simpleArbiterGW ter se z uporabniškim imenom "root" ter geslom "kaboom" vpišemo v naš sistem.</br></br>
- Prvo računalnik od NAT-a, kateri je vgrajen v VirtualBox dobi nek naslov (v našem primeru 10.0.2.15).</br>(Da to preverimo uporabimo ukaz <b>ifconfig</b>) Preko tega IP naslova in vmesnika eth0 smo povezani v internet.<p>
- <img style="width: 800px; height: 384px;" src="../images/03.png" alt="slika-03"></img>
- <p>Mi pa si želimo 2 omrežna vmesnika na tem računalniku! Enega bi radi imeli na NAT (tega že imamo) drugega pa na Internal Network,</br>preko katerega bomo komunicirali z DHCP Strežnikom ter ostalimi računalniki, ki bodo v našem Internal Network-u.</br></br>
- Nov omrežni vmesnik dodamo tako, da ugasnemo naš virtualni računalnik, ter v VirtualBoxu označimo naš virtualni računalnik in pritisnemo na <b>Settings -> Network</b></br>
- <b>Adapter</b> 1 imamo že nastavljeno na NAT, <b>Adapter 2</b> pa nastavimo na Internal Network</p>
- <img style="width: 800px; height: 137px;" src="../images/04.png" alt="slika-04"></img>
- <p>Tako, zdaj imamo nastavljena 2 vmesnika!</br>V VirtualBoxu lahko definiramo več Internal Networkov (notranjih omrežij) a za naše potrebe bo to dovolj. Shranimo nastavitve ter ponovno poženimo naš simpleArbiterGW.</br></br>
- Zdaj moramo oba omrežna vmesnika nastaviti tako, da bosta imela nek naslov. Uredimo datoteko <b>interfaces</b> v imeniku
- <b>/etc/network</b>.</p>
- <img style="width: 800px; height: 229px;" src="../images/05.png" alt="slika-05"></img>
- <p>Za eth0 je poskrbel že DHCP strežnik, ki je vgrajen v VirtualBox (na eth0 je določil nek IP).</br>
- Mi moramo nastaviti še drugi mrežni vmesnik. Kako se imenuje iz glave ne vemo zato s pomočjo ukaza <b>ifconfig -a</b> pogledamo.</p>
- <img style="width: 800px; height: 117px;" src="../images/06.png" alt="slika-06"></img>
- <p>Ugotovimo da je ime vmesnika eth1.
- Zdaj bi rad na eth1 nastavil en IP naslov.</br>
- Lahko bi nastavil z ifconfig, a ko rebootaš računalnik se nastavitve ne ohranijo. To nebi radi!</br>
- Pojdimo raje skonfigurirat nastavitve v <b>/etc/network/interfaces</b></br></br>
- Izmislimo si eno naključno lokalno omrežje oz naslov lokalnega omrežja ter nastavimo eth1.
- </p>
- <img style="width: 800px; height: 296px;" src="../images/07.png" alt="slika-07"></img>
- <p>Shranimo konfiguracijsko datoteko. Moj računalnik še nima IP-ja na eth1 zato uporabim ukaz <b>ifup eth1</b></p>
- <img style="width: 800px; height: 23px;" src="../images/08.png" alt="slika-08"></img></br>
- <p>Sedaj uporabimo ukaz <b>ifconfig</b>, da vidimo če imamo slučajno ip na vmesniku eth1</p>
- <img style="width: 800px; height: 389px;" src="../images/09.png" alt="slika-09"></img>
- <p>Vidim, da ip imam. Super! Gremo postavit DHCP Server!</p>
-
- <h2 id="DHCP">Postavitev <mark>DHCP Server</mark></h2>
- <p>Prenesemo <a href="http://www.polz.si/media/uploads/kpov/virtualke/simpleArbiterDhcp.vdi">simpleArbiterDhcp.vdi</a> ter zaženemo VirtualBox. Ko je datoteka prenesena v VirtualBoxu izberemo New ter v polje Name vpišemo DHCP Server.</br>Ustrezno nastavimo tudi Memory size (1gb pomnilnika nam bo zadostovalo). Spodaj izberemo še "Use an existing virtual hard drive file" ter izberemo naš simpleArbiterDhcp in pritisnimo Create.<br>Ustrezno nastavimo tudi nastavitve mreže iz NAT na Internal Network</p>
- </br>
- <img style="width: 800px; height: 464px;" src="../images/10.png" alt="slika-10"></img>
- <p>Nato zaženemo virtualni računalnik DHCP Server ter se z uporabniškim imenom "root" ter geslom "kaboom" vpišemo v naš sistem.</br></br>
- <p>Sprva naš računalnik nima nobenega ip-ja saj mu ga nismo nastavili! Pojdimo skonfigurirat nastavitve v <b>/etc/network/interfaces</b>.</br>Ampak kateri vmesnik sploh konfiguriramo? Z ukazom <b>ifconfig -a</b> ugotovimo da je to <b>eth0</b>.<br>
- Spet si izberemo nek svoj statičen ip naslov.</p>
- <img style="width: 800px; height: 283px;" src="../images/11.png" alt="slika-11"></img>
- <p>Shranimo konfiguracijsko datoteko. Moj računalnik še nima IP-ja na eth0 zato uporabim ukaz <b>ifdown eth0</b> ter nato še <b>ifup eth0</b></p>
- <img style="width: 800px; height: 25px;" src="../images/12.png" alt="slika-12"></img>
- <p>Sedaj uporabimo ukaz <b>ifconfig</b>, da vidimo če imamo slučajno ip na vmesniku eth0</p>
- <img style="width: 800px; height: 329px;" src="../images/13.png" alt="slika-13"></img>
- <p>Hura imamo! Namestimo naš DHCP strežnik z ukazom <b>apt-get install isc-dhcp-server</b></p>
- <img style="width: 800px; height: 322px;" src="../images/14.png" alt="slika-14"></img>
- <p>Vidimo, da dobimo cel kup napak. Ampak zakaj? Zato, ker nimamo dostopa do interneta! <br>
- Vmesniku eth0 moramo seveda povedati Gateway. Naš Gateway bo seveda IP našega simpleArbiter navideznega računalnika.</br> To naredimo s pomočjo ukaza <b>route add default gw 192.168.251.1 eth0</b></p>
- <img style="width: 800px; height: 43px;" src="../images/15.png" alt="slika-15"></img>
- <p>Probajmo ping-ati Googlov DNS strežnik, da ugotovimo če imamo sedaj internet.</br>
- To naredimo z ukazom <b>ping 8.8.8.8</b>.</p>
- <img style="width: 800px; height: 361px;" src="../images/16.png" alt="slika-16"></img>
- <p>Googlov DNS strežnik se odziva, super! </br>
- Ampak <b>apt-get install isc-dhcp-server</b> še vedno ne moremo naložiti.</br>
- Začasno dodajmo še en mrežni vmesnik ter ga nastavimo na NAT, nato bomo dobili dostop do interneta ter lahko namestimo naš DHCP strežnik.</br></br>
- Nov omrežni vmesnik dodamo tako, da ugasnemo naš virtualni računalnik, ter v VirtualBoxu označimo naš virtualni računalnik in pritisnemo na <b>Settings -> Network</b></br>
- <b>Adapter 1</b> imamo že nastavljeno na Internal Network, <b>Adapter 2</b> pa nastavimo na NAT</p>
- <img style="width: 800px; height: 134px;" src="../images/17.png" alt="slika-17"></img>
- <p>Zaženemo naš DHCP Server in v <b>/etc/network/interfaces</b> začasno na koncu dodamo vrstico <b>iface eth1 inet dhcp</b>,datoteko shranimo ter poženemo ukaz <b>ifup eth1</b>.<br>
- Sedaj imamo dostop do interneta in lahko namestimo naš DHCP strežnik z ukazom <b>apt-get install isc-dhcp-server install</b></br>
- <img style="width: 800px; height: 26px;" src="../images/18.png" alt="slika-18"></img></br>
- <p>Poglejmo kaj je v <b>/var/log/syslog</b>, to je datoteka kamor se shranjujejo sporočila kaj se dogaja v našem sistemu</p>
- <img style="width: 800px; height: 323px;" src="../images/19.png" alt="slika-19"></img></br>
- <p>Očitno moramo nastaviti dhcp strežnik ter mu povedati tudi kam naj posluša! </br>
- Za nastavitve DHCP strežnika imamo <b>/etc/dhcp/dhcpd.conf</b>. Nastavimo jo! </br>
- Prvo zakomentiramo <b>option domain-name-servers</b> zaradi tega da nebo napak da jih ne najde.</p>
- <img style="width: 800px; height: 26px;" src="../images/20.png" alt="slika-20"></img></br>
- <p>Nato skonfiguriramo dhcp strežnik, da bo serviral ip-je na nekem podomrežju. Dodamo naslednje zapise:</p>
- <img style="width: 800px; height: 417px;" src="../images/21.png" alt="slika-21"></img>
- <p><b>(subnet)</b> Nastavimo podomrežje ter območje naslovov od koder naj jih DHCP strežnik dodeli, katero datoteko naj servira,</br> poleg tega so eni PXE tako neumni, da če jim ti serviraš filename nevejo iz katerega serverja ga dobim, zato napišem še next-server </br>(ip od koder serviram, v našem primeru simpleArbiter), nastavim tudi gateway kateri je v našem primeru tudi simpleArbiter.</br></br>Ker bi radi, da v primeru zagona navideznega računalnika BootableClient B serviramo drugo datoteko, to naredimo tako da definiramo nek dodaten host na sledeč način:</br><b>(host special)</b> Pod <b>hardware ethernet</b> zapišemo MAC naslov našega BootableClient B katerega bo imel, dodelimo mu nek statičen ip naslov ter povemo še iz kje se naj datoteka <b>live-ISO</b> zažene.</p>
- <p>Spremembe shranimo, ter ubijemo proces z imenom <b>dnsmasq</b> z ukazom <b>kilall dnsmasq</b>.</p>
- <img style="width: 740px; height: 34px;" src="../images/22.png" alt="slika-22"></img>
- <p>Sledi restart našega DHCP strežnika, da bo deloval z novimi nastavitvami, to naredimo z ukazom <b>service isc-dhcp-server restart</b></br>DHCP Strežnik je pripravljen! Pripravimo BootableClientA ter BootableClientB ter testirajmo!</p>
-
-
- <h2 id="clientA">Postavitev <mark>BootableClient A</mark></h2>
- <p>Odpremo VirtualBox ter izberemo <b>New</b> in pod <b>Name</b> napišemo BootableClient A ter pod <b>Hard drive</b> izberemo <b>Do not add a virtual hard drive</b> (saj si želimo računalnik brez diska), </br>in pritisnemo na gump Create, da se nam ustvari navidezni računalnik. Želimo, da bo računalnik priklopljen na Internal network zato označimo naš <b>Bootable Client A</b> ter pritisnimo na </br><b>Settings->Network</b> in prvi Adapter 1 spremenimo na Internal Network.</p>
- <img style="width: 800px; height: 678px;" src="../images/23.png" alt="slika-23"></img>
- <p>Želimo še, da se računalnik boot-a preko mreže, zato to nastavimo pod zavihkom <b>System</b></p> tako, da pod <b>Boot Order</b> obkljukamo samo <b>Network</b>.</br>
- Nastavitve shranimo z pritiskom na gumb <b>OK</b></p>
- <img style="width: 800px; height: 697px;" src="../images/24.png" alt="slika-24"></img>
- <p>Poženemo našega BootableClient-a A in odličnoo, dobi ip naslov s pomočjo DHCP strežnika in simpleArbiter mu servira točno to datoteko katero si želimo <b>A.0</b></p>
- <img style="width: 800px; height: 494px;" src="../images/25.png" alt="slika-25"></img>
-
-
-
- <h2 id="clientB">Postavitev <mark>BootableClient B</mark></h2>
- <p>Odpremo VirtualBox ter izberemo <b>New</b> in pod <b>Name</b> napišemo BootableClient B ter pod <b>Hard drive</b> izberemo <b>Do not add a virtual hard drive</b> (saj si želimo računalnik brez diska), </br>in pritisnemo na gump Create, da se nam ustvari navidezni računalnik. Želimo, da bo računalnik priklopljen na Internal network zato označimo naš <b>Bootable Client B</b> ter pritisnimo na </br><b>Settings->Network</b> in prvi Adapter 1 spremenimo na Internal Network.</br>
- Poleg tega nastavimo še pod <b>MAC Address</b> takšen MAC naslov, kot ga imamo v nastavitvah DHCP strežnika (dhcpd.conf -> host special), saj želimo da bo ta naš računalnik izjema</br> in bo ob zagonu dobil drugo datoteko kot ostali in sicer <b>live-ISO</b></p>
- <img style="width: 800px; height: 678px;" src="../images/26.png" alt="slika-26"></img>
- <p>Želimo še, da se računalnik boot-a preko mreže, zato to nastavimo pod zavihkom <b>System</b></p> tako, da pod <b>Boot Order</b> obkljukamo samo <b>Network</b>.</br>
- Nastavitve shranimo z pritiskom na gumb <b>OK</b></p>
- <img style="width: 800px; height: 697px;" src="../images/27.png" alt="slika-27"></img>
- <p>Poženemo našega BootableClient-a A in odličnoo, dobi ip naslov s pomočjo DHCP strežnika in simpleArbiter mu servira točno to datoteko katero si želimo <b>live-ISO</b></p>
- <img style="width: 800px; height: 494px;" src="../images/28.png" alt="slika-28"></img>
-<h2 id="tftpInPxe">Postavitev <mark>TFTP strežnika in zagonskih datotek</mark></h2>
-
-<p>Na SimpleArbiter namestimo TFTP strežnik z ukazom <b>apt-get install tftpd-hpa</b> in spremenimo IP v <b>"/etc/default/tftpd-hpa"</b> pod TFTP_ADDRES na "192.168.251.1".
-<br>Nato z ukazom <b>apt-get install syslinux</b> namestimo syslinux in skopiramo zagonsko datoteko iz "/usr/lib/syslinux/pxelinux.0" na "/srv/tftp/A.0.<br> Namestimo še NFS server z ukazom "apt-get install nfs-kernel-server" in v "/etc/exports" dodamo lokacijo mape, kjer se nahaja naša zagonska datoteka A.0, ter omogočimo branje ("/srv/tftp * (ro)").
-<br>V imeniku /srv/tftp ustvarimo mapo "pxelinux.cfg" in v njej ustvarimo datoteko z imenom default. Vanjo vpišemo :
-<br>DEFAULT vesamenu.c32
-<br>PROMPT 0
-<br>MENU TITLE isc-dhcp-live
-<br>LABEL iso
-<br> menu label Run
-<br> kernel vmlinuz
-<br> APPEND boot=casper netboot=nfs nfsroot=192.168.251.1:/srv/tftp/boot/ initrd=initrd.gz</p>
- </body>
-</html>
-
diff --git a/kpov_judge/tasks/isc_dhcp_live_boot/task.py b/kpov_judge/tasks/isc_dhcp_live_boot/task.py deleted file mode 100644 index c1adc47..0000000 --- a/kpov_judge/tasks/isc_dhcp_live_boot/task.py +++ /dev/null @@ -1,222 +0,0 @@ -# TODO: dokoncaj! -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si': '''\ -<p> -Postavi štiri navidezne računalnike: <em>simpleArbiter</em>, <em>DHCP_server</em>, <em>BootableClientA</em> in <em>BootableClientB</em>. - -<p> -Na <em>DHCP_server</em> postavi strežnik DHCP s pomočjo ISC dhcp 3 na naslovu <code>{{IP_DHCP}}</code>. <em>SimpleArbiter</em> naj dobi <code>{{IP_GW}}</code>. <em>DHCP_server</em> naj ga uporabi kot privzeti prehod (angl. <em lang="en">gateway</em>). - -<p> -Če se zaganja <em>BootableClientB</em>, naj se sistem zažene v datoteko z imenom <code>{{BOOT_FNAME}}</code>. Če se zaganja katerikoli drug, naj se sistem zažene z živega USB, ki ga predstavlja slika diska <code>bootable_usb</code>, ime datoteke z zagonskim nalagalnikom pa naj bo kakršno koli razen <code>{{BOOT_FNAME}}</code>. - -<p> -Živi USB priklopite na na <em>DHCP_server</em> in z njega poberite datoteke, potrebne za zagon. Datoteke z nastavitvami za PXELinux, ki jih najdete na živem USB, <em>morajo</em> biti dostopne na korenskem imeniku strežnika TFTP. - -<p> -Tako <em>BootableClientA</em> kot <em>BootableClientB</em> naj bosta brez diskov. -''', - 'en': '''\ -<p> -Set up four virtual machines: <em>simpleArbiter</em>, <em>DHCP_server</em>, <em>BootableClientA</em> and <em>BootableClientB</em>. - -<p> -On <em>DHCP_server</em>, set up a DHCP server using ISC dhcp 3. Set the IP address of this server to <code>{{IP_DHCP}}</code>. If <em>SimpleArbiter</em> requests an IP, have the DHCP server serve it <code>{{IP_GW}}</code>. <em>DHCP_server</em> should use <em>SimpleArbiter</em> as the gateway. - -<p> -If <em>BootableClientB</em> tries to boot over the network, have the DHCP server tell it to boot from the file <code>{{BOOT_FNAME}}</code>. If any other system tries to boot over the network, have it boot from a live USB drive represented by the disk image <code>bootable_usb</code> and have the bootloader filename be different from <code>{{BOOT_FNAME}}</code>. - -<p> -Connect the live USB to DHCP_server and copy the files neccessarry for it to boot. The PXELinux configuration files must be the same as the ones found on the live USB and <em>must</em> be accessible on the TFTP server root. - -<p> -Both <em>BootableCLientA</em> and <em>BootableClientB</em> should be diskless. -''', -} - -computers = { - 'DHCPServer': { - 'disks': [ - { 'name': 'student-DHCPServer', - }, - { 'name': 'bootable_usb', - 'options':{'readonly': False}, - 'parts': [ {'dev': 'sdb1', 'path':'/mnt'} ], - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - }, - 'BootableClientA': { - 'disks': [ - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - }, - 'BootableClientB': { - 'disks': [ - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterGW', - }, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'IP_DHCP': {'descriptions': {'si': 'IP DHCP streznika'}, 'w': False, 'public': True, 'type':'IP', 'generated': True}, - 'IP_GW': {'descriptions': {'si': 'IP SimpleArbiterja'}, 'w': False, 'public': True, 'type':'IP', 'generated': True}, - 'MAC_BOOT': {'descriptions': {'si': 'MAC racunalnika, ki se zazene z ISO'}, 'w': True, 'public': True, 'type':'MAC', 'generated': False}, - # 'IP_BOOT': {'descriptions': {'si': 'IP racunalnika, ki se zazene z ISO'}, 'w': True, 'public': True, 'type':'IP', 'generated': False}, - 'TFTP_STRING': {'descriptions': {'si': 'vsebina'}, 'w': False, 'public': False, 'type':'short', 'generated': True}, - 'BOOT_FNAME': {'descriptions': {'si': 'Ime datoteke'}, 'w': False, 'public': True, 'type': 'filename', 'generated': True}, -} - -def task(IP_DHCP, IP_GW, MAC_BOOT, BOOT_FNAME): - # check the IP - # TODO (polz): Do not use tabs instead of spaces! - import pexpect - import re - import tftpy - import io - import time - results={} - # TODO (polz): Please use pexpect instead of os.system, it's much nicer. - # Also, test your functions. This function was obviously never run. - # - # check whether the fname served by the dhcp server is - # correct - # you should check the DHCP response from the server. - # You can use dhcpdump to get some packets, dhcping to create a - # DHCP Request. You may also use any other tool. - # If you choose to use dhcping, do not forget to set the hw address - # and ip arguments. You can simply feed it MAC_BOOT and IP_BOOT. - # dhcping -h MAC_BOOT -c IP_BOOT -V -r - # could work (but you should test it) - ip_str = pexpect.run('ip addr show') - eth_re_str = r"ether (([0-9a-f]{{2}}:){{5}}[0-9a-f]{{2}})(.*)\r\n(.*){}(.*)\s(\w*)\r\n" - ip_re = re.search(eth_re_str.format(IP_GW), ip_str) - mac_SA = ip_re.group(1) - eth_dev_SA = ip_re.group(6) - dhcpdump = pexpect.spawn("sudo dhcpdump -i {}".format(eth_dev_SA)) - time.sleep(2) - results['dhcping_other'] = pexpect.run('sudo dhcping -s {} -h {} -c {}'.format( - IP_DHCP, MAC_BOOT, IP_GW)) - dhcpdump.expect('---------------------------------------------------------------------------') - results['dhcpdump_other_req'] = dhcpdump.before - dhcpdump.expect('---------------------------------------------------------------------------') - results['dhcpdump_other_reply'] = dhcpdump.before - dhcpdump.expect('---------------------------------------------------------------------------') - results['dhcpdump_other_release'] = dhcpdump.before - results['dhcping_SA'] = pexpect.run('sudo dhcping -s {} -h {} -c {}'.format( - IP_DHCP, mac_SA, IP_GW)) - dhcpdump.expect('---------------------------------------------------------------------------') - results['dhcpdump_SA_req'] = dhcpdump.before - dhcpdump.expect('---------------------------------------------------------------------------') - results['dhcpdump_SA_reply'] = dhcpdump.before - dhcpdump.expect('---------------------------------------------------------------------------') - results['dhcpdump_SA_release'] = dhcpdump.before - dhcpdump.sendintr() - tftp_client = pexpect.spawn('tftp {}'.format(IP_DHCP)) - tftp_client.expect(r'tftp>') - tftp_client.sendline('get pxelinux.cfg/default /dev/stdout') - tftp_client.expect(r'tftp>') - results['tftp_string'] = tftp_client.before - # check whether the fname served by the dhcp server is correct - # connect to the service in the special ISO - # check the MAC of the server on IP_BOOT - return results - -def gen_params(user_id, params_meta): - params = dict() - r = random.Random(user_id) - net = kpov_util.IPv4_subnet_gen(r, '10.64.0.0/10', 24) - params['IP_DHCP'], params['IP_GW'] = kpov_util.IPv4_addr_gen(r, net, 2) - params['BOOT_FNAME'] = kpov_util.fname_gen(r) - params['TFTP_STRING'] = kpov_util.alnum_gen(r, 45) - return params - -def task_check(results, params): - import re - score = 0 - hints = [] - #TO FINISH SCORING WE REQUIRE DICT KEYS AND FUNCTIONS gen_params AND task TO BE FINISHED - #POINTS FOR EACH TASK MAY BE ADJUSTED IN THE FUTURE - if results['dhcping_other'].find(params['IP_DHCP']) >= 0: - score += 1 - else: - hints += ["DHCP wrong"] - if results['dhcping_SA'].find(params['IP_DHCP']) >= 0: - score += 1 - else: - hints += ["DHCP wrong"] - p = re.search(r"FNAME:(.*)\.\r", - results['dhcpdump_other_reply']) - if p is not None: - other_fname = p.group(1).strip() - else: - other_fname = '' - if other_fname == params['BOOT_FNAME']: - score += 3 - else: - hints += ["special fname wrong:" + other_fname] - p = re.search(r"FNAME:(.*)\.\r", - results['dhcpdump_SA_reply']) - if p is not None: - sa_fname = p.group(1).strip() - else: - sa_fname = '' - if sa_fname != params['BOOT_FNAME']: - score += 3 - else: - hints += ["fname wrong:" + sa_fname] - try: - special_tftp = "# " + params['TFTP_STRING'] - tftp_end = results['tftp_string'].split('\r\r\n')[-1] - assert tftp_end[:len(special_tftp)] == special_tftp - score += 2 - except: - hints += ["tftp wrong"] - return score, hints - -def prepare_disks(templates, task_params, global_params): - d = templates['student-DHCPServer'] - s = """# {}""".format(task_params['TFTP_STRING']) - d = templates['bootable_usb'] - d.write_append('/mnt/syslinux.cfg', s) - d = templates['simpleArbiterGW'] - s = """auto lo -iface lo inet loopback - -auto ens3 -iface ens3 inet dhcp - -auto enp0s3 -iface enp0s3 inet dhcp - -auto ens4 -iface ens4 inet static - address {IP_GW} - netmask 255.192.0.0 - -auto enp0s8 -iface enp0s8 inet static - address {IP_GW} - netmask 255.192.0.0 -""".format(IP_GW = task_params['IP_GW']) - d.write("/etc/network/interfaces", s) - write_default_config(templates['simpleArbiterGW'], global_params) diff --git a/kpov_judge/tasks/ldap_import/task.py b/kpov_judge/tasks/ldap_import/task.py deleted file mode 100644 index f8fdd60..0000000 --- a/kpov_judge/tasks/ldap_import/task.py +++ /dev/null @@ -1,106 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si':""" -<pre>Ustvari dva navidezna računalnika - SimpleArbiter z diskom simpleArbiterDhcp ter LDAPServer. -Na LDAPServer namesti strežnik LDAP. Na SimpleArbiter preberi ime domene DOMENA, -uporabniško ime BIND_DN ter geslo BIND_PASS. Poskrbi, da se bo lahko klient s simpleArbiterDhcp povezal na LDAP strežnik na LDAPServer. -V primeru, da se klient poveže kot BIND_DN z geslom BIND_PASS, naj strežnik omogoči branje vseh podatkov za objekte v -DC=DOMENA,DC=kpov,DC=lusy,DC=fri,DC=uni-lj,DC=si. Nato na LDAP strežniku poišči datoteko /home/test/users.txt. Vsaka vrstica -v datoteki vsebuje uporabniško ime, ime ter priimek, ločene s tabulatorji. V bazi LDAP -pod DC=DOMENA,DC=kpov,DC=lusy,DC=fri,DC=uni-lj,DC=si za vsako vrstico v users.txt ustvari svojega uporabnika.</pre> -""" -} - -computers = { - 'maliNetworkManager': { - 'disks': [ - { 'name': 'maliNetworkManager', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'maliBrezNetworkManager': { - 'disks': [ - { 'name': 'maliBrezNetworkManager', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterDhcp', - }, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'IP_NM': {'descriptions': {'si': 'Naslov maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'DNS_NM': {'descriptions': {'si': 'DNS za maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'IP_static': {'descriptions': {'si': 'Naslov maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, - 'DNS_static': {'descriptions': {'si': 'DNS za maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, -} - -def task(IP_NM, DNS_NM, IP_static, DNS_static): - from pexpect import pxssh - import pexpect - results = dict() - peer_user = 'student' - peer_passwd = 'vaje' - sA = pxssh.pxssh() - sB = pxssh.pxssh() - sA.login(IP_NM, peer_user, peer_passwd) - sB.login(IP_static, peer_user, peer_passwd) - # sA - # make sure NM is not handling eth0 - results['NM_nmcli'] = sA.run('nmcli d') - results['NM_nslookup'] = sA.run('nslookup www.arnes.si') - # sB - # check whether NM is handling eth0 - results['static_nmcli'] = sB.run('nmcli d') - results['static_nslookup'] = sB.run('nslookup www.arnes.si') - sA.logout() - sB.logout() - return results - -def gen_params(user_id, params_meta): - params = dict() - r = random.Random(user_id) - # IP_NM, DNS_NM, IP_static, DNS_static) - dns_servers = ['193.2.1.66', '193.2.1.72', '8.8.8.8', '8.8.4.4', '208.67.222.222', '208.67.220.220'] - net = kpov_util.IPv4_subnet_gen(r, '172.23.128.0/18', 24) - params['DNS_NM'] = r.choice(dns_servers) - params['IP_NM'], params['IP_static'] = kpov_util.IPv4_addr_gen(r, net, 2) - params['DNS_static'] = r.choice(dns_servers) - return params - -def task_check(results, params): - import re - score = -9 - hints = [] - if results['NM_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_NM'])) > -1: - score += 3 - if results['static_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_static'])) > -1: - score += 3 - if re.search(r'eth0 +802-.*connected', results['NM_nmcli']): - score += 2 - if not re.search(r'eth0 +802-.*connected', results['static_nmcli']): - score += 2 - score = 0 - return score, hints - -def prepare_disks(templates, task_params, global_params): - write_default_config(templates['simpleArbiterDhcp'], global_params) - diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic1.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic1.jpg Binary files differdeleted file mode 100644 index fecb706..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic1.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic2.1.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic2.1.jpg Binary files differdeleted file mode 100644 index 085f1cc..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic2.1.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic2.2.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic2.2.jpg Binary files differdeleted file mode 100644 index cb9975c..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic2.2.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic2.3.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic2.3.jpg Binary files differdeleted file mode 100644 index 1069e1a..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic2.3.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.1.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic3.1.jpg Binary files differdeleted file mode 100644 index 0c00ddd..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.1.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.2.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic3.2.jpg Binary files differdeleted file mode 100644 index d488e43..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.2.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.3.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic3.3.jpg Binary files differdeleted file mode 100644 index 2ea916c..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.3.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.4.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic3.4.jpg Binary files differdeleted file mode 100644 index 24db305..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.4.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.5.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic3.5.jpg Binary files differdeleted file mode 100644 index d2ff304..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.5.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.6.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic3.6.jpg Binary files differdeleted file mode 100644 index 0ab07d0..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.6.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.7.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic3.7.jpg Binary files differdeleted file mode 100644 index 44ca494..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.7.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.8.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic3.8.jpg Binary files differdeleted file mode 100644 index 855353b..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic3.8.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic4.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic4.jpg Binary files differdeleted file mode 100644 index 4aab71d..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic4.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic5.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic5.jpg Binary files differdeleted file mode 100644 index 07a60de..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic5.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic6.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic6.jpg Binary files differdeleted file mode 100644 index 48c6606..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic6.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic7.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic7.jpg Binary files differdeleted file mode 100644 index 58b8bdf..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic7.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/Pic8.jpg b/kpov_judge/tasks/ldap_search/howtos/en/Pic8.jpg Binary files differdeleted file mode 100644 index c9d053e..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/Pic8.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/en/index.html b/kpov_judge/tasks/ldap_search/howtos/en/index.html deleted file mode 100644 index 31bb1e9..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/en/index.html +++ /dev/null @@ -1,74 +0,0 @@ -<!DOCTYPE html>
-<html>
-<head>
- <title>ldap_search</title>
- <meta charset="utf-8">
-</head>
-<body>
-</body>
-<h1>ldap_search</h1>
-<h2>Purpose of the exercise</h2>
-<p>How to setup a LDAP Server, to add entries to a LDAP Server, and to change users' rights to be able to add entries and change the attributes of entries.</p>
-
-<h2>How To</h2>
-
-<ol>
- <li>Create two virtual machines, <b>SimpleArbiterDhcpGWLDAP</b>(simpleArbiterDhcpGWLDAP.vdi) and <b>LDAPServer</b>(student-LDAPServer.vdi).
- <br><img src="../images/Pic1.jpg" alt="No img" width=600 height=400></li>
- <br>
- <li>Change the network settings to both virtual machines. <b>SimpleArbiterDhcpGWLDAP</b>: Adapter 1 is set to "NAT" for internet access and
- adapter 2 to "internal network" for local network. <b>LDAPServer</b>: Adapter 1 set to "internal network" sot that it is in the same internal network as SimpleArbiterDhcpGWLDAP.
- <br><img src="../images/Pic2.1.jpg" alt="No img" width=600 height=400>
- <br><img src="../images/Pic2.2.jpg" alt="No img" width=600 height=400>
- <br><img src="../images/Pic2.3.jpg" alt="No img" width=600 height=400></li>
- <br>
- <li>In <b>SimpleArbiterDhcpGWLDAP</b> log in as user "tester", in <b>LDAPServer</b> log in as user "root", run the command <b>"apt-get update"</b> to update the list of packages and
- open up another terminal by pressing <b>"ALT+F2"</b> and log in as user "student".</li>
- <br>
- <li>In <b>LDAPServer</b> run the command <b>"apt-get install slapd ldap-utils"</b> to install these packages which are the LDAP server and tools to access and manage the LDAP server.
- <br>During the LDAP server installation you'll have to provide the password for the user "admin", the administrator of the server and confirm the password chosen.</li>
- <br>
- <li>Configure the LDAP server by choosing the appropriate domain name and other configuration parameters. Execute the commmand <b>"dpkg-reconfigure slapd"</b>.
- <br><img src="../images/Pic3.1.jpg" alt="No img" width=600 height=400>
- <br><img src="../images/Pic3.2.jpg" alt="No img" width=600 height=400>
- <br><img src="../images/Pic3.3.jpg" alt="No img" width=600 height=400>
- <br><img src="../images/Pic3.4.jpg" alt="No img" width=600 height=400>
- <br><img src="../images/Pic3.5.jpg" alt="No img" width=600 height=400>
- <br><img src="../images/Pic3.6.jpg" alt="No img" width=600 height=400>
- <br><img src="../images/Pic3.7.jpg" alt="No img" width=600 height=400>
- <br><img src="../images/Pic3.8.jpg" alt="No img" width=600 height=400>
- <br>a) If you will configure the <b>"slapd"</b> again don't forget to remove the old database <b>"rm -rf /var/backups/unknown-2.4.44+dfsg-2.ldapdb"</b>.</li>
- <br>
- <li>Now that the LDAP server is configured for use, try to open a third console and log in as user "student" and execute the command <b>"ldapsearch -D cn=admin,dc=ceres-20,dc=kpov,
- dc=lusy,dc=fri,dc=uni-lj,dc=si -W -b dc=ceres-20,dc=kpov,dc=lusy,dc=fri,dc=uni-lj,dc=si"</b>, which will show the entries in the server.
- <br>Because you will be using a lot the domain name to access the LDAP server you can set the environment variable "D", which will allow for quicker typing of commands.
- <br><b>"export D=dc=ceres-20,dc=kpov,dc=lusy,dc=fri,dc=uni-lj,dc=si"</b>
- <br><b>"ldapsearch -D cn=admin,$D -wvaje -b $D"</b></li>
- <br>
- <li>Create the file(LDIF format) "users.ldif" which will contain the objects(users) that we want to add to the LDAP server database.
- <br><img src="../images/Pic4.jpg" alt="No img" width=600 height=400>
- <br>Execute the following command to add users to the LDAP server:
- <br><b>"ldapadd -D cn=admin,$D -wvaje -f users.ldif"</b>
- <br>Add password to the users added to the LDAP server:
- <br><b>"ldappasswd -D cn=admin,$D -wvaje -sj2531e cn=ninavidmar,ou=users,$D"</b>
- <br><b>"ldappasswd -D cn=admin,$D -wvaje -scTyRM0 cn=natalijaribnikar39,ou=users,$D"</b>
- <br>Execute command <b>"ldapsearch -D cn=natalijaribnikar39,ou=users,$D -wcTyRM0 -b $D"</b> to bind to the LDAP server with the newly added user <b>"natalijaribnikar39"</b> and to see the entries currently in the LDAP server.
- <br><img src="../images/Pic5.jpg" alt="No img" width=600 height=400></li>
- <br>
- <li>In order to change the users' rights settings, which allows a user to add entries to the directory and change values of attributes of entries in the directory you need to create an additional file acl.ldif:
- <br>To see which backend database is used and other settings related to the users' rights execute command <b>"ldapsearch -Y EXTERNAL -H ldapi:/// -b cn=config"</b> as root user in the system, which does not need the user authentication to the LDAP server.
- <br><img src="../images/Pic6.jpg" alt="No img" width=600 height=400>
- <br>The settings in the acl.ldif file:
- <br><img src="../images/Pic7.jpg" alt="No img" width=600 height=400>
- <br>Now to change users' rights run the command <b>"ldapmodify -Y EXTERNAL -H ldapi:/// -f acl.ldif"</b> as user "root" in the system.</li>
- <br>
- <li>The user <b>"natalijaribnikar39"</b> has the right to add or change objects in the LDAP server.
- <br>Now try to bind to the LDAP server using <b>"natalijaribnikar39"</b> user's credentials and add a new user to the server directory.
- <br><b>"ldapadd -D cn=natalijaribnikar39,ou=users,$D -wcTyRM0 -f newuser.ldif"</b></li>
- <br>
- <li>Now to test your result go to the <b>SimpleArbiterDhcpGWLDAP</b> virtual machine and run <b>"./test_task.py"</b> to run the test and see your score.
- <br><img src="../images/Pic8.jpg" alt="No img" width=600 height=400></li>
-
-</ol>
-
-</html>
diff --git a/kpov_judge/tasks/ldap_search/howtos/images/1.png b/kpov_judge/tasks/ldap_search/howtos/images/1.png Binary files differdeleted file mode 100644 index f4edca8..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/1.png +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/2.png b/kpov_judge/tasks/ldap_search/howtos/images/2.png Binary files differdeleted file mode 100644 index 4d4ebb5..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/2.png +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic1.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic1.jpg Binary files differdeleted file mode 100644 index fecb706..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic1.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic2.1.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic2.1.jpg Binary files differdeleted file mode 100644 index 085f1cc..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic2.1.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic2.2.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic2.2.jpg Binary files differdeleted file mode 100644 index cb9975c..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic2.2.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic2.3.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic2.3.jpg Binary files differdeleted file mode 100644 index 1069e1a..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic2.3.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.1.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic3.1.jpg Binary files differdeleted file mode 100644 index 0c00ddd..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.1.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.2.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic3.2.jpg Binary files differdeleted file mode 100644 index d488e43..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.2.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.3.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic3.3.jpg Binary files differdeleted file mode 100644 index 2ea916c..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.3.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.4.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic3.4.jpg Binary files differdeleted file mode 100644 index 24db305..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.4.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.5.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic3.5.jpg Binary files differdeleted file mode 100644 index d2ff304..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.5.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.6.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic3.6.jpg Binary files differdeleted file mode 100644 index 0ab07d0..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.6.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.7.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic3.7.jpg Binary files differdeleted file mode 100644 index 44ca494..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.7.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.8.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic3.8.jpg Binary files differdeleted file mode 100644 index 855353b..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic3.8.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic4.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic4.jpg Binary files differdeleted file mode 100644 index 4aab71d..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic4.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic5.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic5.jpg Binary files differdeleted file mode 100644 index 07a60de..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic5.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic6.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic6.jpg Binary files differdeleted file mode 100644 index 48c6606..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic6.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic7.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic7.jpg Binary files differdeleted file mode 100644 index 58b8bdf..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic7.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/images/Pic8.jpg b/kpov_judge/tasks/ldap_search/howtos/images/Pic8.jpg Binary files differdeleted file mode 100644 index c9d053e..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/images/Pic8.jpg +++ /dev/null diff --git a/kpov_judge/tasks/ldap_search/howtos/si/index.html b/kpov_judge/tasks/ldap_search/howtos/si/index.html deleted file mode 100644 index 7370099..0000000 --- a/kpov_judge/tasks/ldap_search/howtos/si/index.html +++ /dev/null @@ -1,23 +0,0 @@ -<html> -<head> -<meta http-equiv=Content-Type content="text/html; charset=utf-8"> -</head> -<body> -<h1>Naloga: ldap search</h1> -<p> -<h2>Povzetek naloge</h2> -Ustvari 2 virtualna sistema SimpleArbiterDhcp ter LDAPServer ter se s SimpleArbiterDhcp povezi na LDAP server na drugem virtualnem sistemu. Ustvari uporabnika. -</p> -<p> -<h2>Navodila</h2> - 1. Prenesite disk SimpleArbiterDhcp preko imenika s diski virtualnih naprav. - 2. V Virtualbox ustvarite nov racunalnik SimpleArbiterDhcp in uporabite prenešen disk.(Slika 1) - 3. Prav tako naredi drugi virtualni sistem poimenovan LDAPServer. - 4. Na oba sistema se prijavi kot uporabnik "root" z geslom "kaboom". - 5. Na sistemi LDAPServer namesti LDAP z ukazom 'apt-get install ldap-utils.(Slika 2) - 6. Po prenosu vkljucite LDAP server. - 7. S sistema SimpleArbiterDhcp se povezi na LDAP streznik na sistemu LDAPServer. - 8. Ustvari uporabnika na LDAP serverju. -</p> -</body> -</html> diff --git a/kpov_judge/tasks/ldap_search/task.py b/kpov_judge/tasks/ldap_search/task.py deleted file mode 100644 index 29117db..0000000 --- a/kpov_judge/tasks/ldap_search/task.py +++ /dev/null @@ -1,210 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -# Poveži se na strežnik LDAP prek spletnega vmesnika. Ustvari uporabnika z danim imenom in geslom. -# Napiši skripto, ki izpiše podatke o tem uporabniku z ldapsearch. - -# TODO: finish this! -instructions = { - 'si': '''\ -<p> -Ustvari dva navidezna računalnika: <em>SimpleArbiter</em> in <em>LDAPServer</em>. - -<p> -Na <em>LDAPServer</em> namesti strežnik LDAP. Strežnik naj skrbi za domeno - -<pre><code>DC={{DOMAIN}},DC=kpov,DC=lusy,DC=fri,DC=uni-lj,DC=si</code></pre> - -<p> -V imeniku ustvari uporabnika - -<pre><code>CN={{LDAP_USERNAME}},ou=users,DC={{DOMAIN}},DC=kpov,DC=lusy,DC=fri,DC=uni-lj,DC=si</code></pre> - -<p> -z geslom <code>{{LDAP_PASSWORD}}</code> in uporabnika - -<pre><code>CN={{BIND_USERNAME}},ou=users,DC={{DOMAIN}},DC=kpov,DC=lusy,DC=fri,DC=uni-lj,DC=si</code></pre> - -<p> -z geslom <code>{{BIND_PASSWORD}}</code>. - -<p> -Poskrbi, da se bo lahko klient s <em>SimpleArbiter</em> povezal na LDAP strežnik na <em>LDAPServer</em>. -V primeru, da se klient poveže kot <code>{{BIND_USERNAME}}</code> z geslom <code>{{BIND_PASSWORD}}</code>, -naj strežnik omogoči spreminjanje podatkov za objekt - -<pre><code>CN={{LDAP_USERNAME}},ou=users,DC={{DOMAIN}},DC=kpov,DC=lusy,DC=fri,DC=uni-lj,DC=si</code></pre> - -<p> -ter ustvarjanje novih objektov v - -<pre><code>DC={{DOMAIN}},DC=kpov,DC=lusy,DC=fri,DC=uni-lj,DC=si - -CN = Common Name -O = Organization -OU = Organizational Unit -DC = Domain Component -</code></pre> -''', - 'en': '''\ -<p> -Create two virtual machines: <em>SimpleArbiter</em> and <em>LDAPServer</em>. - -<p> -Set up an LDAP server on <em>LDAPServer</em>. Make it responsible for - -<pre><code>DC={{DOMAIN}},DC=kpov,DC=lusy,DC=fri,DC=uni-lj,DC=si</code></pre> - -<p> -Create a user - -<pre><code>CN={{LDAP_USERNAME}},ou=users,DC={{DOMAIN}},DC=kpov,DC=lusy,DC=fri,DC=uni-lj,DC=si</code></pre> - -<p> -with the password <code>{{LDAP_PASSWORD}}</code>, and a user - -<pre><code>CN={{BIND_USERNAME}},ou=users,DC={{DOMAIN}},DC=kpov,DC=lusy,DC=fri,DC=uni-lj,DC=si</code></pre> - -<p> -with the password <code>{{LDAP_PASSWORD}}</code> . - -<p> -Make sure that a client from <em>SimpleArbiter</em> can connect to the LDAP server on <em>LDAPServer</em>. If the client identifies themself as <code>{{BIND_USERNAME}}</code> with the password <code>{{BIND_PASSWORD}}</code>, allow it to change data for the object - -<pre><code>CN={{LDAP_USERNAME}},ou=users,DC={{DOMAIN}},DC=kpov,DC=lusy,DC=fri,DC=uni-lj,DC=si</code></pre> - -<p> -and to create objects in - -<pre><code>DC={{DOMAIN}},DC=kpov,DC=lusy,DC=fri,DC=uni-lj,DC=si - -CN = Common Name -O = Organization -OU = Organizational Unit -DC = Domain Component -</code></pre> -''', -} - -computers = { - 'LDAPServer': { - 'disks': [ - { 'name': 'student-LDAPServer', - }, - #{ 'name': 'CDROM', - # 'options':{'readonly': True}, - # 'parts': [],# no parts, no mounting. - #} - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterDhcpGWLDAP', - # attempt automount - }, - #{ 'name': 'CDROM', - # 'options': {'readonly': True}, - # 'parts': [{'dev': 'b1', 'path': '/cdrom'}], - #}, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'LDAP_IP': {'descriptions': {'si': 'IP strežnika', 'en': 'Server IP'}, 'w': True, 'public':True, 'type': 'IP', 'generated': False}, - 'DOMAIN': {'descriptions': {'si': 'Domena (poddomena kpov.lusy.fri.uni-lj.si)', 'en': 'Domain (subdomain of kpov.lusy.fri.uni-lj.si)'}, 'w': False, 'public':True, 'type': 'username', 'generated': True}, - 'LDAP_USERNAME': {'descriptions': {'si': 'Uporabniško ime v LDAP', 'en': 'Username in LDAP'}, 'w': False, 'public':True, 'type': 'username', 'generated': True}, - 'LDAP_PASSWORD': {'descriptions': {'si': 'Geslo v LDAP', 'en': 'LDAP password'}, 'w': False, 'public':True, 'type': 'password', 'generated': True}, - 'BIND_USERNAME': {'descriptions': {'si': 'Uporabniško ime za dostop do LDAP (bind)', 'en': 'Bind username in LDAP'}, 'w': False, 'public':True, 'type': 'username', 'generated': True}, - 'BIND_PASSWORD': {'descriptions': {'si': 'Geslo za dostop do LDAP (bind)', 'en': 'Bind password in LDAP'}, 'w': False, 'public':True, 'type': 'password', 'generated': True}, -} - -def task(LDAP_IP, DOMAIN, LDAP_USERNAME, LDAP_PASSWORD, BIND_USERNAME, BIND_PASSWORD): - from pexpect import pxssh - import pexpect - results = dict() - FULLDOMAIN = "dc={DOMAIN},dc=kpov,dc=lusy,dc=fri,dc=uni-lj,dc=si".format( - **locals()) - BIND_DN = "cn={BIND_USERNAME},ou=Users,{FULLDOMAIN}".format(**locals()) - s = "ldapsearch -D {BIND_DN} -b {FULLDOMAIN} -w {BIND_PASSWORD}\ - -h {LDAP_IP}".format( - **locals()) - results['ldapsearch_before'] = pexpect.run(s) - s = "ldapmodify -D {BIND_DN} -w {BIND_PASSWORD} -h {LDAP_IP}".format( - **locals()) - modify = pexpect.spawn(s) - FORTUNE = kpov_util.hostname_gen(random.Random(str(LDAP_USERNAME))) - results['fortune'] = FORTUNE - s1 = """ -dn: cn={LDAP_USERNAME},ou=Users,{FULLDOMAIN} -changetype: modify -replace: description -description: {FORTUNE} -""".format(**locals()) - modify.write(s1) - modify.sendeof() - modify.expect(pexpect.EOF) - results['modify'] = modify.before - s = "ldapsearch -D {BIND_DN} -b {FULLDOMAIN} -w {BIND_PASSWORD}\ - -h {LDAP_IP}".format(**locals()) - results['ldapsearch_after'] = pexpect.run(s) - return results - -def gen_params(user_id, params_meta): - params = dict() - r = random.Random(user_id) - params['DOMAIN'] = kpov_util.hostname_gen(r) - params['LDAP_USERNAME'] = kpov_util.username_gen(r) - params['LDAP_PASSWORD'] = kpov_util.alnum_gen(r, 6) - params['BIND_USERNAME'] = kpov_util.username_gen(r) - params['BIND_PASSWORD'] = kpov_util.alnum_gen(r, 6) - return params - -def task_check(results, params): - import re - score = 0 - hints = [] - s = """.*dn: dc={DOMAIN},dc=kpov,dc=lusy,dc=fri,dc=uni-lj,dc=si\r[^#]* -objectClass: top\r -objectClass: dcObject\r -objectClass: organization\r -.*""".format(**params) -#dc: {DOMAIN}\r - if re.match(s, results['ldapsearch_before'], re.DOTALL): - score += 2 - else: - hints += ["domain missing in ldapsearch result"] - s = ".*cn: {}.*".format(re.escape(params['LDAP_USERNAME'])) - if re.search(s, results['ldapsearch_before']): - score += 2 - else: - hints += ["LDAP_USERNAME missing in: " + s + str(results['ldapsearch_before'])] - fortune = kpov_util.hostname_gen(random.Random(str(params['LDAP_USERNAME']))) - s = ".*cn: {0}.*description: {1}.*".format( - re.escape(params['LDAP_USERNAME']), re.escape(fortune)) - if re.match(s, results['ldapsearch_after'], re.DOTALL): - score += 2 - else: - hints += ["description missing after update:" + fortune + "\n" + s + str(results['modify']) + str(results['ldapsearch_after'])] - if results['ldapsearch_before'][:100] == results['ldapsearch_after'][:100]: - score += 2 - else: - hints += ["ldapsearch before equals after. This should not happen."] - s = '.*\r\nmodifying entry "cn={LDAP_USERNAME},ou=Users,dc={DOMAIN},dc=kpov,dc=lusy,dc=fri,dc=uni-lj,dc=si".*'.format( - **params) - if re.match(s, results['modify'], re.DOTALL): - score += 2 - else: - hints += ['Modify error' + s + str(results['modify'])] - return score, hints - -def prepare_disks(templates, task_params, global_params): - write_default_config(templates['simpleArbiterDhcpGWLDAP'], global_params) diff --git a/kpov_judge/tasks/mock_entrance_exam/howtos/en/index.html b/kpov_judge/tasks/mock_entrance_exam/howtos/en/index.html deleted file mode 100644 index e69de29..0000000 --- a/kpov_judge/tasks/mock_entrance_exam/howtos/en/index.html +++ /dev/null diff --git a/kpov_judge/tasks/mock_entrance_exam/howtos/images/SimpleArbiter-interface1.jpg b/kpov_judge/tasks/mock_entrance_exam/howtos/images/SimpleArbiter-interface1.jpg Binary files differdeleted file mode 100644 index 8953de7..0000000 --- a/kpov_judge/tasks/mock_entrance_exam/howtos/images/SimpleArbiter-interface1.jpg +++ /dev/null diff --git a/kpov_judge/tasks/mock_entrance_exam/howtos/images/SimpleArbiter-interface2.jpg b/kpov_judge/tasks/mock_entrance_exam/howtos/images/SimpleArbiter-interface2.jpg Binary files differdeleted file mode 100644 index 4eeb5e0..0000000 --- a/kpov_judge/tasks/mock_entrance_exam/howtos/images/SimpleArbiter-interface2.jpg +++ /dev/null diff --git a/kpov_judge/tasks/mock_entrance_exam/howtos/images/SimpleArbiter.jpg b/kpov_judge/tasks/mock_entrance_exam/howtos/images/SimpleArbiter.jpg Binary files differdeleted file mode 100644 index 4df497e..0000000 --- a/kpov_judge/tasks/mock_entrance_exam/howtos/images/SimpleArbiter.jpg +++ /dev/null diff --git a/kpov_judge/tasks/mock_entrance_exam/howtos/images/student-entrance-interface1.jpg b/kpov_judge/tasks/mock_entrance_exam/howtos/images/student-entrance-interface1.jpg Binary files differdeleted file mode 100644 index 3174913..0000000 --- a/kpov_judge/tasks/mock_entrance_exam/howtos/images/student-entrance-interface1.jpg +++ /dev/null diff --git a/kpov_judge/tasks/mock_entrance_exam/howtos/images/student-entrance-interface2.jpg b/kpov_judge/tasks/mock_entrance_exam/howtos/images/student-entrance-interface2.jpg Binary files differdeleted file mode 100644 index 5679dae..0000000 --- a/kpov_judge/tasks/mock_entrance_exam/howtos/images/student-entrance-interface2.jpg +++ /dev/null diff --git a/kpov_judge/tasks/mock_entrance_exam/howtos/images/student-entrance.jpg b/kpov_judge/tasks/mock_entrance_exam/howtos/images/student-entrance.jpg Binary files differdeleted file mode 100644 index 4df497e..0000000 --- a/kpov_judge/tasks/mock_entrance_exam/howtos/images/student-entrance.jpg +++ /dev/null diff --git a/kpov_judge/tasks/mock_entrance_exam/howtos/si/index.html b/kpov_judge/tasks/mock_entrance_exam/howtos/si/index.html deleted file mode 100644 index f10bcf1..0000000 --- a/kpov_judge/tasks/mock_entrance_exam/howtos/si/index.html +++ /dev/null @@ -1,82 +0,0 @@ -<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <title>Preparation_mock_entrance_exam_HowTo</title>
-</head>
-<body><span style="font-family: Georgia, Times New Roman, Times, serif; ">
- <strong><h1>MOCK ENTRANCE EXAM - HOWTO</h1></strong>
-
-<h2>1) POSTAVITEV VIRTUALK</h2>
-
-Najprej prenesi obe sliki za virtualki iz sistema kpov-judge, 2. naloga. Če se sliki ne naložita takoj, malo počakaj in osveži stran.
-Ustvari novo virtualko imenovano "Student", tip je načeloma "Linux" ter verzija "Ubuntu (64-bit)" - lahko pa je tudi karkoli drugega. Določi ustrezno količino pomnilnika, ki bo na voljo napravi, izberi možnost rabe obstoječe slike navidezne naprave ter izberi prenešeno datoteko "student-entrance.vdi". Klikni ustvari. <br> <img src="../images/student-entrance.jpg" alt="ni slike" width="600" height="400"></li> <br>
-Prejšnji postopek ponovi še za "SimpleArbiter", "Linux", "Ubuntu (64-bit)", "simplearbiter.vdi". <br> <img src="../images/SimpleArbiter.jpg" alt="ni slike" width="600" height="400"></li> <br>
-
-<h2>2) OMREŽNE NASTAVITVE VIRTUALK</h2>
-
-V navodilih naloge lahko vidimo, da morata biti obe virtualki povezani v internet ter povezani med seboj prek nekega notranjega omrežja.
-Na "SimpleArbiter" nastavimo pod Settings->Network->Adapter 1; Enable network adapter "check", Attached to: NAT. ->Adapter 2; Enable network adapter "check", Atached to: Internal Network. <br> <img src="../images/SimpleArbiter-interface1.jpg" alt="ni slike" width="600" height="400"></li> <img src="../images/SimpleArbiter-interface2.jpg" alt="ni slike" width="600" height="400"></li> <br>
-Na "Student" je postopek nastavitve enak kot na "SimpleArbiter". <br> <img src="../images/student-entrance-interface1.jpg" alt="ni slike" width="600" height="400"></li> <img src="../images/student-entrance-interface2.jpg" alt="ni slike" width="600" height="400"></li> <br>
-
-OPOMBA: Pozoren je treba biti, da sta oba vmesnika, ki sta povezana na notranje omrežje (Internal Nerwork) povezana preko istega omrežja, npr. "intnet".
-
-<h2>3) ZAGON VIRTUALK IN POSOTPEK NALOGE</h2>
-
-SA - SimpleArbiter
-STUD - Student
-
-Najprej zaženemo obe vritualki, to storimo s klikom na gumb start.
-Na SA se prijavimo z uporabniškim imenom "tester" ter geslom "tester"
-
-<h3>3.1) POSKRBIMO ZA MREŽO</h3>
-
-<h4>3.1.1) SPREMEMGA GESLA ZA ROOT</h4>
-
-Z uporabo ukaza /sbin/ifconfig preverimo, ali so vmesniki pravilno nastavljeni. Kaj kmalu ugotovimo, da je na SA aktiven samo en vmesnik. Za nastavljanje omesnikov moramo najprej postati "root", torej uporabnik, ki ima pooblastila za urejanje sistemskih nastavitev.
-Najprej ponovno zaženemo virtualko: "sudo reboot", potrdimo z geslom "tester".
-V GRUB meniju (zagonski meni) nato pritisnemo tipko "e", ki omogoča spreminjanje ukazov pred zagonom. Vrstico "53d ro" spremenimo v "53d rw init=/bin/bash". Pritisnemo "F10" in sprožimo zagon naprave.
-Sedaj lahko kot super uporabnik zamenjaš geslo za root, to storiš z ukazom "passwd", sistem te nato vpraša za novo geslo, po vnosu pa še za potrditev gesla. Geslo je uspešno spremenjeno, spremembe pa je potrebno še shraniti na disk, to storiš z ukazom "mount -o remount,ro /", izvedi še ukaz "sync", da se podatki res zapišejo na disk. Sedaj lahko virtualko ponovno zaženeš kar iz Machine->Reset.
-
-<h4>3.1.2) NASTAVIMO OMREŽNE VMESNIKE</h4>
-
-V virtualko SA se sedaj prijavimo kot uporabnik "root" ter s spremenjenim geslom "karsinastavil".
-Sedaj spremenimo nastavitve omrežnih vmesnikov tako, da bodo naslovi ustrezali tistim v navodilih. Izvedemo ukaz "ifconfig enp0s8 10.0.2.129 netmask 255.255.255.128 up"
-Preklopimo na virtualko STUD (uporabnik "root", geslo "kaboom") ter izvedemo podoben ukaz "ifconfig enp0s8 10.0.2.X netmassk 255.255.255.128", kjer je X podatek iz navodil naloge.
-Notranje omrežje testiramo tako, da pošljemo ping iz SA do STUD z ukazom "ping NASLOV", kjer je NASLOV omrežni naslov na STUD, ki je povezan na notranje omrežje (nastavitev iz prejšnjega koraka).
-SUPER, omrežje deluje, gremo naprej. Če ne deluje, preveri pravilnost naslovov na SA in STUD, bodi pozoren na dolžino maske ter na morebitne zatipke.
-
-<h3>3.2) "ZLONAMERNI" PROGRAM</h3>
-
-V navodilih naloge je podano ime programa, ki naj bi ob svojem zagonu pokvaril nastavitve omrežnih vmesnikov na STUD. Z ukazom "ps xa | grep IMEPROGRAMA" preverimo, če se program izvaja. V izpisu ugotovimo, da se najvrjetneje ne izvaja, zato lahko zadevo ignoriramo. Če bi se program izvajal, bi bilo potrebno ukrepati ter ga na nek način izbrisati oz. mu onemogočiti spreminjanje omrežnih vmesnikov (najlažje bi bilo uporabiti ukaz "kill", ki kot argument prejme PID (prvi stolpec prejšnjega izpisa) ter konča izvajanje tega procesa). Več o ukazu "kill" si preberi na spletu!
-
-<h3>3.3) PREVAJANJE PROGRAMA</h3>
-
-Najprej si odpremo novo konzolo na STUD "alt+F2" ter se prijavimo kot "student" z geslom "vaje".
-Z ukazom "ls" preverimo vsebino domačega direktorija uporabnika student. Izpisati bi se morala datoteka, ki jo imamo podano v navodilih. To datoteko moramo najprej odpreti z ukazom "vim IMEDATOTEKE". Datoteko moramo sedaj popraviti tako, da odstranimo odvečne črke, to storimo tako, da izvedemo ukaz ":%s/[QXW]*//g", sedaj izvedemo še ":syn on" in si obarvamo kodo. Izhod iz urejevalnika ":wq".
-Ta program sedaj z ukazom "gcc IMEPREVEDENEGAPROGRAMA IMEDATOTEKE" prevedemo v nov program, kjer je IMEPREVEDENEGAPROGRAMA izhodni program, katerega ime je prav tako podano v navodilih, IMEDATOTEKE pa ime pravkar popravljene datoteke.
-
-<h3>3.4) SKRIPTA</h3>
-
-Sedaj bomo napisali nov program/skripto, uporabimo urejevalnik nano; "nano IMESKRIPTE", kjer je IMESKRIPTE podano v navodilih naloge.
-V skripto zapišemo sledeče;<br>
- <br>
-----BREZ TE VRSTICE-------<br>
- <br>
-#!/bin/bash<br>
-<br>
-echo -n $SPREMENLJIVKA | /home/student/IMEPREVEDENEGAPROGRAMA "argument" 2> /home/student/IMEDATOTEKE_STDERR | grep "ma" > /home/student/IMEDATOTEKE_STDOUT<br>
- <br>
-----BREZ TE VRSTICE-------<br>
- <br>
-Datoteko shranimo "ctrl+x" ter potrdimo z "y" in enter.
-Datoteko sedaj spremenimo v program "chmod +x IMESKRIPTE"
-
-<h2>4) TESTIRANJE NALOGE</h2>
-
-Preklopimo nazaj na SA ter odpremo novo konzolo "alt+F2", vpišemo se kot uporabnik "tester" z geslom "tester" in poženemo program "./test_task.py"
-Izpolnimo vsa polja; URL "https://kpov.fri.uni-lj.si/kpov_judge/tasks", vpišemo svoje uporabniško ime in geslo (za dostop do KPOV-JUDGE preko učilnice) npr. "jn1234@student.uni-lj.si geslozaucilnico", ime naloge "02-preparation-mock_entrance_exam". Sedaj se pojavijo še vaši vhodni in izhodni podatki za nalogo, preverite, če so pravilni; datoteka z izhodom, IP naslov SA, ime spremenljivke, ime "zlonamernega" programa, datoteka z napakami ter neko naljučno seme itd.
-Če program vrne 10 OK je naloga uspešno opravljena, sicer pa vrne število doseženih točk ter napako.
- </span>
-</body>
-</html>
diff --git a/kpov_judge/tasks/mock_entrance_exam/task.py b/kpov_judge/tasks/mock_entrance_exam/task.py deleted file mode 100644 index ad51c2a..0000000 --- a/kpov_judge/tasks/mock_entrance_exam/task.py +++ /dev/null @@ -1,313 +0,0 @@ -# TODO: -# - check if everything is filled in (computers, params, preparation) -# - improve scoring -# - test -# - switch to a real SSH/SFTP client to properly handle filenames - -instructions = { - 'si': '''\ -<p> -Postavite dva navidezna računalnika - <em>SimpleArbiter</em> in <em>Student</em>. Oba naj bosta povezana na internet. Poleg tega mora biti <em>Student</em> na naslovu {{student_IP}} dostopen s <em>SimpleArbiter</em>. - -<p> -Računajte, da se na <em>Student</em> ob zagonu zažene program {{net_prog_name}}, ki vam spreminja nastavitve mrežne kartice. - -<p> -V domačem imeniku uporabnika <code>student</code> obstaja program <code>{{P_c}}</code> v programskem jeziku C. -Prevedite ga v program z imenom <code>{{P_executable}}</code>. Izvorna koda je namenoma pokvarjena tako, da so vanjo vrinjeni nepotrebni znaki. Pred prevajanjem jo morate popraviti. - -<p> -Napišite skripto ali program <code>{{P_script}}</code> v domačem imeniku uporabnika <code>student</code>, ki: - -<ul> -<li>požene <code>{{P_executable}}</code> z argumentom <code>"{{arg_c}}"</code> in mu na standardni vhod pripelje vrednost spremenljivke <code>{{env_c}}</code>; -<li>vse, kar <code>{{P_executable}}</code> izpiše na stderr, spravi v datoteko <code>{{out_stderr_c}}</code>; in -<li>vse vrstice, ki jih <code>{{P_executable}}</code> izpiše na stdout in vsebujejo zaporedje znakov <code>ma</code>, zapiše v <code>{{out_stdout_c}}</code>. -</ul> - -<p> -Lastnik vseh ustvarjenih datotek mora biti uporabnik <code>student</code>. Gesla uporabnika <code>student</code> (<code>vaje</code>) ne smete spreminjati. -''', - 'en': '''\ -<p> -Set up two virtual machines - <em>SimpleArbiter</em> and <em>Student</em>. Both should be connected to the internet. <em>Student</em> should also be accessible from <em>SimpleArbiter</em> at the address <code>{{student_IP}}</code>. - -<p> -Keep in mind that a program called <code>{{net_prog_name}}</code> starts on <em>Student</em> on each boot. This program may change your network settings. - -<p> -There is a program called <code>{{P_c}}</code> in <code>student</code>’s home directory. Compile it into a program called <code>{{P_executable}}</code>. The source code is intentionally broken so that unneccessarry characters are inserted into the file. You have to fix the file before compiling. - -<p> -Also, write a script or program called <code>{{P_script}}</code> in <code>student</code>’s home directory. The script should: - -<ul> -<li>run <code>{{P_executable}}</code> with the argument <code>{{arg_c}}</code> and pipe the value of the environment variable <code>{{env_c}}</code> into <code>{{P_executable}}</code>’s standard input; -<li>redirect stderr of <code>{{P_executable}}</code> into a file called <code>{{out_stderr_c}}</code>; and -<li>save each line which <code>{{P_executable}}</code> outputs and which contains the character sequence <code>ma</code> into <code>{{out_stdout_c}}</code>. -</ul> - -<p> -The owner of all created files should be <code>student</code>. You are not allowed to change <code>student</code>’s password (<code>vaje</code>). -''', -} - -computers = { - 'SimpleArbiter': { - 'disks': [ - { - 'name': 'simpleArbiter', - }, - ], - 'network_interfaces': [ - {'network': 'net1'}, - {'network': 'net2'}, - ], - 'flavor': 'm1.tiny', - 'config_drive': True, - }, - 'Student': { - 'disks': [ - {'name': 'student-entrance'} - ], - 'flavor': 'm1.tiny', - 'network_interfaces': [{'network': 'net1'}, {'network': 'net3'}], - 'config_drive': True, - } -} - -networks = { - 'net1': { - 'public': False, - }, - 'net2': { - 'public': True, - }, - 'net3': { - 'public': True, - } -} - -params_meta = { - 'student_IP': { - 'descriptions': { 'si': 'IP naslov SimpleStudent', 'en': 'IP address of SimpleStudent', - }, 'w': False, 'public': True, 'type': 'IP', 'generated': True, - }, - 'net_prog_name': { - 'descriptions': { 'si': 'Ime programa, ki ponastalvlja naslov', 'en': 'The name of the program resetting the network' - }, 'w': False, 'public': True, 'type': 'filename', 'generated': True, - }, - 'P_c': { - 'descriptions': { 'si': 'Datoteka s programom v C', 'en': 'Filename of the program in C', - }, 'w': False, 'public': True, 'type': 'filename', 'generated': True, - }, - 'P_executable': { 'descriptions': { 'si': 'Ime prevedenega programa v C', 'en': 'Filename of the compiled C program' - }, 'w': False, 'public': True, 'type': 'filename', 'generated': True, - }, - 'arg_c': { - 'descriptions': { 'si': 'Vrednost argumenta', 'en': 'Argument value', - }, 'w': False, 'public': True, 'type': 'short_text', 'generated': True, - }, - 'env_c': { - 'descriptions': { 'si': 'Ime okoljske spremenljivke', 'en': 'The name of the environment environment', - }, 'w': False, 'public': True, 'type': 'short_text', 'generated': True, - }, - 'out_stderr_c': { - 'descriptions': { 'si': 'Datoteka z napakami', 'en': 'File to store errors', - }, 'w': False, 'public': True, 'type': 'filename', 'generated': True, - }, - 'P_script': { - 'descriptions': { 'si': 'Ime skripte', 'en': 'Filename of the script', - }, 'w': False, 'public': True, 'type': 'filename', 'generated': True, - }, - 'out_stdout_c': { - 'descriptions': { 'si': 'Datoteka z izhodom', 'en': 'File to store the output', - }, 'w': False, 'public': True, 'type': 'filename', 'generated': True, - }, - 'param_gen_seed': { - 'descriptions': { 'si': 'Nakljucno seme', 'en': 'Random seed', - }, 'w': False, 'public': True, 'type': None, 'generated': True, - }, - 'c_destroy_gen_seed': { - 'descriptions': { 'si': 'Nakljucno seme za kvarjenje kode v C', 'en': 'Random seed for destroying the C code', - }, 'w': False, 'public': False, 'type': None, 'generated': True, - } - -} - -def task(student_IP, net_prog_name, - P_c, P_executable, arg_c, env_c, out_stderr_c, out_stdout_c, P_script, - param_gen_seed): - import random - - r = random.Random(int(param_gen_seed)) - env_val = "".join([r.choice('ABCDEFGHIJKLMNPRSTUVZ012345') for i in range(11)]) - arg_val = "".join([r.choice('ABCDEFGHIJKLMNPRSTUVZ012345') for i in range(13)]) - stdin_val = "".join([r.choice('ABCDEFGHIJKLMNPRSTUVZ012345') for i in range(17)]) - - return kpov_util.ssh_test(student_IP, 'student', 'vaje', ( - ('script_ls', 'ls -l {}'.format(P_script)), - ('executable_ls', 'ls -l {}'.format(P_executable)), - ('script_run', 'export {}={}; {}'.format(env_c, env_val, P_script)), - ('script_stderr', 'cat {}'.format(out_stderr_c)), - ('script_stdout', 'cat {}'.format(out_stdout_c)), - ('prog_stdout', 'echo "{}" | {} "{}" 2> /dev/null'.format(stdin_val, P_executable, arg_val)), - ('prog_stderr', 'echo "{}" | {} "{}" > /dev/null'.format(stdin_val, P_executable, arg_val)), - )) - -def gen_params(user_id, params_meta): - import random - r = random.Random(user_id+'evil cornholio') - params = kpov_util.default_gen(user_id, params_meta) - homedir = '/home/student/' - params['env_c'] = "".join([r.choice('ABCDEFGHIJKLMNPRSTUVZ') for i in range(5)]) - params['P_c'] = "".join([r.choice('abcdefghijklmnoprst') for i in range(5)]) + ".c" - params['param_gen_seed'] = str(r.randint(0, 2**24)) - params['c_destroy_gen_seed'] = str(r.randint(0, 2**24)) - dest_net = kpov_util.IPv4_subnet_gen(r, '10.0.2.128/26', 26) - params['student_IP'] = kpov_util.IPv4_addr_gen(r, dest_net)[0] - for k in ['P_c', 'P_executable', 'out_stderr_c', 'P_script', 'out_stdout_c']: - params[k] = homedir + params[k] - return params - -def task_check(results, params): - import os - def test_out_gen(arg, var): - s_out = "" - s_err = "" - r = 0 - arg_len = len(arg) - env_len = len(var) - for i in range(100): - s_out += chr(32 + ((ord(arg[i % arg_len]) ^ ord(var[i % env_len])) % 64)) - r += ord(arg[i % arg_len]) + ord(var[i % env_len]) + i; - if (i % 17 == 0): - s_out += "RAUS\r\n"; - if (i % 29 == 0): - s_out += 'ma' - s_err += chr((r % 31) + ord('A')); - if (i % 23 == 0): - s_err += "PATACIS\r\n" - retval = r % 16 - s_err += '\r\n' - s_out += '\r\n' - return(s_out, s_err, retval) - score = 0 - hints = [] - if results['ssh'] is not True: - hints += ['ssh failed: ' + results['ssh']] - r = random.Random(int(params['param_gen_seed'])) - env_val = "".join([r.choice('ABCDEFGHIJKLMNPRSTUVZ012345') for i in range(11)]) - arg_val = "".join([r.choice('ABCDEFGHIJKLMNPRSTUVZ012345') for i in range(13)]) - stdin_val = "".join([r.choice('ABCDEFGHIJKLMNPRSTUVZ012345') for i in range(17)]) - expected_script_stdout, expected_script_stderr, rval = test_out_gen( - params['arg_c'], env_val - ) - expected_script_stderr = 'cat {}\r\n'.format(params['out_stderr_c']) + expected_script_stderr - # hints += [expected_script_stderr, results['script_run'], results['script_stderr'], params['arg_c'], env_val] - if expected_script_stderr != results['script_stderr']: - hints += ['wrong script stderr'] - else: - score += 2 - split_stdout = expected_script_stdout.split('\r\n') - expected_script_stdout = "\r\n".join([ i for i in split_stdout if i.find('ma') >= 0]) - expected_script_stdout = 'cat {}\r\n'.format(params['out_stdout_c']) + expected_script_stdout + "\r\n" - if expected_script_stdout != results['script_stdout']: - hints += ['wrong script stdout'] - else: - score += 2 - expected_prog_stdout, expected_prog_stderr, rval = test_out_gen( - arg_val, stdin_val - ) - if expected_prog_stderr != results['prog_stderr'][-len(expected_prog_stderr):]: - hints += ['wrong program stderr'] - else: - score += 2 - if expected_prog_stdout != results['prog_stdout'][-len(expected_prog_stdout):]: - hints += ['wrong program stdout'] - else: - score += 2 - if results['script_ls'].find('-r') < 0: - hints += ['script not found'] - else: - score += 1 - if results['executable_ls'].find('xr') < 0: - hints += ['C executable not found'] - else: - score += 1 - return score, hints - -def prepare_disks(templates, task_params, global_params): - c_source = '''#include<stdio.h> -#include<stdlib.h> -#include<string.h> -/* Odstranite vse odvecne velike crke Q, W ali X in program se bo prevedel. */ - -int main(int argc, char **argv){ - unsigned char *arg; - unsigned char var[255]; - int i, arg_len, env_len, r; - scanf("%s", var); - arg = argv[1]; - arg_len = strlen(argv[1]); - env_len = strlen(var); - r = 0; - for (i = 0; i<100; i++){ - printf("%c", 32 + (arg[i % arg_len] ^ var[i % env_len]) % 64); - r += (int)arg[i % arg_len] + (int)var[i % env_len] + i; - if (i % 17 == 0){ - printf("RAUS\\n"); - } - if (i % 29 == 0){ - printf("ma"); - } - fprintf(stderr, "%c", (r % 31) + 'A'); - if (i % 23 == 0){ - fprintf(stderr, "PATACIS\\n"); - } - } - printf("\\n"); - fprintf(stderr, "\\n"); - return r % 16; -} -''' - evil_shell_source = """#!/bin/bash -e - -while true; do - /sbin/ifconfig eth1 10.0.4.19 2> /dev/null; - /sbin/ifconfig eth0 10.0.4.20 2> /dev/null; - /sbin/ifconfig eth2 10.0.4.21 2> /dev/null; - /sbin/ifconfig en0p3 10.0.4.19 2> /dev/null; - /sbin/ifconfig en0p8 10.0.4.20 2> /dev/null; - /sbin/ifconfig enp0s3 10.0.4.21 2> /dev/null; - /sbin/ifconfig enp0s8 10.0.4.21 2> /dev/null; - sleep 10; -done; -""" - import random - d = templates['student-entrance'] - r = random.Random(task_params['c_destroy_gen_seed']) - destroyed_c_source = c_source[:110] - for c in c_source[110:]: - i = r.randint(0, 5) - if i == 1: - destroyed_c_source += 'QW' - if i == 2: - destroyed_c_source += 'XW' - if i == 3: - destroyed_c_source += 'QX' - destroyed_c_source += c - d.write(task_params['P_c'], destroyed_c_source) - d.chown(1000, 1000, task_params['P_c']) - sh_path = r.choice(['/usr/share/doc', '/var/lib', '/usr/local/share', '/etc/alternatives']) - sh_file = sh_path + '/' + task_params['net_prog_name'] - d.write(sh_file, evil_shell_source) - d.chmod(0o775, sh_file) - d.write("/etc/rc.local", """#!/bin/sh -e -export PATH=$PATH:{} -nohup {} & - -exit 0 -""".format(sh_path, task_params['net_prog_name'])) - - write_default_config(templates['simpleArbiter'], global_params) diff --git a/kpov_judge/tasks/nat_port_forward/task.py b/kpov_judge/tasks/nat_port_forward/task.py deleted file mode 100644 index 80d2e47..0000000 --- a/kpov_judge/tasks/nat_port_forward/task.py +++ /dev/null @@ -1,172 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si':""" -<pre>Postavi tri računalnike - SimpleArbiter z diska simpleArbiter, TestClient z diska testClient in NATServer. NATServer naj ima dva omrežna vmesnika - z enim naj bo -povezan na omrežje, od koder bo imel dostop do Interneta, z drugim pa na SimpleArbiter. TestClient naj bo povezan na isto omrežje z dostopom do Interneta kot NATServer. -Poskrbi, da bo NATServer služil kot DHCP strežnik ter privzeti prehod za SimpleArbiter. -Na SimpleArbiter preberi vrednosti NET, PORT_OUTER in PORT_INNER ter vpiši IP_TEST_CLIENT. Poskrbi, da -bo omrežje med SimpleArbiter in NATServer na področju NET. Nato poskrbi, da se -bo TCP promet z omrežja z dostopom do Interneta na vrata PORT_OUTER prepošiljal na SimpleArbiter na vrata PORT_INNER.</pre>""" -} - -computers = { - 'TestClient': { - 'disks': [ - { 'name': 'maliNetworkManager', - }, - ], - 'network_interfaces': [{'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'NATServer': { - 'disks': [ - { 'name': 'student-NATServer', - }, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiter', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'IP_TEST_CLIENT': {'descriptions': {'si': 'Naslov TestClient'}, 'w': True, 'public':True, 'type': 'IP', 'generated': False}, - 'IP_NAT': {'descriptions': {'si': 'Naslov NATServer, dostopen s TestClient'}, 'w': True, 'public':True, 'type': 'IP', 'generated': False}, - 'PORT_OUTER': {'descriptions': {'si': 'Zunanja vrata'}, 'w': False, 'public':True, 'type': 'port', 'generated': True}, - 'PORT_INNER': {'descriptions': {'si': 'Notranja vrata'}, 'w': False, 'public': True, 'type': 'port', 'generated': True}, - 'NET': {'descriptions': {'si': 'Področje naslovov med SimpleArbiter in TestClient'}, 'w': False, 'public': True, 'type': 'NET', 'generated': True}, -} - -def task(IP_TEST_CLIENT, IP_NAT, PORT_OUTER, PORT_INNER, NET): - import random - import time - import pexpect - from pexpect import pxssh - - results = dict() - tcpdump = pexpect.spawn('sudo /usr/sbin/tcpdump src host {} and dst port {}'.format(IP_TEST_CLIENT, PORT_INNER), encoding='utf-8') - sshconn = pxssh.pxssh(encoding='utf-8') - sshconn.login(IP_TEST_CLIENT, 'student', 'vaje') - r = random.Random() - k = r.randint(10, 15) - results['pre_nc'] = str(k) - results['nc_pre'] = "" - for i in range(k): - sshconn.sendline("nc {} {}".format(IP_NAT, PORT_OUTER)) - sshconn.sendline() - sshconn.sendintr() - sshconn.prompt() - results['nc_pre'] += sshconn.before - nc = pexpect.spawn('nc -l -p {}'.format(PORT_INNER), encoding='utf-8') - sshconn.sendline() - sshconn.prompt() - sshconn.sendline("nc {} {}".format(IP_NAT, PORT_OUTER)) - results['post_nc'] = "".join([r.choice("abcd\n") for i in range(100)]) - sshconn.sendline(results['post_nc']) - time.sleep(1) - sshconn.sendintr() - nc.expect(pexpect.EOF) - results['nc_ret'] = nc.before - results['route'] = pexpect.run('ip route list 0/0', encoding='utf-8') - results['traceroute'] = pexpect.run('traceroute {}'.format(IP_TEST_CLIENT), encoding='utf-8') - # wait for traceroute - time.sleep(10) - tcpdump.sendintr() - tcpdump.expect(pexpect.EOF) - results['tcpdump'] = tcpdump.before - sshconn.prompt() - results['nc_post'] = sshconn.before - sshconn.close() - # nc.expect(pexpect.EOF) - return results - -def gen_params(user_id, params_meta): - params = dict() - r = random.Random(user_id) - params['PORT_INNER'] = str(r.randint(6000, 10000)) - params['PORT_OUTER'] = str(r.randint(10001, 15000)) - params['NET'] = kpov_util.IPv4_subnet_gen(r, "10.36.0.0/14", 24) - return params - -def task_check(results, params): - import re - import pickle - score = 0 - hints = [] - local_net = params['NET'][:params['NET'].rfind('.')] - s = "default via ({}\\.[0-9]+)".format(re.escape(local_net)) - res = re.search(s, results['route']) - if res: - ip_nat_internal = res.groups(1)[0] - score += 1 - else: - ip_nat_internal = 'abrakadabra' - # print (s, results['route'],) - s = "traceroute to {ip_test} \\({ip_test}\\), 30 hops max, 60 byte packets\ -\r\n 1 {ip_nat} \\({ip_nat}\\) [0-9.]+ ms [0-9.]+ ms [0-9.]+ ms\ -.*{ip_test} \\({ip_test}\\)".format( - ip_nat = re.escape(ip_nat_internal), - ip_test = re.escape(params['IP_TEST_CLIENT']) - ) - if re.search(s, results['traceroute'], re.DOTALL): - score += 1 - else: - hints += [s + str(results['traceroute'])] - if len(results['post_nc']) == 100: - score += 1 - else: - hints += [str(results['post_nc']) + str(len(results['post_nc']))] - if results['nc_ret'] == (results['post_nc'] + '\n').replace('\n', '\r\n'): - score += 1 - else: - hints += ['wrong nc'] - s = "Connection refused" - res = re.findall(s, results['nc_pre']) - if len(res) >= 2: - score += 3 - else: - hints += [s + str(results['nc_pre'])] - s = "\r\n" - if re.search(s, results['nc_post']): - score += 1 - else: - hints += [s + str(results['nc_post'])] - rejected_count = int(results['pre_nc']) - accepted_count = results['nc_ret'].count('\r\n') - s = ".*verbose output suppressed.*listening on.*dropped by kernel.*" - if re.match(s, results['tcpdump'], re.DOTALL): - score += 1 - else: - hints += [s + str(results['tcpdump'])] - res = re.findall("length .*\r\n", results['tcpdump']) - total_len = 0 - n_empty = 0 - for i in res: - k = int(i[len("length "):].strip()) - total_len += k - if k == 0: - n_empty += 1 - # print total_len, rejected_count, n_empty - if total_len == 101 and rejected_count <= n_empty: - score += 1 - else: - hints += [s + str(results['tcpdump'])] - return score, hints - -def prepare_disks(templates, task_params, global_params): - write_default_config(templates['simpleArbiter'], global_params) diff --git a/kpov_judge/tasks/nat_vlc/howtos/en/index.html b/kpov_judge/tasks/nat_vlc/howtos/en/index.html deleted file mode 100644 index 6048647..0000000 --- a/kpov_judge/tasks/nat_vlc/howtos/en/index.html +++ /dev/null @@ -1,72 +0,0 @@ -<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=utf-8">
-</head>
-
-<body><font face="Georgia, Times New Roman, Times, serif">
-<strong><h1>NAT VLC:</h1></strong>
-<p><strong><h2>Explanation:</h2></strong><br>
- Set up a computer so that it forwards all packets meant for a certain address, to another computer.</p>
-<p><strong><h2>Instructions:</h2></strong>
- <h3>1. Create two VMs. SimpleArbiter using the disk simpleArbiter and NATServer. </h3>
- You can get the disks at polz.si/media/uploads/kpov/virtualke. As for the NATServer VM, you can use any disk you want like base-student-desktop-2014.
-<br>
- <h3>2. NATServer should have two network interfaces, one should connect to the simpleArbiter VM and the other to the internet.</h3>
- Adapter 1 should be NAT and adapter 2 should be Internal Network.<br>
- Simple Arbiter must be connected to the Internal Network.
-<br>
- <img style="width: 500px; height: 310px;" src="../images/1.jpg" alt="slika-1"></img>
- <h3>3.On NATServer use ifconfig or /etc/network/interfaces to configure the network interfaces you created in virtualbox.<br></h3>
-
- -vim /etc/network/interfaces<br>
- -Set it up like this:<br>
- auto eth1<br>
- iface eth1 inet static<br>
- NETMASK 255.255.0.0 # Specify based on your requirement<br>
- IPADDR 192.168.2.1 # Gateway of the LAN<br>
- NETWORK 192.168.0.0 # Optional<br>
- ADDRESS 192.168.0.0 <br>
- -ifdown eth1<br>
- -ifup eth1
-<br>
-<img style="width: 500px; height: 310px;" src="../images/2.jpg" alt="slika-2"></img>
- <h3>4. Configure SimpleArbiter so that it uses NATServer as the default gateway.</h3>
-
- <h3> 5. Set up DNS (etc/resolv.conf) on NATServer.</h3>
- vim /etc/resolv.conf
- nameserver 203.145.184.13 # Primary DNS Server provided by the ISP<br>
- nameserver 202.56.250.5 # Secondary DNS Server provided by the ISP<br>
- Than we set up the host:<br>
- vim /etc/hosts<br>
- Replace the first line with:<br>
- 127.0.0.1 nat localhost.localdomain localhost<br>
-
- <h3>6. Enable IP forwarding on NATServerju (should be run as root).</h3>
- echo 1 > /proc/sys/net/ipv4/ip_forward
-
- <h3>7. Set up NAT on NATServer using iptables.</h3>
-
- apt-get install iptables<br>
- iptables -F<br>
- ptables -t nat -F<br>
- iptables -t mangle -F <br>
- iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE<br>
- iptables -A FORWARD -i eth1 -j ACCEPT<br><br>
-
- service iptables restart
-
- <h3>8. Use vlc on simpleArbiter to watch the video over your network. </h3> <br>
-
-
- <h3>8. Additional resources </h3> <br>
--https://www.howtoforge.com/nat_iptables<br>
--http://www.bctes.com/nat-linux-iptables.html<br>
-
-
-
-
-
-</body>
-
-</html>
diff --git a/kpov_judge/tasks/nat_vlc/howtos/images/1.jpg b/kpov_judge/tasks/nat_vlc/howtos/images/1.jpg Binary files differdeleted file mode 100644 index adee258..0000000 --- a/kpov_judge/tasks/nat_vlc/howtos/images/1.jpg +++ /dev/null diff --git a/kpov_judge/tasks/nat_vlc/howtos/images/2.jpg b/kpov_judge/tasks/nat_vlc/howtos/images/2.jpg Binary files differdeleted file mode 100644 index f7868df..0000000 --- a/kpov_judge/tasks/nat_vlc/howtos/images/2.jpg +++ /dev/null diff --git a/kpov_judge/tasks/nat_vlc/howtos/si/index.html b/kpov_judge/tasks/nat_vlc/howtos/si/index.html deleted file mode 100644 index 779cd54..0000000 --- a/kpov_judge/tasks/nat_vlc/howtos/si/index.html +++ /dev/null @@ -1,80 +0,0 @@ -<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=utf-8">
-</head>
-
-<body><font face="Georgia, Times New Roman, Times, serif">
-<strong><h1>NAT VLC:</h1></strong>
-<p><strong><h2>Naloga na hitro:</h2></strong><br>
- Nastavi računalnik tako, da bo vse pakete za določene naslove prepošiljal na drug računalnik, vzpostavi NAT.</p>
-<p><strong><h2>Navodila:</h2></strong>
- <h3>1. Postavi dva navidezna računalnika. SimpleArbiter z diskom simpleArbiter ter NATServer. </h3>
- Virtualke dobiš na (polz.si/media/uploads/kpov/virtualke). Za NATServer lahko uporabiš base-student-desktop-2014.
-<br>
- <h3>2. Postavi NAT server tako, da ima dva omrežna vmesnika. Z enim naj bo povezan na simpleArbiter, z drugim pa na internet.</h3>
- (settings-Network) Adapter 1 nastavimo na NAT (omrežje), adapter 2 pa na InternalNetwork (lokalno).<br>
- Simple Arbiter nastavimo na InternalNetwork(lokalno).
-<br>
- <img style="width: 500px; height: 310px;" src="../images/1.jpg" alt="slika-1"></img>
- <h3>3.Na NATServer z ukazom ifconfig in z datoteko /etc/network/interfaces skonfiguriraj omrežne vmesnike<br>
- tako, da bo en povezan v WAN (internet) in en vmesnik na LAN (simpleArbiter).</h3>
-
- -vim /etc/network/interfaces<br>
- -dopišemo:<br>
- auto eth1<br>
- iface eth1 inet static<br>
- NETMASK 255.255.0.0 # Specify based on your requirement<br>
- IPADDR 192.168.2.1 # Gateway of the LAN<br>
- NETWORK 192.168.0.0 # Optional<br>
- ADDRESS 192.168.0.0 <br>
- -ifdown eth1<br>
- -ifup eth1
-<br>
-<img style="width: 500px; height: 310px;" src="../images/2.jpg" alt="slika-2"></img>
- <h3>4. SimpleArbiter skofiguriraj tako, da bo privzeti prehod uporabljal NATServer.</h3>
- Nastavi gateway, da ima IP od NATServerja.<br>
- route add -net IP netmask MASK default gw IP dev eth0<br>
-
- <h3> 5. Nastavi DNS (etc/resolv.conf) na NATServerju.</h3>
- vim /etc/resolv.conf
- nameserver 203.145.184.13 # Primary DNS Server provided by the ISP<br>
- nameserver 202.56.250.5 # Secondary DNS Server provided by the ISP<br>
- Nato nastavimo še host:<br>
- vim /etc/hosts<br>
- Prvo vrstico zamenjamo z:<br>
- 127.0.0.1 nat localhost.localdomain localhost<br>
-
- <h3>6. Omogoči posredovanje IP naslovov na NATServerju.</h3>
- echo 1 > /proc/sys/net/ipv4/ip_forward
-
- <h3>7. Nastavi NAT z uporabo paketa iptables na NATServerju.</h3>
-
- apt-get install iptables<br>
- iptables -F<br>
- ptables -t nat -F<br>
- iptables -t mangle -F <br>
- iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE<br>
- iptables -A FORWARD -i eth1 -j ACCEPT<br><br>
-
- service iptables restart
-
- <h3>8. Na simpleArbiter z vlc preberi naslov, na katerem si lahko ogledaš kratek filmček. </h3>
-
- apt-get install vlc-nox<br>
- Nastavitev naslova:<br>
- Open Media > OpenNetwork ....<br>
-
-
-
- <h3>8. Dodatni viri </h3> <br>
--https://www.howtoforge.com/nat_iptables<br>
--http://www.bctes.com/nat-linux-iptables.html<br>
-
-
-
-
-
-</body>
-
-</html>
diff --git a/kpov_judge/tasks/nat_vlc/task.py b/kpov_judge/tasks/nat_vlc/task.py deleted file mode 100644 index 5224495..0000000 --- a/kpov_judge/tasks/nat_vlc/task.py +++ /dev/null @@ -1,126 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -# Poglej nek film na nekem določenem URL. -# (?md5 vsota filma?) - -# Nastavi nek računalnik tako, da bo izvajal NAT. -#TODO: finish this - -instructions = { - 'si': '''\ -<p> -Postavi dva navidezna računalnika: <em>SimpleArbiter</em> in <em>NATServer</em>. <em>NATServer</em> naj ima dva omrežna vmesnika - z enim naj bo povezan na lokalno omrežje, na katerem naj bo tudi simpleArbiter, z drugim pa na Internet. - -<p> -Na <em>NATServer</em> skonfiguriraj omrežne vmesnike tako, da bo imel dostop do Interneta in da bo imel na lokalnem omrežju <code>{{IP_NAT}}</code>. Na <em>NATServer</em> ustvarite še uporabnika <code>{{IP_NAT_user}}</code>. - -<p> -Poskrbi, da bo <em>SimpleArbiter</em> prek DHCP dobil naslov <code>{{IP_simple}}</code>. Poskrbi, da bo <em>NATServer</em> deloval kot prehod za <em>SimpleArbiter</em> in izvajal NAT. -''', - 'en': '''\ -<p> -Set up two virtual machines: <em>SimpleArbiter</em> and -<em>NATServer</em>. <em>NATServer</em> should have two network -adapters. Connect the first adapter to <em>SimpleArbiter</em> and the -second adapter to the Internet. - -<p> -Configure the network in <em>NATServer</em> so that one interface is connected to the Internet while the other is connected to <em>SimpleArbiter</em> and has the address <code>{{IP_NAT}}</code>. Create a user called <code>{{IP_NAT_user}}</code> on <em>NATServer</em>. - -<p> -Configure a DHCP server on <em>NATServer</em> so that <em>SimpleArbiter</em> gets the IP <code>{{IP_simple}}</code>. Also, set up NAT on <em>NATServer</em> and set it as the gateway for <em>SimpleArbiter</em>. -''', -} - -computers = { - 'NATServer': { - 'disks': [ - { 'name': 'student-NATServer', - }, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiter', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - }, -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -#ne potrebujemo dnsjev in ip za malibreznewtork manager? -params_meta = { - 'IP_simple': {'descriptions': {'si': 'Naslov SimpleArbiter', 'en': 'SimpleArbiter address'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, - 'IP_NAT': {'descriptions': {'si': 'Naslov NATServer', 'en': 'NATServer address'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True }, - 'IP_NAT_user': {'descriptions': {'si': 'Username na NATServer', 'en': 'Username on NATServer'}, 'w': False, 'public' : True, 'type' : 'username', 'generated' : True}, - 'IP_NAT_passwd': {'descriptions': {'si': 'Password na NATServer', 'en': 'Password on NATServer'}, 'w': True,'public' : True, 'type' : 'passwd', 'generated' : False}, -} - -def task(IP_simple, IP_NAT, IP_NAT_user, IP_NAT_passwd): - import pexpect - - results = kpov_util.ssh_test(IP_NAT, IP_NAT_user, IP_NAT_passwd, ( - ('IP_NAT_ip_forward', 'cat /proc/sys/net/ipv4/ip_forward'), - )) - - # Check if If IP_simple is connected to NAT - results['IP_simple_ping_to_NAT'] = pexpect.run('ping -c 5 {}'.format(IP_NAT), encoding='utf-8') - # Check routing table on IP_simple - results['IP_simple_routing_table'] = pexpect.run('route -n', encoding='utf-8', env={'PATH': '/bin:/sbin'}) - # Tracert Check if IP_simple is connected to internet - results['IP_simple_to_internet'] = pexpect.run('traceroute 8.8.8.8', encoding='utf-8') - - return results - -def gen_params(user_id, params_meta): - params = dict() - r = random.Random(user_id) - # IP_NM, DNS_NM, IP_static, DNS_static) - # dns_servers = ['193.2.1.66', '193.2.1.72', '8.8.8.8', '8.8.4.4', '208.67.222.222', '208.67.220.220'] - net = kpov_util.IPv4_net_gen(r, 253, True, False) - # params['DNS_NM'] = r.choice(dns_servers) - params['IP_NAT'], params['IP_simple'] = kpov_util.IPv4_addr_gen(r, net, 2) - params['IP_NAT_user'] = kpov_util.default_generators['username'](r) - # params['IP_NM'] - # params['IP_simple'] = kpov_util.IPv4_addr_gen(r, net, 1) - # params['DNS_static'] = r.choice(dns_servers) - return params - -def task_check(results, params): - import re - score = 0 - hints = [] - if re.search( - "PING.*\r\n64 bytes from {}: icmp_seq=[0-9]+ ttl=64 time=[0-9.]* ms".format( - params['IP_NAT']), results['IP_simple_ping_to_NAT']): - score += 3 - else: - hints.append("Ping to NAT incorrect") - if results['IP_NAT_ip_forward'].strip() == "1": - score += 2 - else: - hints.append("ip_forward not set on NAT?") - rs = r"1 +{0} +\({0}\)".format(params['IP_NAT']) - if re.search(rs, - results['IP_simple_to_internet']): - score += 3 - else: - hints.append("traceroute not OK") - gateway=r'0\.0\.0\.0 +{} +0\.0\.0\.0 +UG'.format(params['IP_NAT'].replace('.', '\.')) - if re.search(gateway,results['IP_simple_routing_table']) and \ - re.search("Kernel IP routing table\r\nDestination", results['IP_simple_routing_table']): - score += 2 - else: - hints.append("route not OK") - return score, hints - -def prepare_disks(templates, task_params, global_params): - write_default_config(templates['simpleArbiter'], global_params) - diff --git a/kpov_judge/tasks/nat_vlc/video.py b/kpov_judge/tasks/nat_vlc/video.py deleted file mode 100644 index 3c21c82..0000000 --- a/kpov_judge/tasks/nat_vlc/video.py +++ /dev/null @@ -1,37 +0,0 @@ -import string, random, os -#You need to find PIL library on the internet. Just GOOGLE it!!! Other imports are standard. -from PIL import Image, ImageDraw, ImageFont - -#Method for generating random string -def randomString(): - return ''.join(random.choice(string.lowercase) for i in range(30)) - - -image = Image.new("RGBA", (600,150), (255,255,255)) -draw = ImageDraw.Draw(image) - -#Font option is optional. If you don't want to use it figure out how to increase font size, because default is veeeeery small. - -font = ImageFont.truetype("georgia.ttf", 36) -txt = randomString() - -draw.text((20,50), txt, (20,100,0), font) -img_resized = image.resize((600,80), Image.ANTIALIAS) -img_resized.save("out.png") - -#Creates .mp4 video from image out.png. Video is 1 second long. -bashCommand = "avconv -r 1/5 -i out.png -b:v 1000k video.mp4" -os.system(bashCommand) - -# Converts .mp4 video to .avi format. Still 1 second long. ( 2x ) -bashCommand = "avconv -i video.mp4 -c:a copy video.avi" -os.system(bashCommand) - -bashCommand = "avconv -i video.mp4 -c:a copy video1.avi" -os.system(bashCommand) - -# This loop will increas videos length by adding more picesec of the original video. -last = int(input("Set video length in seconds: ")) -bashCommand = "avconv -i concat:video.avi\|video1.avi -c copy video.avi" -for i in range(0, last-2): - os.system(bashCommand) diff --git a/kpov_judge/tasks/network_boot_custom_program/task.py b/kpov_judge/tasks/network_boot_custom_program/task.py deleted file mode 100644 index e3fbad2..0000000 --- a/kpov_judge/tasks/network_boot_custom_program/task.py +++ /dev/null @@ -1,119 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si':""" -<pre>Postavi tri navidezne računalnike - simpleArbiter, DHCP_server, DHCP_client. -Na računalniku DHCP_server najdeš program A. DHCP_server nastavi tako, da se bo -DHCP_client lahko zagnal prek mreže. Na datotečni sistem, s katerega -se zaganja DHCP_client, spravi program A. Poskrbi, da se A požene ob zagonu DHCP_client. - -DHCP_client ne sme imeti priklopljenega nobenega trdega diska.</pre> -""" -} - -computers = { - 'maliNetworkManager': { - 'disks': [ - { 'name': 'maliNetworkManager', - }, - #{ 'name': 'CDROM', - # 'options':{'readonly': True}, - # 'parts': [],# no parts, no mounting. - #} - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'maliBrezNetworkManager': { - 'disks': [ - { 'name': 'maliBrezNetworkManager', - }, - #{ 'name': 'CDROM', - # 'options':{'readonly': True}, - # 'parts': [],# no parts, no mounting. - #} - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterDhcp', - # attempt automount - }, - #{ 'name': 'CDROM', - # 'options': {'readonly': True}, - # 'parts': [{'dev': 'b1', 'path': '/cdrom'}], - #}, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'IP_NM': {'descriptions': {'si': 'Naslov maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'DNS_NM': {'descriptions': {'si': 'DNS za maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'IP_static': {'descriptions': {'si': 'Naslov maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, - 'DNS_static': {'descriptions': {'si': 'DNS za maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, -} - -def task(IP_NM, DNS_NM, IP_static, DNS_static): - from pexpect import pxssh - import pexpect - results = dict() - peer_user = 'student' - peer_passwd = 'vaje' - sA = pxssh.pxssh() - sB = pxssh.pxssh() - sA.login(IP_NM, peer_user, peer_passwd) - sB.login(IP_static, peer_user, peer_passwd) - # sA - # make sure NM is not handling eth0 - results['NM_nmcli'] = sA.run('nmcli d') - results['NM_nslookup'] = sA.run('nslookup www.arnes.si') - # sB - # check whether NM is handling eth0 - results['static_nmcli'] = sB.run('nmcli d') - results['static_nslookup'] = sB.run('nslookup www.arnes.si') - sA.logout() - sB.logout() - return results - -def gen_params(user_id, params_meta): - params = dict() - r = random.Random(user_id) - # IP_NM, DNS_NM, IP_static, DNS_static) - dns_servers = ['193.2.1.66', '193.2.1.72', '8.8.8.8', '8.8.4.4', '208.67.222.222', '208.67.220.220'] - net = kpov_util.IPv4_subnet_gen(r, '172.23.128.0/18', 24) - params['DNS_NM'] = r.choice(dns_servers) - params['IP_NM'], params['IP_static'] = kpov_util.IPv4_addr_gen(r, net, 2) - params['DNS_static'] = r.choice(dns_servers) - return params - -def task_check(results, params): - import re - score = -9 - hints = [] - if results['NM_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_NM'])) > -1: - score += 3 - if results['static_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_static'])) > -1: - score += 3 - if re.search(r'eth0 +802-.*connected', results['NM_nmcli']): - score += 2 - if not re.search(r'eth0 +802-.*connected', results['static_nmcli']): - score += 2 - score = 0 - return score, hints - -def prepare_disks(templates, task_params, global_params): -# d = templates['simpleArbiterDhcp'] - write_default_config(templates['simpleArbiterDhcp'], global_params) - diff --git a/kpov_judge/tasks/openvpn_multiple_hops/task.py b/kpov_judge/tasks/openvpn_multiple_hops/task.py deleted file mode 100644 index 44ad8c4..0000000 --- a/kpov_judge/tasks/openvpn_multiple_hops/task.py +++ /dev/null @@ -1,317 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si':""" -<pre>Postavi 4 navidezne računalnike - SimpleArbiter z diska simpleArbiterDhcp, A, B ter C. -Na računalnikih A, B in C ustvari uporabnika test z geslom test. -Poskrbi, da bodo vsi štirje na istem navideznem fizičnem omrežju. Naslov omrežja (NET_PHYS) ter naslove -(IP_A, IP_B, IP_C) preberi na SimpleArbiter. S pomočjo OpenVPN postavi navidezno omrežje med A in B na naslovih NET_VPN1. -Nato s pomočjo OpenVPN postavi še navidezno omrežje med B in C na naslovih NET_VPN2. -Poskrbi, da bo promet z A prek VPN prišel do C in obratno. Za avtentikacijo uporabi skupne skrivnosti, ki -jih prebereš na SimpleArbiter - med A in B SECRET_AB ter med B in C SECRET_BC.</pre> -""" -} - -computers = { - 'SimpleArbiter': { - 'disks': [ - { - 'name': 'simpleArbiterDhcp', - } - ], - 'network_interfaces': [ - { - 'network': 'nat' - }, - { - 'network': 'net1' - } - ], - 'flavor': 'm1.tiny', - 'config_drive': False - }, - 'VPNClient1': { - 'disks': [ - { - 'name': 'student-VPNClient1', - } - ], - 'network_interfaces': [ - { - 'network': 'net1' - }, - { - 'network': 'vpnAB' - } - ], - 'flavor': 'm1.tiny', - 'config_drive': False - }, - 'VPNClient2': { - 'disks': [ - { - 'name': 'student-VPNClient2', - } - ], - 'network_interfaces': [ - { - 'network': 'net1' - }, - { - 'network': 'vpnAB' - }, - { - 'network': 'vpnBC' - } - ], - 'flavor': 'm1.tiny', - 'config_drive': False - }, - 'VPNClient3': { - 'disks': [ - { - 'name': 'student-VPNClient3', - } - ], - 'network_interfaces': [ - { - 'network': 'net1' - }, - { - 'network': 'vpnBC' - } - ], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { - 'nat': { - 'public': True - }, - - 'net1': { - 'public': True - }, - # Used for VPN - 'vpnAB': { - 'public': False - }, - - 'vpnBC': { - 'public': False - } -} -#Tukaj sem generiral osem parametrov, prosil bi če se upoštevali pri Tasku. -params_meta = { - 'IP_VPNClient1': {'descriptions':{'si':'IP klienta A na VPN'}, 'w': True, 'public': True, 'type': 'IP', 'generated': True}, - 'IP_LANClient1': {'descriptions':{'si':'IP klienta A na LAN'}, 'w': True, 'public': True, 'type': 'IP', 'generated': False}, - 'IP1_VPNClient2': {'descriptions':{'si':'1. IP klienta B na VPN'}, 'w': True, 'public': True, 'type': 'IP', 'generated': True}, - 'IP2_VPNClient2': {'descriptions':{'si':'2. IP klienta B na VPN'}, 'w': True, 'public': True, 'type': 'IP', 'generated': True}, - 'IP_LANClient2': {'descriptions':{'si':'IP klienta B na LAN'}, 'w': True, 'public': True, 'type': 'IP', 'generated': False}, - 'IP_VPNClient3': {'descriptions':{'si':'IP klienta C na VPN'}, 'w': True, 'public': True, 'type': 'IP', 'generated': True}, - 'IP_LANClient3': {'descriptions':{'si':'IP klienta C na LAN'}, 'w': True, 'public': True, 'type': 'IP', 'generated': False}, - 'IP_SimpleArbiterLAN': {'descriptions':{'si':'IP za SimpleArbiter na LAN'}, 'w': True, 'public': True, 'type': 'IP', 'generated': False} -} - - -def task(IP_SimpleArbiterLAN, IP_VPNClient1, IP_LANClient1, IP1_VPNClient2, IP2_VPNClient2, IP_LANClient2, IP_VPNClient3, IP_LANClient3): - tests = { - ('VPNClient1', IP_LANClient1): [ - ('VPNClient1_ping_C2', 'ping -c 3 {}'.format(IP1_VPNClient2)), - ('VPNClient1_ping_C3', 'ping -c 3 {}'.format(IP_VPNClient3)), - ('VPNClient1_traceroute_C3', 'traceroute {}'.format(IP_VPNClient3)), - ], - ('VPNClient2', IP_LANClient2): [ - ('VPNClient2_ping_C1', 'ping -c 3 {}'.format(IP_VPNClient1)), - ('VPNClient2_ping_C3', 'ping -c 3 {}'.format(IP_VPNClient3)), - ], - ('VPNClient3', IP_LANClient3): [ - ('VPNClient3_ping_C1', 'ping -c 3 {}'.format(IP_VPNClient1)), - ('VPNClient3_ping_C2', 'ping -c 3 {}'.format(IP2_VPNClient2)), - ('VPNClient3_traceroute_C1', 'traceroute {}'.format(IP_VPNClient1)), - ], - } - - for (name, host), host_tests in tests.items(): - host_tests += [ - (name+'_ifconfig', '/sbin/ifconfig -a'), - (name+'_route', '/sbin/route -n'), - ] - - results = collections.defaultdict(str) - for (name, host), host_tests in tests.items(): - results.update(kpov_util.ssh_test(host, 'test', 'test', host_tests)) - return results - -def gen_params(user_id, params_meta): - params = dict() - import random - r = random.Random(user_id) - net = kpov_util.IPv4_subnet_gen(r, '10.70.0.0/16', 24) - params['IP_VPNClient1'], params['IP1_VPNClient2'] = kpov_util.IPv4_addr_gen(r, net, 2) - net = kpov_util.IPv4_subnet_gen(r, '10.50.0.0/16', 24) - params['IP_VPNClient3'], params['IP2_VPNClient2'] = kpov_util.IPv4_addr_gen(r, net, 2) - return params - -def task_check(results, params): - - import re - score = 0 - hints = [] - - IP_C1 = params['IP_VPNClient1'].replace('.', '\.') - IP1_C2 = params['IP1_VPNClient2'].replace('.', '\.') - IP2_C2 = params['IP2_VPNClient2'].replace('.', '\.') - IP_C3 = params['IP_VPNClient3'].replace('.', '\.') - - # testi za ifconfig - # C1 - rs = r"tun0.*\n.*inet.*{}".format(IP_C1) - if re.search(rs, - results['VPNClient1_ifconfig']): - score += 1 - else: - hints.append("ifconfig on VPNClient1 is not OK") - pass - # C2 - rs = r"tun.*\n.*inet.*{}".format(IP1_C2) - if re.search(rs, results['VPNClient2_ifconfig']): - rs = r"tun.*\n.*inet.*{}".format(IP2_C2) - if re.search(rs, results['VPNClient2_ifconfig']): - score += 1 - else: - hints.append("ifconfig on VPNClient2 is not OK") - pass - else: - hints.append("ifconfig on VPNClient2 is not OK") - pass - # C3 - rs = r"tun0.*\n.*inet.*{}".format(IP_C3) - if re.search(rs, results['VPNClient3_ifconfig']): - score += 1 - else: - hints.append("ifconfig on VPNClient3 is not OK") - pass - # testi za route - # C1 - rs = r"{}.*tun0".format(IP1_C2) - if IP_C3[:-1].endswith('.'): - ASD = IP_C3[:-1]+"0" - elif IP_C3[:-2].endswith('.'): - ASD = IP_C3[:-2]+"0" - else: - ASD = IP_C3[:-3]+"0" - if re.search(rs, results['VPNClient1_route']): - rs = r"{} {}.*tun0".format(ASD, IP1_C2) - if re.search(rs, results['VPNClient1_route']): - score += 1 - else: - hints.append("route on VPNClient1 is not OK") - else: - hints.append("route on VPNClient1 is not OK") - pass - # C2 - rs = r"{}.*tun".format(IP_C1) - if re.search(rs, results['VPNClient2_route']): - rs = r"{}.*tun".format(IP_C3) - if re.search(rs, results['VPNClient2_route']): - score += 1 - else: - hints.append("route on VPNClient2 is not OK") - else: - hints.append("route on VPNClient2 is not OK") - pass - # C3 - rs = r"{}.*tun0".format(IP2_C2) - if IP_C1[:-1].endswith('.'): - ASD = IP_C1[:-1]+"0" - elif IP_C1[:-2].endswith('.'): - ASD = IP_C1[:-2]+"0" - else: - ASD = IP_C1[:-3]+"0" - if re.search(rs, results['VPNClient3_route']): - rs = r"{} {}.*tun0".format(ASD, IP2_C2) - if re.search(rs, results['VPNClient3_route']): - score += 1 - else: - hints.append("route on VPNClient3 is not OK") - else: - hints.append("route on VPNClient3 is not OK") - pass - # testi za ping - # C1 - rs = r"64 bytes from {}: icmp_seq=[0-9]+ ttl=[0-9]+ time=\d+\.\d+ ms".format(IP1_C2) - if re.search(rs, results['VPNClient1_ping_C2']): - score += 0.5 - else: - hints.append("ping from VPNClient1 to VPNClient2 is not OK") - pass - rs = r"64 bytes from {}: icmp_seq=[0-9]+ ttl=[0-9]+ time=\d+\.\d+ ms".format(IP_C3) - if re.search(rs, results['VPNClient1_ping_C3']): - score += 0.5 - else: - hints.append("ping from VPNClient1 to VPNClient3 is not OK") - pass - # C2 - rs = r"64 bytes from {}: icmp_seq=[0-9]+ ttl=[0-9]+ time=\d+\.\d+ ms".format(IP_C1) - if re.search(rs, results['VPNClient2_ping_C1']): - score += 0.5 - else: - hints.append("ping from VPNClient2 to VPNClient1 is not OK") - pass - rs = r"64 bytes from {}: icmp_seq=[0-9]+ ttl=[0-9]+ time=\d+\.\d+ ms".format(IP_C3) - if re.search(rs, results['VPNClient2_ping_C3']): - score += 0.5 - else: - hints.append("ping from VPNClient2 to VPNClient3 is not OK") - pass - # C3 - rs = r"64 bytes from {}: icmp_seq=[0-9]+ ttl=[0-9]+ time=\d+\.\d+ ms".format(IP_C1) - if re.search(rs, results['VPNClient3_ping_C1']): - score += 0.5 - else: - hints.append("ping from VPNClient3 to VPNClient1 is not OK") - pass - rs = r"64 bytes from {}: icmp_seq=1 ttl=[0-9]+ time=\d+\.\d+ ms".format(IP2_C2) - if re.search(rs, results['VPNClient3_ping_C2']): - score += 0.5 - else: - hints.append("ping from VPNClient3 to VPNClient2 is not OK") - pass - #score = int(score) - - # testi za tracetoute - # C1 - rs = r"1 {}".format(IP1_C2) - if re.search(rs, results['VPNClient1_traceroute_C3']): - rs = r"2 {}".format(IP_C3) - if re.search(rs, results['VPNClient1_traceroute_C3']): - score += 1 - else: - hints.append("traceroute from VPNClient1 to VPNClient3 is not OK") - pass - else: - hints.append("traceroute from VPNClient1 to VPNClient3 is not OK") - pass - # C3 - rs = r"1 {}".format(IP2_C2) - if re.search(rs, results['VPNClient3_traceroute_C1']): - rs = r"2 {}".format(IP_C1) - if re.search(rs, results['VPNClient3_traceroute_C1']): - score += 1 - else: - hints.append("traceroute from VPNClient1 to VPNClient3 is not OK") - pass - else: - hints.append("traceroute from VPNClient1 to VPNClient3 is not OK") - pass - if score > 10 : - score -= 1 - score = int(score) - return score, hints - - -def prepare_disks(templates, task_params, global_params): - write_default_config(templates['simpleArbiterDhcp'], global_params) diff --git a/kpov_judge/tasks/openvpn_simple_smb/howtos/en/index.html b/kpov_judge/tasks/openvpn_simple_smb/howtos/en/index.html deleted file mode 100644 index aba834e..0000000 --- a/kpov_judge/tasks/openvpn_simple_smb/howtos/en/index.html +++ /dev/null @@ -1,98 +0,0 @@ -<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=utf-8">
-</head>
-
-<body><font face="Georgia, Times New Roman, Times, serif">
-<strong><h1>OpenVPN and SMB task:</h1></strong>
-<p><strong><h2>Quick task:</h2></strong><br>
- Connect to VPN with OpenVPN. Enable access to files through NFS and copy them through SMB.</p>
-<p><strong><h2>Instructions:</h2></strong><br>
- 1. From Directory with images of virtual computers drag twice the picture SimpleArbiterVPN and VPNClient.<br>
- 2. With VirtualBox (or other programs for virtual computers) create two virtual computers and give them VPNCLient.vdi and SimpleArbiterVPN.vdi as disk for storage.<br>
- 3. On both set two network interface(NAT and Internal) and run them.<br>
- 4. On both VM login with username <strong>root</strong> and password <strong>kaboom</strong> .</p>
-<p><h3><u><strong><em>First part: Set up OpenVPN on SimpleArbiterVPN and VPNClient.</em></strong></u></h3>
-<p><h4><u><strong><em>Settings on the server:</em></strong></u></h4>
- 1. Download packages <strong>uml-utilities</strong> -> to adjust the virtual network interfaces and packet (<strong>openvpn</strong>). example: sudo apt-get install openvpn<br>
- 2. The new virtual network interface create with <strong>tunctl</strong> and specify IP with <strong>sudo ifconfig tap0 10.P.Q.R netmask 255.255.255.0</strong><br>
- 3. Then generirate common key (you will share that key with client) with the command: <strong>openvpn --genkey --secret vpnkljuc.key</strong><br>
- 4. On server set the configuration file tap0.conf, which should contain (split by lines) "dev tap0","proto tcp-server", "secret vpnkljuc.key"<br>
- 5. Run openvpn with <strong>openvpn --config /some_directory/somewhere/tap0.conf</strong><br/>
-<p><h4><u><strong><em>Settings on the client:</em></strong></u></h4>
-1., 2. steps are the same as the settings on the server<br>
-3. Create configuration file tap0.conf, which should contain (split by lines) "remote IP_OF_YOUR_VPN_SERVR", "dev tap0", "proto tcp-client", "secret vpnkljuc.key"<br>
-4. On OpenVPN server connect to <strong>openvpn --config /some_directory/somewhere/tap0.conf</strong><br/>
-<p>
-
- <u><strong><em><h3>Second part: Access to imenika /home/test/IME_IMENIKA over NFS</h3></em></strong></u>
-<p><h4><u><strong><em>Client settings:</em></strong></u></h4>
- 1. Using "sudo apt-get install nfs-kernel-server" we install nfs service<br>
- 2. Create a directory /home/test/IME_IMENIKA<br/>
- 3. To /etc/exports add line /home/test/bla IP_client
- 4. Use sudo exportfs -a to save
- 5. Restart service using "sudo service nfs-kernel-server start"
-<p><h4><u><strong><em>Client settings:</em></strong></u></h4>
- 1. Instal client for nfs with command "sudo apt-get install nfs-common"<br/>
- 2. Create mounting directory "sudo mkdir -p /mnt/nfs/home/test" and mount servers file "sudo mount IP_SERVER:/home/test"<br/>
- 3. For automatic mounting we add previous commands to /etc/fstab <br/>
-
-<p><h3><u><strong><em>How-to za uporabo kpov-judge za OpenVPN</em></strong></u></h3>
-
- </font>
-
-<hr>
-<p>
-howto: task_check(results, params):
- Metoda dobi, kot prvi argument rezultat metode task(...), kot drugi pa
- rezultat funkcije gen_params().
-
- Vrne stevilo pridobljenih tock.
-
-
-howto: task(...):
- Metoda prejme naslednje argumente:
- - IP naslov VPN streznika
- - DNS naslov VPN streznika
- - IP naslov klienta 1
- - DNS naslov klienta 1
- - IP naslov klienta 2
- - DNS naslov klienta 2
-
- Vrne slovar rezultatov:
-
- results['SimpleArbiter_is_VPN_set_up']
- pove ali je VPN streznik nastavljen
-
- results['SimpleArbiter_is_VPN_running']
- pove ali je VPN streznik zagnan
-
- results['SimpleArbiter_ping_C1']
- ping rezultati (streznik -> klient1)
-
- results['SimpleArbiter_ping_C2']
- ping rezultati (streznik -> klient2)
-
- results['SimpleArbiter_nmap_results']
- pove ali sta oba klienta povezana na pravi VPN streznik
-
- results['SimpleArbiter_dir_vpn_contents']
- kljuc, ce se ta nahaja v ustreznem imeniku
-
- results['SimpleArbiter_nfs_access_control_list']
- preveri ce NFS dovoljuje dostop do /home/test/IME_UPORABNIKA
-
- results['VPNClient1_ping_VPN_server']
- ping rezultati (klient 1 -> strežnik)
-
- results['VPNClient2_ping_VPN_server']
- ping rezultati (klient 2 -> strežnik)
-
-</p>
-
-</body>
-
-</html>
-
-</html>
diff --git a/kpov_judge/tasks/openvpn_simple_smb/howtos/si/index.html b/kpov_judge/tasks/openvpn_simple_smb/howtos/si/index.html deleted file mode 100644 index 67e1c4e..0000000 --- a/kpov_judge/tasks/openvpn_simple_smb/howtos/si/index.html +++ /dev/null @@ -1,95 +0,0 @@ -<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=utf-8">
-</head>
-
-<body><font face="Georgia, Times New Roman, Times, serif">
-<strong><h1>OpenVPN in SMB vaja: </h1></strong>
-<p><strong><h2>Naloga na hitro: </h2></strong><br>
- Vzpostavi VPN povezavo z pomočjo OpenVPN. Omogoči dostop do datotek prek NFS in skopiraj datoteke prek SMB.</p>
-<p><strong><h2>Navodila:</h2></strong><br>
- 1. Iz imenika s slikami virtualnih računalnikov dvakrat povlecite sliki SimpleArbiterVPN ter VPNClient.<br>
- 2. Z VirtualBoxom (ali ostalim programom za virtualne računalnike) ustvarite dva virtualna računalnika in jim kot disk za shranjevanje podajte VPNCLient.vdi ter SimpleArbiterVPN.vdi.<br>
- 3. Na obeh nastavite dva omrežna vmesnika (NAT in Internal) in jih zaženite.<br>
- 4. Na oba VM-a se prijavite z uporabnikom <strong>root</strong> in geslom <strong>kaboom</strong> .</p>
-<p><h3><u><strong><em>Prvi del naloge: Nastavi OpenVPN na SimpleArbiterVPN in VPNClient.</em></strong></u></h3>
-<p><h4><u><strong><em>Nastavitve na strežniku:</em></strong></u></h4>
- 1. Prenesite pakete <strong>uml-utilities</strong> -> za nastavljanje navideznih omrežnih vmesnikov in paket (<strong>openvpn</strong>). Npr: sudo apt-get install openvpn<br>
- 2. Nov navidezni omrežni vmesnik kreirate z <strong>tunctl</strong> in mu podate IP z <strong>sudo ifconfig tap0 10.P.Q.R netmask 255.255.255.0</strong><br>
- 3. Nato generirate skupen ključ(ta ključ boste delili z klientom) z ukazom: <strong>openvpn --genkey --secret vpnkljuc.key</strong><br>
- 4. Na strežniku še nastavite konfiguracijsko datoteko tap0.conf, ki naj vsebuje (ločeno po vrsticah) "dev tap0","proto tcp-server", "secret vpnkljuc.key"<br>
- 5. Zaženete openvpn z <strong>openvpn --config /some_directory/somewhere/tap0.conf</strong><br/>
-<p><h4><u><strong><em>Nastavitve na klientu:</em></strong></u></h4>
-1., 2. koraka sta ista kot pri nastavitvah na strežniku<br>
-3. Kreirajte konfiguracijsko datoteko tap0.conf, ki naj vsebuje (ločeno po vrsticah) "remote IP_VAŠEGA_VPN_SERVERJA", "dev tap0", "proto tcp-client", "secret vpnkljuc.key"<br>
-4. Na OpenVPN strežnik se povežete z <strong>openvpn --config /some_directory/somewhere/tap0.conf</strong><br/>
-<p>
- <u><strong><em><h3>Drugi del naloge: Dostop prek NFS do imenika /home/test/IME_IMENIKA </h3></em></strong></u>
-<p><h4><u><strong><em>Nastavitve na strežniku:</em></strong></u></h4>
- 1. Z ukazom "sudo apt-get install nfs-kernel-server" namestimo nfs program<br>
- 2. Uredimo mapo exports "sudo nano /etc/exports" in kreiramo direktorij /home/test/IME_IMENIKA<br/>
- 3. V datoteko exports dodamo /home/test/bla IP_klienta
- 4. Share shranimo z sudo exportfs -a
- 5. NFS strežnik štartamo z "sudo service nfs-kernel-server start"
-<p><h4><u><strong><em>Nastavitve na klientu:</em></strong></u></h4>
- 1. Z ukazom "sudo apt-get install nfs-common" namestimo programček nfs-common, da lahko kasneje pripnemo share<br/>
- 2. Na klientu moramo urediti še mount tega direktorija: "sudo mkdir -p /mnt/nfs/home/test" in "sudo mount IP_SERVERJA:/home/test"<br/>
- 3. Za avtomatski mount ob ponovnem zagonu, dodamo prejšnje ukaze v datoteko /etc/fstab <br/>
-
-<p><h3><u><strong><em>How-to za uporabo kpov-judge za OpenVPN</em></strong></u></h3>
-
- </font>
-
-<hr>
-<p>
-howto: task_check(results, params):
- Metoda dobi, kot prvi argument rezultat metode task(...), kot drugi pa
- rezultat funkcije gen_params().
-
- Vrne stevilo pridobljenih tock.
-
-
-howto: task(...):
- Metoda prejme naslednje argumente:
- - IP naslov VPN streznika
- - DNS naslov VPN streznika
- - IP naslov klienta 1
- - DNS naslov klienta 1
- - IP naslov klienta 2
- - DNS naslov klienta 2
-
- Vrne slovar rezultatov:
-
- results['SimpleArbiter_is_VPN_set_up']
- pove ali je VPN streznik nastavljen
-
- results['SimpleArbiter_is_VPN_running']
- pove ali je VPN streznik zagnan
-
- results['SimpleArbiter_ping_C1']
- ping rezultati (streznik -> klient1)
-
- results['SimpleArbiter_ping_C2']
- ping rezultati (streznik -> klient2)
-
- results['SimpleArbiter_nmap_results']
- pove ali sta oba klienta povezana na pravi VPN streznik
-
- results['SimpleArbiter_dir_vpn_contents']
- kljuc, ce se ta nahaja v ustreznem imeniku
-
- results['SimpleArbiter_nfs_access_control_list']
- preveri ce NFS dovoljuje dostop do /home/test/IME_UPORABNIKA
-
- results['VPNClient1_ping_VPN_server']
- ping rezultati (klient 1 -> strežnik)
-
- results['VPNClient2_ping_VPN_server']
- ping rezultati (klient 2 -> strežnik)
-
-</p>
-
-</body>
-
-</html>
diff --git a/kpov_judge/tasks/openvpn_simple_smb/task.py b/kpov_judge/tasks/openvpn_simple_smb/task.py deleted file mode 100644 index 5d7c22f..0000000 --- a/kpov_judge/tasks/openvpn_simple_smb/task.py +++ /dev/null @@ -1,261 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si': '''\ -<p> -Postavi dva navidezna računalnika: <em>SimpleArbiter</em> in <em>VPNClient1</em>. Poskrbite, da bosta povezana med seboj in v internet. Na <em>VPNClient1</em> namestite OpenVPN in program za nadzor nad virtualnimi napravami (s katerim kreirate napravo <code>tap</code>). - -<p> -Na strežniku <em>SimpleArbiter</em> že teče strežnik in uporablja skrivnost, ki jo najdete tudi na <em>VPNClient1</em> v domačem imeniku uporabnika <code>student</code>. Na <em>VPNClient1</em> vzpostavite VPN tako, da napišete primerno datoteko z nastavitvami. Računalniku <em>VPNClient1</em> na navideznem lokalnem omrežju nastavite naslov -<code>{{IP_VPNClient1}}</code>. - -<p> -Nato poskrbite, da bo na <em>VPNClient1</em> na navideznem omrežju prek NFS omogočen -dostop do imenika <code>/home/test/{{DIRNAME}}</code>. V ta imenik skopirajte datoteke, ki so prek SMB dostopne na <em>SimpleArbiter</em>. -''', - 'en': '''\ -<p> -Setup two virtual machines: <em>SimpleArbiter</em> and <em>VPNClient1</em>. Set the client's network up so that it has access to the internal network and the internet. On <em>VPNClient1</em>, install OpenVPN and a program for supervising virtual devices -(which you will use to create a <code>tap</code> device). On the VPN, set the IP for -<em>VPNClient1</em> to <code>{{IP_VPNClient1}}</code>. - -<p> -An OpenVPN server is already running on <em>SimpleArbiter</em>. Use the secret -available on <em>VPNClient1</em> in the home directory of user <code>student</code> to connect to the VPN server on <em>SimpleArbiter</em>. To do that, you will have to write your -own OpenVPN configuration file. - -<p> -After you have set up the VPN, make the directory <code>/home/test/{{DIRNAME}}</code> on <em>VPNClient1</em> available over NFS from <em>SimpleArbiter</em> over -your VPN. Copy files that are available from <em>SimpleArbiter</em> over SMB to <code>/home/test/{{DIRNAME}}</code>. -''' -} - -computers = { - 'SimpleArbiter': { - 'disks': [ - { - 'name': 'simpleArbiterDhcpGWVPN', - }, - ], - 'network_interfaces': [ - { - 'network': 'test-net' - }, - { - 'network': 'net1' - } - ], - 'flavor': 'm1.tiny', - 'config_drive': False - }, - 'VPNClient1': { - 'disks': [ - { 'name': 'student-VPNClient1', - }, - ], - 'network_interfaces': [ - { - 'network': 'net1' - } - ], - 'flavor': 'm1.tiny', - 'config_drive': False - }, -} - -networks = { - 'test-net': { - 'public': True - }, - # Used for the VPN tunnel - 'net1': { - 'public': False - } -} - -#Tukaj sem generiral tri parametre, prosil bi če se upoštevajo pri Tasku. -params_meta = { - 'IP_SimpleArbiterVPN': {'descriptions':{'si':'IP za SimpleArbiter na VPN'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, - 'IP_VPNClient1': {'descriptions':{'si':'IP klienta na VPN'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, - 'IP_LANClient1': {'descriptions':{'si':'IP klienta na LAN'}, 'w': True, 'public': True, 'type': 'IP', 'generated': False}, - 'DIRNAME': {'descriptions':{'si':'Imenik, dostopen prek NFS'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, - 'secret_random_seed': {'descriptions':{'si':'Seme za skrivnost'}, 'w': False, 'public': False, 'type': None, 'generated': True}, -} - -def task(IP_SimpleArbiterVPN, IP_VPNClient1, IP_LANClient1, DIRNAME): - import collections - from pexpect import pxssh # Used to set up an SSH connection to a remote machine - import pexpect # Allows the script to spawn a child application and control it as if a human were typing commands - - # The necessary things we need to check if the task was performed correctly - results = collections.defaultdict(str) - - # VPNClient1 - sC1 = pxssh.pxssh(encoding='utf-8') - sC1.login(IP_LANClient1, 'student', 'vaje') - - # sA - results['SimpleArbiter_ifconfig'] = pexpect.run( - 'ifconfig -a', encoding='utf-8', env={'PATH': '/bin:/sbin'}) - results['SimpleArbiter_route'] = pexpect.run( - 'route -n', encoding='utf-8', env={'PATH': '/bin:/sbin'}) - - # Pings each of the clients - # 10.8.0.6 and 10.8.0.10 are the first two default addresses distributed by OpenVPN - # Will output everything ping outputs (set to ping 3 times) - results['SimpleArbiter_ping_C1'] = pexpect.run( - 'ping -c 3 {}'.format(IP_VPNClient1), encoding='utf-8') - results['SimpleArbiter_traceroute'] = pexpect.run( - 'traceroute {}'.format(IP_VPNClient1), encoding='utf-8') - sC1.sendline('cat /etc/exports') - sC1.prompt() - output = sC1.before - results['VPNClient1_nfs_access_control_list'] = output - results['SimpleArbiter_mount'] = pexpect.run( - 'sudo mount {}:/home/test/{} /mnt'.format(IP_VPNClient1, DIRNAME), encoding='utf-8') - results['SimpleArbiter_mount_result'] = pexpect.run( - 'sudo mount', encoding='utf-8') - results['SimpleArbiter_ls'] = pexpect.run( - 'ls /mnt', encoding='utf-8') - pexpect.run( - 'sudo umount /mnt', encoding='utf-8') - - # Ping the VPN server - sC1.sendline('ping -c 3 {0}'.format( IP_SimpleArbiterVPN )) - sC1.prompt() - results['VPNClient1_ping_VPN_server'] = sC1.before - - sC1.sendline('/sbin/ifconfig -a') - sC1.prompt() - results['VPNClient1_ifconfig'] = sC1.before - - sC1.sendline('ps xa') - sC1.prompt() - results['VPNClient1_ps'] = sC1.before - sC1.logout() - - return results - -def gen_params(user_id, params_meta): - params = dict() - #Tukaj sem generiral te tri parametre (ime skupne skrivnosti je heidi ) - #(ime imenika kjer naj bo shranjena skupna skrivnost naj bo openvpn) - #(HASH bo naključno generiran niz iz user_id s katerim se bo preverjalo plagiatorstvo) - import random - r = random.Random(user_id) - net = kpov_util.IPv4_subnet_gen(r, '10.168.0.0/16', 24) - params['IP_VPNClient1'], params['IP_SimpleArbiterVPN'] = kpov_util.IPv4_addr_gen(r, net, 2) - params['DIRNAME'] = kpov_util.fname_gen(r, extension=False) - params['secret_random_seed']=str(r.random()) - return params - - -def task_check(results, params): - import re - score = 0 - hints = [] - - IP_SA = params['IP_SimpleArbiterVPN'].replace('.', '\.') - IP_C1 = params['IP_VPNClient1'].replace('.', '\.') - rs = r"tap0: flags=.* mtu 1500\r\n +inet {}".format(IP_SA) - if re.search(rs, - results['SimpleArbiter_ifconfig']): - score += 1 - else: - hints.append("ifconfig on SimpleArbiter not OK") - - if re.search( - "PING.*\r\n64 bytes from {}: icmp_seq=[0-9]+ ttl=64 time=[0-9.]* ms".format(IP_C1), - results['SimpleArbiter_ping_C1']): - score += 1 - else: - hints.append("ping from server not OK") - rs = "1 +{0} \({0}\)".format(IP_C1) - if re.search(rs, results['SimpleArbiter_traceroute']): - score += 1 - else: - hints.append("traceroute not OK") - if results['VPNClient1_nfs_access_control_list'].find( - '/home/test/' + params['DIRNAME'] + ' ') >= 0: - score += 1 - if results['SimpleArbiter_mount_result'].find( - '{}:/home/test/{} on /mnt type nfs'.format( - params['IP_VPNClient1'], params['DIRNAME'])): - score += 1 - else: - hints.append("mount not OK") - - # get r into the correct state - r = random.Random(params['secret_random_seed']) - s = "\n".join(["".join([r.choice("0123456789abcdef") for i in range(32)]) - for i in range(16)]) - keyfile = kpov_util.fname_gen(r, extension=False) - - # now check the filenames - fnames_ok = True - for i in range(3): - fname = kpov_util.fname_gen(r, False) - foo = kpov_util.fortune(r, 4096) - pos = results['SimpleArbiter_ls'].find(fname + '.txt') - fnames_ok = fnames_ok and pos >= 0 - if fnames_ok: - score += 2 - else: - hints.append("shared filenames not OK:") - - # Ping the VPN server - if re.search( - "PING.*\r\n64 bytes from {}: icmp_seq=[0-9]+ ttl=64 time=[0-9.]* ms".format(IP_SA), - results['VPNClient1_ping_VPN_server']): - score += 1 - else: - hints.append("ping from client not OK") - - rs = r"tap0: flags=.* mtu 1500\r\n +inet {}".format(IP_C1) - if re.search(rs, results['VPNClient1_ifconfig']): - score += 1 - else: - hints.append("ifconfig on VPNClient1 not OK") - - if results['VPNClient1_ps'].find('openvpn') > 0: - score += 1 - else: - hints.append("openvpn not found running on VPNClient") - return score, hints - -def prepare_disks(templates, task_params, global_params): - #guestmount -a d -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt - #asistent je pocasnela :) - import random - r = random.Random(task_params['secret_random_seed']) - s = "\n".join([ - "".join([r.choice("0123456789abcdef") for i in range(32)]) - for i in range(16)]) - s = """# -# 2048 bit OpenVPN static key -# ------BEGIN OpenVPN Static key V1----- -{} ------END OpenVPN Static key V1----- -""".format(s) - keyfile = kpov_util.fname_gen(r, extension=False) + ".key" - templates['simpleArbiterDhcpGWVPN'].write("/etc/openvpn/secret.key", s) - netaddr_s = """auto tap0 -iface tap0 inet static - openvpn server - pre-up tunctl -t tap0 - address {} - netmask 255.255.255.0 -""".format(task_params['IP_SimpleArbiterVPN']) - templates['simpleArbiterDhcpGWVPN'].write_append("/etc/network/interfaces", netaddr_s) - for i in range(3): - fname = kpov_util.fname_gen(r, False) - templates['simpleArbiterDhcpGWVPN'].write( - "/srv/smb/" + fname + '.txt', - kpov_util.fortune(r, 4096)) - write_default_config(templates['simpleArbiterDhcpGWVPN'], global_params) - templates['student-VPNClient1'].write("/home/student/" + keyfile, s) - # uid, gid (student = ) - templates['student-VPNClient1'].chown(1000, 1000, "/home/student/" + keyfile) - - write_default_config(templates['simpleArbiterDhcpGWVPN'], global_params) diff --git a/kpov_judge/tasks/openwrt/task.py b/kpov_judge/tasks/openwrt/task.py deleted file mode 100644 index 8872989..0000000 --- a/kpov_judge/tasks/openwrt/task.py +++ /dev/null @@ -1,103 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si':""" -<pre>Postavi dva navidezna računalnika - simpleArbiter z diska SimpleArbiter ter -OpenWRT z diska OpenWRT. Na disku OpenWRT je nameščena distribucija OpenWRT. -Nastavi OpenWRT tako, da bo imel dva omrežna vmesnika - en naj bo povezan na Internet, -drugo na omrežje, na katerem bo SimpleArbiter. Na SimpleArbiter preberi naslov omrežja -med OpenWrt in SimpleArbiter ter njuna naslova.</pre> -""" -} - -computers = { - 'maliNetworkManager': { - 'disks': [ - { 'name': 'maliNetworkManager', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'maliBrezNetworkManager': { - 'disks': [ - { 'name': 'maliBrezNetworkManager', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterDhcp', - }, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'IP_NM': {'descriptions': {'si': 'Naslov maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'DNS_NM': {'descriptions': {'si': 'DNS za maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'IP_static': {'descriptions': {'si': 'Naslov maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, - 'DNS_static': {'descriptions': {'si': 'DNS za maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, -} - -def task(IP_NM, DNS_NM, IP_static, DNS_static): - from pexpect import pxssh - import pexpect - results = dict() - peer_user = 'student' - peer_passwd = 'vaje' - sA = pxssh.pxssh() - sB = pxssh.pxssh() - sA.login(IP_NM, peer_user, peer_passwd) - sB.login(IP_static, peer_user, peer_passwd) - # sA - # make sure NM is not handling eth0 - results['NM_nmcli'] = sA.run('nmcli d') - results['NM_nslookup'] = sA.run('nslookup www.arnes.si') - # sB - # check whether NM is handling eth0 - results['static_nmcli'] = sB.run('nmcli d') - results['static_nslookup'] = sB.run('nslookup www.arnes.si') - sA.logout() - sB.logout() - return results - -def gen_params(user_id, params_meta): - params = dict() - r = random.Random(user_id) - # IP_NM, DNS_NM, IP_static, DNS_static) - dns_servers = ['193.2.1.66', '193.2.1.72', '8.8.8.8', '8.8.4.4', '208.67.222.222', '208.67.220.220'] - net = kpov_util.IPv4_subnet_gen(r, '172.23.128.0/18', 24) - params['DNS_NM'] = r.choice(dns_servers) - params['IP_NM'], params['IP_static'] = kpov_util.IPv4_addr_gen(r, net, 2) - params['DNS_static'] = r.choice(dns_servers) - return params - -def task_check(results, params): - import re - score = -9 - hints = [] - if results['NM_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_NM'])) > -1: - score += 3 - if results['static_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_static'])) > -1: - score += 3 - if re.search(r'eth0 +802-.*connected', results['NM_nmcli']): - score += 2 - if not re.search(r'eth0 +802-.*connected', results['static_nmcli']): - score += 2 - score = 0 - return score, hints - -def prepare_disks(templates, task_params, global_params): - write_default_config(templates['simpleArbiterDhcp'], global_params) diff --git a/kpov_judge/tasks/public_ip_ssh/task.py b/kpov_judge/tasks/public_ip_ssh/task.py deleted file mode 100644 index 8dcb858..0000000 --- a/kpov_judge/tasks/public_ip_ssh/task.py +++ /dev/null @@ -1,52 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si':""" -<pre>Ustvari dva navidezna računalnika. Za disk enega (imenujmo ga SimpleArbiter) uporabite -sliko diska Test. Na drugega (imenujmo ga A) namesti poljubno Linux distribucijo. Na SimpleArbiter -preberi uporabniško ime in geslo uporabnika, ki ga moraš ustvariti na A. Poskrbi, da se bo novoustvarjeni -uporabnik s svojim geslom lahko na A prijavil z Interneta.</pre> -""" -} - -computers = { - 'SimpleArbiter': { - 'disks':[ - { 'name': 'simpleArbiter' }], - 'network_interfaces':[{'network':'net1'}], - }, - 'A': { - 'disks':[], - 'network_interfaces':[{'network':'net2'}], - } - -} - -networks = { 'net1': {'public': True}, 'net2': {'public': True} } - -params_meta = { - 'peer_ip': {'descriptions': {'si': 'Naslov ssh strežnika'}, 'w': True, 'public':True, 'type': 'IP', 'generated': False}, - 'peer_user': {'descriptions': {'si': 'ime uporabnika'}, 'w': False, 'public': True, 'type': 'username', 'generated': True}, - 'peer_passwd': {'descriptions': {'si': 'geslo uporabnika'}, 'w': False, 'public': True, 'type': 'password', 'generated': True}, -} - -def task(peer_ip, peer_user, peer_passwd): - return dict() - -def gen_params(user_id, params_meta): - return kpov_util.default_gen(user_id, params_meta) - -def task_check(results, params): - from pexpect import pxssh - ip, user, passwd = params['peer_ip'], params['peer_user'], params['peer_passwd'] - results = {} - try: - s = pxssh.pxssh(encoding='utf-8') - s.login(ip, user, passwd) - s.logout() - return 10, [] - except Exception as ex: - return 0, [str(ex)] - -def prepare_disks(templates, task_params, global_params): - write_default_config(templates['simpleArbiter'], global_params) diff --git a/kpov_judge/tasks/public_ssh_motd_http/task.py b/kpov_judge/tasks/public_ssh_motd_http/task.py deleted file mode 100644 index bd48d77..0000000 --- a/kpov_judge/tasks/public_ssh_motd_http/task.py +++ /dev/null @@ -1,105 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si':""" -<pre>Na internet postavi računalnik, ki bo dostopen prek ssh in http. -Poskrbi, da bo na računalniku ustvarjen uporabnik test z geslom test. Ob prijavi naj se -uporabniku v MOTD izpiše (le) zgodbica ali pesmica, ki vam je všeč, dolžine vsaj 50 znakov. -Ista zgodbica ali pesmica naj se na strežniku izpiše, če se na strežnik kdorkoli poveže prek -http.</pre> -""" -} - -computers = { - 'maliNetworkManager': { - 'disks': [ - { 'name': 'maliNetworkManager', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'maliBrezNetworkManager': { - 'disks': [ - { 'name': 'maliBrezNetworkManager', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterDhcp', - }, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'IP_NM': {'descriptions': {'si': 'Naslov maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'DNS_NM': {'descriptions': {'si': 'DNS za maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'IP_static': {'descriptions': {'si': 'Naslov maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, - 'DNS_static': {'descriptions': {'si': 'DNS za maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, -} - -def task(IP_NM, DNS_NM, IP_static, DNS_static): - from pexpect import pxssh - import pexpect - results = dict() - peer_user = 'student' - peer_passwd = 'vaje' - sA = pxssh.pxssh() - sB = pxssh.pxssh() - sA.login(IP_NM, peer_user, peer_passwd) - sB.login(IP_static, peer_user, peer_passwd) - # sA - # make sure NM is not handling eth0 - results['NM_nmcli'] = sA.run('nmcli d') - results['NM_nslookup'] = sA.run('nslookup www.arnes.si') - # sB - # check whether NM is handling eth0 - results['static_nmcli'] = sB.run('nmcli d') - results['static_nslookup'] = sB.run('nslookup www.arnes.si') - sA.logout() - sB.logout() - return results - -def gen_params(user_id, params_meta): - params = dict() - r = random.Random(user_id) - # IP_NM, DNS_NM, IP_static, DNS_static) - dns_servers = ['193.2.1.66', '193.2.1.72', '8.8.8.8', '8.8.4.4', '208.67.222.222', '208.67.220.220'] - net = kpov_util.IPv4_subnet_gen(r, '172.23.128.0/18', 24) - params['DNS_NM'] = r.choice(dns_servers) - params['IP_NM'], params['IP_static'] = kpov_util.IPv4_addr_gen(r, net, 2) - params['DNS_static'] = r.choice(dns_servers) - return params - -def task_check(results, params): - import re - score = -9 - hints = [] - if results['NM_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_NM'])) > -1: - score += 3 - if results['static_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_static'])) > -1: - score += 3 - if re.search(r'eth0 +802-.*connected', results['NM_nmcli']): - score += 2 - if not re.search(r'eth0 +802-.*connected', results['static_nmcli']): - score += 2 - score = 0 - return score, hints - -def prepare_disks(templates, task_params, global_params): -# d = templates['simpleArbiterDhcp'] - write_default_config(templates['simpleArbiterDhcp'], global_params) - diff --git a/kpov_judge/tasks/radius_multiple_realms/task.py b/kpov_judge/tasks/radius_multiple_realms/task.py deleted file mode 100644 index 0067f46..0000000 --- a/kpov_judge/tasks/radius_multiple_realms/task.py +++ /dev/null @@ -1,110 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si':""" -<pre>Postavi tri navidezne računalnike - SimpleArbiter z diska simpleArbiterDhcp, -RadiusA ter RadiusB. Na simpleArbiterDhcp preberi imeni domen DOMENA_A ter DOMENA_B, -uporabniški imeni USER_A in USER_B, gesli PASSWORD_A in PASSWORD_B ter skrivnosti -SECRET_A in SECRET_B. Poskrbi, da se bo lahko radius klient s SimpleArbiter povezal -na RadiusA s skrivnostjo SECRET_A ter na RadiusB s skrivnostjo SECRET_B. Poskrbi še, -da bo v nastavitvah OpenRadius na RadiusA obstajal uporabnik USER_A z geslom PASSWORD_A ter -na RadiusB uporabnik USER_B z geslom PASSWORD_B. - -Poskrbi, da bo strežnik RadiusA odgovarjal na zahtevke za avtentikacijo uporabnikov na domeni DOMENA_A, -zahtevke za uporabnike na domeni DOMENA_B pa bo preposlal naprej na RadiusB. RadiusB naj odgovarja na -zahtevke za uporabnike na domeni DOMENA_B, zahtevke za uporabnike na DOMENA_A pa naj preprosto zavrže.</pre> -""" -} - -computers = { - 'maliNetworkManager': { - 'disks': [ - { 'name': 'maliNetworkManager', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'maliBrezNetworkManager': { - 'disks': [ - { 'name': 'maliBrezNetworkManager', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterDhcp', - }, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'IP_NM': {'descriptions': {'si': 'Naslov maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'DNS_NM': {'descriptions': {'si': 'DNS za maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'IP_static': {'descriptions': {'si': 'Naslov maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, - 'DNS_static': {'descriptions': {'si': 'DNS za maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, -} - -def task(IP_NM, DNS_NM, IP_static, DNS_static): - from pexpect import pxssh - import pexpect - results = dict() - peer_user = 'student' - peer_passwd = 'vaje' - sA = pxssh.pxssh() - sB = pxssh.pxssh() - sA.login(IP_NM, peer_user, peer_passwd) - sB.login(IP_static, peer_user, peer_passwd) - # sA - # make sure NM is not handling eth0 - results['NM_nmcli'] = sA.run('nmcli d') - results['NM_nslookup'] = sA.run('nslookup www.arnes.si') - # sB - # check whether NM is handling eth0 - results['static_nmcli'] = sB.run('nmcli d') - results['static_nslookup'] = sB.run('nslookup www.arnes.si') - sA.logout() - sB.logout() - return results - -def gen_params(user_id, params_meta): - params = dict() - r = random.Random(user_id) - # IP_NM, DNS_NM, IP_static, DNS_static) - dns_servers = ['193.2.1.66', '193.2.1.72', '8.8.8.8', '8.8.4.4', '208.67.222.222', '208.67.220.220'] - net = kpov_util.IPv4_subnet_gen(r, '172.23.128.0/18', 24) - params['DNS_NM'] = r.choice(dns_servers) - params['IP_NM'], params['IP_static'] = kpov_util.IPv4_addr_gen(r, net, 2) - params['DNS_static'] = r.choice(dns_servers) - return params - -def task_check(results, params): - import re - score = -9 - hints = [] - if results['NM_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_NM'])) > -1: - score += 3 - if results['static_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_static'])) > -1: - score += 3 - if re.search(r'eth0 +802-.*connected', results['NM_nmcli']): - score += 2 - if not re.search(r'eth0 +802-.*connected', results['static_nmcli']): - score += 2 - score = 0 - return score, hints - -def prepare_disks(templates, task_params, global_params): - write_default_config(templates['simpleArbiterDhcp'], global_params) - diff --git a/kpov_judge/tasks/radius_mysql_pam/howtos/en/index.html b/kpov_judge/tasks/radius_mysql_pam/howtos/en/index.html deleted file mode 100644 index ac53a1f..0000000 --- a/kpov_judge/tasks/radius_mysql_pam/howtos/en/index.html +++ /dev/null @@ -1,34 +0,0 @@ -<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=utf-8">
-</head>
-
-<body><font face="Georgia, Times New Roman, Times, serif">
-<strong><h1>Radius mysql:</h1></strong>
-<p><strong><h2>Quick how to:</h2></strong><br>
- Setup the OpenRadius server and add users. Use MySql as the database.</p>
-<strong><h2>Instructions:</h2></strong>
- <ol>
- <li>Create two virtual machines - SimpleArbiter (use the simpleArbiterDhcp.vdi disk) and RadiusServer. Discs for virtual machines are located on polz.si/media/uploads/kpov/virtualke.</li>
- <li>Create another two virtual machines using the disks VPNCLient.vdi and SimpleArbiterVPN.vdi.</li>
- <li>Setup both VMs so that they use two network adapters - NAT and Internal network.</li>
- <li>Login with the username <strong>student</strong> and password <strong>student</strong> on both VMs.</li>
- </ol>
-
-<h3><u><strong><em>Part one: Setup OpenRadius.</em></strong></u></h3>
- <ol>
- <li>Install OpenRadius on the RadiusServer VM (configuration files are: /etc/openradius/configuration and /etc/openradius/behaviour)</li>
- <li>Add a user and assign him a shared secret. This should be configured in the /etc/openradius/configuration file. (More info: <a href = "http://sites.e-advies.nl/openradius/doc-using-openradius.html"> http://sites.e-advies.nl/openradius/doc-using-openradius.html </a>)</li>
- <li>Create a connection from SimpleArbiter to RadiusServer using the secret you configured.</strong></li>
- </ol>
-<u><strong><em><h3>Part two: Install and setup a MySQL database on RadiusServer</h3></em></strong></u>
- <ol>
- <li>OpenRadius can use the module RadSQL to store users in database.</li>
- <li>Setup a MySQL server: sudo apt-get install mysql-server.</li>
- <li>Connect to the MySQL server: mysql -u root -p.</li>
- <li>Create a database: CREATE DATABASE <database-name>. Create a table <strong>users</strong> with columns <strong>username</strong> and <strong>password</strong>.</li>
- </ol>
-</body>
-
-</html>
diff --git a/kpov_judge/tasks/radius_mysql_pam/howtos/si/index.html b/kpov_judge/tasks/radius_mysql_pam/howtos/si/index.html deleted file mode 100644 index 612cce9..0000000 --- a/kpov_judge/tasks/radius_mysql_pam/howtos/si/index.html +++ /dev/null @@ -1,40 +0,0 @@ -<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=utf-8">
-</head>
-
-<body><font face="Georgia, Times New Roman, Times, serif">
-<strong><h1>Radius mysql:</h1></strong>
-<p><strong><h2>Naloga na hitro:</h2></strong><br>
- Postaviti je treba RADIUS strežnik in podatkovno bazo.<br>
- Za RADIUS strežnik uporabite FreeRADIUS, za podatkovno bazo pa MySQL.
-</p>
-<p><strong><h2>Navodila:</h2></strong><br>
- 1. Ustvarite dva navidezna računalnika z imenom SimpleArbiter in RadiusServer.<br>
- Za SimpleArbiter uporabite simpleArbiterDhcp, za RadiusServer pa lahko uporabite poljubno virtualko.<br>
- ( virtualke dobiš na polz.si/media/uploads/kpov/virtualke)<br>
- 2. Z VirtualBoxom (ali ostalim programom za virtualne računalnike) ustvarite dva virtualna računalnika in jim kot disk za shranjevanje podajte simpleArbiterDhcp.vdi ter base-student-console-2014.vdi.<br>
- 3. Na obeh nastavite dva omrežna vmesnika (NAT in Internal) in jih zaženite.<br>
- 4. Na oba VM-a se prijavite z uporabnikom <strong>student</strong> in geslom <strong>vaje</strong> .</p>
-<p><h3><u><strong><em>Prvi del naloge: Postavi OpenRadius.</em></strong></u></h3>
- 1. Namesti FreeRadius na virtualki RadiusServer z ukazom "sudo apt-get install freeradius".<br>
- ( pomembni sta dve konfiguracijski datoteki /etc/openradius/configuration in /etc/openradius/behaviour<br>
- 2. Dodaj uporabnika in mu dodaj skupno skrivnost v /etc/openradius/configuration datoteko (več o dodajanju lahko izveš na: "http://sites.e-advies.nl/openradius/doc-using-openradius.html" <br>
- 3. Nato se z to skrivnostjo povežete iz SimpleArbiter na RadiusServer</strong><br>
-
- Namestimo freeradius z ukazom apt-get install freeradius-mysql
- V datoteku /etc/freeradius/client.conf spremenimo skrivnost (secret)
- Nato pa v datoteki /etc/freeradius/users dodamo uporabnika
-
-
-<u><strong><em><h3>Drugi del naloge: Namestitev in vzpostavitev baze MySQL na RadiusServer </h3></em></strong></u>
- 1. Pri OpenRadius-u imamo modul RadSQL, s katerim lahko vzpostavimo hranjenje uporabnikov v bazi<br>
- 2. Namestimo MySQL server z ukazom "sudo apt-get install mysql-server"<br/>
- 3. VNato se prijavimo v Mysql server z ukazom mysql -u root -p <br/>
- 4. Bazo ustvarimo z ukazom primer:
- CREATE DATABASE kwhbRgJY;
- GRANT ALL ON kwhbRgJY.* To MajaNovak80@localhost IDENTIFIED BY "y06gmo2Z";
-</body>
-
-</html>
diff --git a/kpov_judge/tasks/radius_mysql_pam/task.py b/kpov_judge/tasks/radius_mysql_pam/task.py deleted file mode 100644 index 5051bb4..0000000 --- a/kpov_judge/tasks/radius_mysql_pam/task.py +++ /dev/null @@ -1,212 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si': '''\ -<p> -Ustvari dva navidezna računalnika: <em>SimpleArbiter</em> in <em>RadiusServer</em>. Na <em>RadiusServer</em> namesti FreeRadius ter MySQL. - -<p> -Ustvari podatkovno bazo MySQL z imenom <code>{{MYSQL_DB_NAME}}</code>. Ustvari uporabnika za MySQL z imenom <code>{{MYSQL_ADMIN_USER}}</code> in geslom <code>{{MYSQL_ADMIN_PASSWORD}}</code>, ki naj ima poln dostop do te baze. Prijava za tega uporabnika mora biti omogočena tudi s <em>SimpleArbiter</em>. - -<p> -Nastavi FreeRadius tako, da bo podatke o uporabnikih in geslih pobiral iz baze MySQL z imenom <code>{{MYSQL_DB_NAME}}</code>. Podatkovna shema (imena tabel) naj ostane -privzeta. - -<p> -Dostop do strežnika Radius na <em>RadiusServer</em> s <em>SimpleArbiter</em> naj bo mogoč ob uporabi skrivnosti <code>{{RADIUS_SECRET}}</code>. - -<p> -V bazi ustvari vnos, ki bo omogočil, da se na <em>RadiusServer</em> s pomočjo protokola Radius avtenticira uporabnik <code>{{RADIUS_USERNAME}}</code> z geslom <code>{{RADIUS_PASSWORD}}</code>. - -<p> -Nastavi PAM za prijavo (login) tako, da bo dovolj, če se uporabnik na SSH predstavi z uporabniškim imenom in geslom, ki sta veljavna na FreeRadius, ne glede na <code>/etc/shadow</code> oziroma <code>/etc/password</code>. -''', - 'en': '''\ -<p> -Create two virtual machines: <em>SimpleArbiter</em> and <em>RadiusServer</em>. On <em>RadiusServer</em>, install FreeRadius and MySQL. - -<p> -Create a MySQL database named <code>{{MYSQL_DB_NAME}}</code>. Create a mysql user with the username <code>{{MYSQL_ADMIN_USER}}</code> and password <code>{{MYSQL_ADMIN_PASSWORD}}</code>. Make sure this user can access the database from <em>SimpleArbiter</em> and has administrative rights over the <code>{{MYSQL_DB_NAME}}</code> database. - -<p> -Set up FreeRadius so that the data about users and passwords is stored in the MySQL database. Keep the default schema (table names). - -<p> -Make the Radius server on <em>RadiusServer</em> accessible from <em>SimpleArbiter</em> using <code>{{RADIUS_SECRET}}</code> as the secret. - -<p> -Create an entry in the database which will enable a user with the username <code>{{RADIUS_USERNAME}}</code> to authenticate themself against the Radius server using the password <code>{{RADIUS_PASSWORD}}</code>. - -<p> -Set up PAM to enable login over SSH using a username and password which are -valida on the FreeRadius server, regardless of the entries in <code>/etc/shadow</code> -and/or <code>/etc/password</code>. -''', -} - -#KABOOM - -computers = { - 'RadiusServer': { - 'disks': [ - { 'name': 'student-RadiusServer', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterDhcpGW', - }, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'IP_RS': {'descriptions': {'si': 'Naslov RadiusServer', 'en': 'RadiusServer IP address'}, 'w': True, 'public':True, 'type': 'IP', 'generated': False}, - 'RADIUS_SECRET':{'descriptions': {'si': 'Skrivnost RADIUS', 'en': 'RADIUS secret'}, 'w': False, 'public':True, 'type': 'password', 'generated': True}, - 'RADIUS_USERNAME': {'descriptions': {'si': 'Uporabniško ime', 'en': 'Username'}, 'w': True, 'public':True, 'type': 'username', 'generated': False}, - 'RADIUS_PASSWORD': {'descriptions': {'si': 'Geslo uporabnika', 'en': 'Password'}, 'w': False, 'public':True, 'type': None, 'generated': True}, - 'MYSQL_DB_NAME': {'descriptions': {'si': 'Ime baze v mysql', 'en': 'Database name'}, 'w': False, 'public':True, 'type': None, 'generated': True}, - 'MYSQL_ADMIN_USER':{'descriptions': {'si': 'Uporabniško ime za dostop do MySQL', 'en': 'MySQL username'}, 'w': False, 'public':True, 'type': 'username', 'generated': True}, - 'MYSQL_ADMIN_PASSWORD': {'descriptions': {'si': 'Geslo za dostop do MySQL', 'en': 'MySQL password'}, 'w': True, 'public':True, 'type': 'password', 'generated': True}, - 'MYSQL_SEED':{'descriptions': {'si': 'seed', 'en': 'seed'}, 'w': False, 'public':True, 'type': None, 'generated': True}, -} - -def task(IP_RS, RADIUS_SECRET, RADIUS_USERNAME, RADIUS_PASSWORD, - MYSQL_DB_NAME, MYSQL_ADMIN_USER, MYSQL_ADMIN_PASSWORD, MYSQL_SEED): - import collections - import random - import pexpect - - r = random.Random(MYSQL_SEED) - MYSQL_TEST_USER = kpov_util.username_gen(r) - MYSQL_TEST_PASSWORD = kpov_util.alnum_gen(r, 7) - RADIUS_NEW_PASSWORD = kpov_util.alnum_gen(r, 7) - - results = collections.defaultdict(str) - - # Testiranje radius strežnika - results['Test_RadiusServer'] = pexpect.run('radtest {0} {1} {2} 1812 {3}'.format( - RADIUS_USERNAME, RADIUS_PASSWORD, IP_RS, RADIUS_SECRET)) - - # Testiranje podatkovne base mysql - mysql = pexpect.spawn('mysql -u {MYSQL_ADMIN_USER} -p{MYSQL_ADMIN_PASSWORD} -h {IP_RS}'.format(**locals())) - mysql.expect("mysql>") - results['mysql_login'] = mysql.before - mysql.sendline('USE {MYSQL_DB_NAME}'.format(**locals())) - mysql.expect("mysql>") - results['database_connect'] = mysql.before - mysql.sendline('SELECT UserName, Value FROM radcheck;') - mysql.expect("mysql>") - results['select_from_users'] = mysql.before - mysql.sendline("INSERT INTO radcheck (UserName, Attribute, Value, Op) VALUES ('{MYSQL_TEST_USER}', 'Cleartext-Password', '{MYSQL_TEST_PASSWORD}', ':=');".format(**locals())) - mysql.expect("mysql>") - - results['radtest_OK'] = pexpect.run('radtest {0} {1} {2} 1812 {3}'.format( - MYSQL_TEST_USER, MYSQL_TEST_PASSWORD, IP_RS, RADIUS_SECRET)) - results['radtest_NOK'] = pexpect.run('radtest {0} {1} {2} 1812 {3}'.format( - MYSQL_TEST_USER, "Flügzeug", IP_RS, RADIUS_SECRET)) - results['radtest_NOK'] = pexpect.run('radtest {0} {1} {2} 1812 {3}'.format( - MYSQL_TEST_USER, "Flügzeug", IP_RS, RADIUS_SECRET)) - - mysql.sendline("UPDATE radcheck SET value='{RADIUS_NEW_PASSWORD}' where UserName='{RADIUS_USERNAME}' and Attribute='Cleartext-Password';".format(**locals())) - - results.update(kpov_util.ssh_test(IP_RS, RADIUS_USERNAME, RADIUS_NEW_PASSWORD)) - - mysql.sendline("UPDATE radcheck SET value='{RADIUS_PASSWORD}' where UserName='{RADIUS_USERNAME}' and Attribute='Cleartext-Password';".format(**locals())) - mysql.expect('mysql>') - mysql.sendline("DELETE FROM radcheck where UserName='{MYSQL_TEST_USER}' and Attribute='Cleartext-Password';".format(**locals())) - mysql.expect('mysql>') - mysql.sendline('\q'); - # TODO Testiranje PAM s testnim uporabnikom - - return results - -def gen_params(user_id, params_meta): - params = dict() - r = random.Random(user_id) - params['RADIUS_SECRET'] = kpov_util.alnum_gen(r, 8) - params['RADIUS_PASSWORD'] = kpov_util.alnum_gen(r, 8) - params['RADIUS_USERNAME'] = kpov_util.username_gen(r) - params['MYSQL_ADMIN_USER'] = kpov_util.alnum_gen(r, 6) - params['MYSQL_ADMIN_PASSWORD'] = kpov_util.alnum_gen(r, 6) - params['MYSQL_DB_NAME'] = kpov_util.alnum_gen(r, 4) - params['MYSQL_SEED'] = str(r.random()) - return params - -def task_check(results, params): - import re - import pickle - score = 0 - hints = [] - r = random.Random(params['MYSQL_SEED']) - MYSQL_TEST_USER = kpov_util.username_gen(r) - MYSQL_TEST_PASSWORD = kpov_util.alnum_gen(r, 7) - RADIUS_NEW_PASSWORD = kpov_util.alnum_gen(r, 7) - s = r"Sent Access-Request Id [0-9]+ from ([0-9]|\.)+:[0-9]+ to {IP_RS}:1812 length [0-9]+\r\n\tUser-Name = \"{RADIUS_USERNAME}\"\r\n\tUser-Password = \"{RADIUS_PASSWORD}\".*Access-Accept Id [0-9]+ from {IP_RS}".format(**params) - #with open('test.pickle', 'w') as f: - # pickle.dump({'pattern': s, 'res': results['Test_RadiusServer']}, f) - if re.search(s, results['Test_RadiusServer'], flags=re.DOTALL): - # print "Test OK" - score += 2 - else: - hints.append('radtest connect output incorrect:' + results['Test_RadiusServer']) - print((results['Test_RadiusServer'], s)) - # Testiranje podatkovne base mysql - s = "Welcome to the MySQL monitor.*Type 'help;' or '\\\\h' for help\\. Type '\\\\c' to clear the current input statement\\.\r\n" - if re.search(s, results['mysql_login'], flags=re.DOTALL): - # print "mysql_login OK" - score += 1 - else: - hints.append("mysql connection string incorrect") - print((results['mysql_login'], s)) - s = " USE {MYSQL_DB_NAME}\r\nReading table information.*Database changed\r\n".format(**params) - if re.search(s, results['database_connect'], flags=re.DOTALL): - # print "database_connect OK" - score += 1 - else: - hints.append('mysql table information string incorrect') - print((results['database_connect'],)) - s = " SELECT UserName, Value FROM radcheck;\r\n.*{RADIUS_USERNAME} *| *{RADIUS_PASSWORD}".format(**params) - if re.search(s, results['select_from_users'], flags=re.DOTALL): - # print "select_from_users OK" - score += 2 - else: - hints.append('mysql user entry in table check failed') - print((results['select_from_users'], )) - - s = r"Sent Access-Request Id [0-9]+ from ([0-9]|\.)+:[0-9]+ to {0}:1812 length [0-9]+\r\n\tUser-Name = \"{1}\"\r\n\tUser-Password = \"{2}\".*Access-Accept Id [0-9]+ from {0}".format(params['IP_RS'], MYSQL_TEST_USER, MYSQL_TEST_PASSWORD) - if re.search(s, results['radtest_OK'], flags=re.DOTALL): - # print "radtest_OK OK" - score += 2 - else: - hints.append('radtest output incorrect:' + results['radtest_OK']) - print((s, results['radtest_OK'])) - - s = r"Sent Access-Request Id [0-9]+ from ([0-9]|\.)+:[0-9]+ to {0}:1812 length [0-9]+\r\n\tUser-Name = \"{1}\"\r\n\tUser-Password = \"Flügzeug\".*Access-Reject Id [0-9]+ from {0}".format(params['IP_RS'], MYSQL_TEST_USER) - if re.search(s, results['radtest_NOK'], flags=re.DOTALL): - # print "radtest_NOK OK" - score += 1 - else: - hints.append('radtest negative output incorrect: ' + results['radtest_NOK']) - print((results['radtest_NOK'], s)) - s = "{RADIUS_USERNAME}@.*:".format(**params) - if re.search(s, results['motd'], flags=re.DOTALL): - # print "login_test OK" - score += 1 - else: - hints.append('login test failed') - print((results['login_test'],s)) - return score, hints - -def prepare_disks(templates, task_params, global_params): - write_default_config(templates['simpleArbiterDhcpGW'], global_params) diff --git a/kpov_judge/tasks/rdate_64bit/task.py b/kpov_judge/tasks/rdate_64bit/task.py deleted file mode 100644 index 9f90014..0000000 --- a/kpov_judge/tasks/rdate_64bit/task.py +++ /dev/null @@ -1,104 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si':""" -<pre>Postavi dva navidezna računalnika - SimpleArbiter z diska simpleArbiterDhcp ter -RdateServer. Na RdateServer postavi strežnik, ki bo poslušal na vratih VRATA_X. -Vsakič, ko se na vrata poveže klient, naj strežnik pošlje število sekund od DATUM_X. -Število naj bo kodirano kot 64-bitno predznačeno število s tankim koncem. - -VRATA_X in DATUM_X preberi na SimpleArbiter.</pre> -""" -} - -computers = { - 'maliNetworkManager': { - 'disks': [ - { 'name': 'maliNetworkManager', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'maliBrezNetworkManager': { - 'disks': [ - { 'name': 'maliBrezNetworkManager', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterDhcp', - }, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'IP_NM': {'descriptions':{'si':'Naslov maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'DNS_NM': {'descriptions':{'si':'DNS za maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'IP_static': {'descriptions':{'si':'Naslov maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, - 'DNS_static': {'descriptions':{'si':'DNS za maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, -} - -def task(IP_NM, DNS_NM, IP_static, DNS_static): - from pexpect import pxssh - import pexpect - results = dict() - peer_user = 'student' - peer_passwd = 'vaje' - sA = pxssh.pxssh() - sB = pxssh.pxssh() - sA.login(IP_NM, peer_user, peer_passwd) - sB.login(IP_static, peer_user, peer_passwd) - # sA - # make sure NM is not handling eth0 - results['NM_nmcli'] = sA.run('nmcli d') - results['NM_nslookup'] = sA.run('nslookup www.arnes.si') - # sB - # check whether NM is handling eth0 - results['static_nmcli'] = sB.run('nmcli d') - results['static_nslookup'] = sB.run('nslookup www.arnes.si') - sA.logout() - sB.logout() - return results - -def gen_params(user_id, params_meta): - params = dict() - r = random.Random(user_id) - # IP_NM, DNS_NM, IP_static, DNS_static) - dns_servers = ['193.2.1.66', '193.2.1.72', '8.8.8.8', '8.8.4.4', '208.67.222.222', '208.67.220.220'] - net = kpov_util.IPv4_subnet_gen(r, '172.23.128.0/18', 24) - params['DNS_NM'] = r.choice(dns_servers) - params['IP_NM'], params['IP_static'] = kpov_util.IPv4_addr_gen(r, net, 2) - params['DNS_static'] = r.choice(dns_servers) - return params - -def task_check(results, params): - import re - score = -9 - hints = [] - if results['NM_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_NM'])) > -1: - score += 3 - if results['static_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_static'])) > -1: - score += 3 - if re.search(r'eth0 +802-.*connected', results['NM_nmcli']): - score += 2 - if not re.search(r'eth0 +802-.*connected', results['static_nmcli']): - score += 2 - score = 0 - return score, hints - -def prepare_disks(templates, task_params, global_params): - write_default_config(templates['simpleArbiterDhcp'], global_params) diff --git a/kpov_judge/tasks/rename_grep_network/task.py b/kpov_judge/tasks/rename_grep_network/task.py deleted file mode 100644 index 4d81313..0000000 --- a/kpov_judge/tasks/rename_grep_network/task.py +++ /dev/null @@ -1,282 +0,0 @@ -# TODO: -# - check if everything is filled in (computers, params, preparation) -# - improve scoring -# - test -# - switch to a real SSH/SFTP client to properly handle filenames - -instructions = { - 'si': """ -<pre>Ustvari dva navidezna računalnika s slikama diskov -- SimpleArbiterExam s sliko diska simpleArbiterDhcp in -SmallStudent s slikama diska student-entrance3 -in smallstudent-personal. - -Drugi razdelek na sliki smallstudent-personal priklopi na imenik {mntdir} - -Na SimpleArbiterExam se lahko prijaviš z uporabniškim imenom tester in geslom test. -Na SmallStudentExam se lahko prijaviš kot root z geslom kaboom. - -Poskrbi, da bo SmallStudent s SimpleArbiter dostopen na naslovu {testip}. - -Na SmallStudent ustvari uporabnika {testuser} z geslom {passwd}. - -Na smallstudent-personal je nekje skrita -datoteka, ki vsebuje niz {magicstr}. -Skopiraj jo v domači imenik {testuser} in preimenuj tako, da vse znake 'O' v imenu zamenjaš z 'I'. -Pazi, da nobena druga datoteka v domačem imeniku v svojem imenu ne bo vsebovala "I". - -Poskrbi, da bo lastnik {testuser}, skupina pa naj ostane nespremenjena. -Brati naj jo ima pravico samo lastnik, pisati lastnik in skupina, poganjati nihče.</pre> -""", - 'en': ''' -''', -} - -instructions = {'si': 'Potrpite.', 'en': 'Have patience.'} - -computers = { - 'SimpleArbiter': { - 'disks': [ - { - 'name': 'simpleArbiterEntrance', - }, - ], - 'network_interfaces': [ - { - 'network': 'net1', - }, - { - 'network': 'net2', - }, - ], - 'flavor': 'm1.tiny', - 'config_drive': False, - }, - 'SmallStudent': { - 'disks': [ - { - 'name': 'student-entrance4', - # 'parts': [{'dev': 'sda1', 'path': '/'}], - }, - { - 'name': 'smallstudent-personal', - 'parts': [{'dev': 'sdb1', 'path': '/media'}, {'dev': 'sdb2', 'path': '/mnt'}] - } - ], - 'network_interfaces': [ - { - 'network': 'net2', - }, - ], - 'flavor': 'm1.tiny', - 'config_drive': False, - } -} - -networks = { - 'net1': { - 'public': True, - }, - 'net2': { - 'public': False, - } -} - -params_meta = { - 'testip': { - 'descriptions': { - 'si': 'IP SmallStudent', - 'en': 'IP SmallStudent', - }, - 'w': False, - 'public': True, - 'type': 'IP', - 'generated': True, - }, - 'testuser': { - 'descriptions': { - 'si': 'Uporabnik na SmallStudent', - 'en': 'Username on SmallStudent', - }, - 'w': False, - 'public': True, - 'type': 'username', - 'generated': True, - }, - 'passwd': { - 'descriptions': { - 'si': 'Geslo na SmallStudent', - 'en': 'Password on SmallStudent', - }, - 'w': False, - 'public': True, - 'type': None, - 'generated': True, - - }, - 'mntdir': { - 'descriptions': { - 'si': 'imenik za priklop diska', - 'en': 'mountpoint', - }, - 'w': False, - 'public': True, - 'type': 'dirname', - 'generated': True, - }, - 'magicstr' : { - 'descriptions': { - 'si': 'Niz v iskani datoteki', - 'en': 'String in the file you need to find', - }, - 'w': False, - 'public': True, - 'type': None, - 'generated': True, - - }, - 'rndseed': { - 'descriptions': { - 'si': 'random seed za skrito datoteko', - 'en': 'random seed for hiding the file', - }, - 'w': False, - 'public': False, - 'type': None, - 'generated': True, - }, -} - -def task(testip, testuser, passwd, mntdir, magicstr): - return kpov_util.ssh_test(testip, testuser, passwd, ( - ('home_ls', 'ls ~/'), - ('dst_file_contents', 'cat ~/*I*.txt'), - ('dst_ls', 'ls -l ~/*I*.txt'), - ('mnt', 'mount'), - )) - -def gen_params(user_id, params_meta): - import random - params = dict() - r = random.Random(user_id) - params['testip'] = kpov_util.IPv4_addr_gen(r, - network = '10.94.80.0/19', n_generated=1)[0] - params['testuser'] = kpov_util.default_generators['username'](r) - params['passwd'] = kpov_util.alnum_gen(r, 8) - params['magicstr'] = "".join([r.choice("qwerztlpoQWERTPOL") for i in range(10)]) - params['mntdir'] = "/" + kpov_util.default_generators['filename'](r) - params['rndseed'] = kpov_util.alnum_gen(r, 8) - return params - - -def task_check(results, params): - import os - import re - hints = [] - score = 0 - if results['ssh'] is not True: - hints += ['ssh failed: ' + results['ssh']] - hidden_contents = params['magicstr'] - r = random.Random(params['rndseed']) - dstfile = "".join([r.choice("qQoOp") for i in range(64)]) + "I.txt" - dstfile = dstfile.replace('O', 'I') - for i in range(1000): - start = "".join([r.choice(["po", "p0", "no", "ko", "fo", "qo"]) for i in range(20)]) - mid = "".join([r.choice("uiasdfghjkyxcvbnm1234567890ASDFGHJKYZXCVBNM") for i in range(60)]) - end = r.choice(["lz", "1z", "Iz", "iz", "l2", "I2", "12"]) - #if start[:2] == "po" and end == "lz": - # start = "po" - # mid = "kaka" - x = start + mid + end - hidden_contents += x + "\r\n" - expected_contents = hidden_contents - #expected_contents = re.sub(r"^po.*lz\r$", - # r"pokakalz\r", - # hidden_contents, - # re.MULTILINE) - if results["dst_file_contents"] == expected_contents: - score += 3 - else: - diff_pos = (0, "") - for i, c in enumerate(results["dst_file_contents"]): - if len(expected_contents) < i or c != expected_contents[i]: - start = max(0, i-10) - end = min(len(expected_contents), len(results["dst_file_contents"]), i+20) - diff_pos = (i, results["dst_file_contents"][start:end]) - break - hints += ["wrong file contents\n" + str(diff_pos[1])] - params['dstfile'] = dstfile - expected_dst_ls = "-rw--w---- 1 {testuser} bilbo .*{dstfile}".format(**params) - if re.match(expected_dst_ls, results["dst_ls"]): - score += 2 - else: - hints += ["missing file or wrong user/permissions\n" + results["dst_ls"] + "\n" + expected_dst_ls] - if results["home_ls"].find(params['dstfile']) > -1: - score += 2 - expected_mnts = [ - "/dev/sdb2 on {mntdir} type ext4".format(**params), - "sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)", - "proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)", - "udev on /dev type devtmpfs (rw,nosuid,relatime", - "/dev/sda1 on / type ext4 (rw,relatime,errors=remount-ro,data=ordered)",] - if all([results["mnt"].find(expected_mnt) > -1 for expected_mnt in expected_mnts]): - score += 3 - else: - hints += ["missing or wrong mount\n"] - return score, hints - - -def prepare_disks(templates, task_params, global_params): - import random - import os - - # first create the file contents to make it easyer to check. - hidden_contents = task_params['magicstr'] - r = random.Random(task_params['rndseed']) - dstfile = "".join([r.choice("qQoOp") for i in range(64)]) + "I.txt" - for i in range(1000): - x = "".join([r.choice(["po", "p0", "no", "ko", "fo", "qo"]) for i in range(20)]) - x += "".join([r.choice("uiasdfghjkyxcvbnm1234567890ASDFGHJKYZXCVBNM") for i in range(60)]) - x += r.choice(["lz", "1z", "Iz", "iz", "l2", "I2", "12"]) - hidden_contents += x + "\n" - - # create hidden file - dir_list = ['Qlipper', 'Thunar', 'blender', 'autostart', 'kazam', 'mc', 'netsurf', 'pulse', 'qupzilla', 'radare2', 'teamviewer', 'texstudio', 'vlc'] - ending_list = ['rc', '.conf', '', '.txt'] - start_list = ['net', 'dev', 'doc', 'lib', 'time', 'conf'] - for i in range(20): - start_list.append("".join([r.choice("qQoOp") for i in range(64)]) + "O") - r.shuffle(dir_list) - file_letters = ["mod", "co"] - - d = templates['smallstudent-personal'] - d.mkdir('/mnt/.hideme') - d.mkdir('/media/.hideme') - for potential_dir in dir_list: - try: - potential_dir1 = os.path.join('/mnt/.hideme', potential_dir) - potential_dir2 = os.path.join('/media/.hideme', potential_dir) - d.mkdir(potential_dir1) - d.chown(1001, 1001, potential_dir1) - d.mkdir(potential_dir2) - d.chown(1001, 1001, potential_dir2) - except: - pass - rndstr2 = dstfile - for i in range(r.randint(2, 20)): - hidden_file_name1 = os.path.join(potential_dir1, - rndstr2) - hidden_file_name2 = os.path.join(potential_dir2, - rndstr2) - d.write(hidden_file_name1, hidden_contents) - d.chown(1001, 1001, hidden_file_name1) - file_letters = ["stamp", "", "dev", "re"] - hidden_contents = "".join([r.choice("asdfghjkyxcvbnm1234567890 \n") for j in range(10000)]) - d.write(hidden_file_name2, hidden_contents) - d.chown(1001, 1001, hidden_file_name2) - rndstr2 = r.choice(start_list) + \ - r.choice(file_letters) + r.choice(ending_list) - file_letters = file_letters + ["mod", "co"] - # TODO create some additional files - - # write_default_config(templates['simpleArbiterDhcpGW'], global_params) diff --git a/kpov_judge/tasks/set_ip_dhcp_hostname/task.py b/kpov_judge/tasks/set_ip_dhcp_hostname/task.py deleted file mode 100644 index 1007424..0000000 --- a/kpov_judge/tasks/set_ip_dhcp_hostname/task.py +++ /dev/null @@ -1,100 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si':""" -<pre>Ustvari tri navidezne računalnike. Za disk prvega uporabi sliko diska simpleArbiterDhcp. -Za enega od ostalih dveh (Z_DHCP) poskrbi, da bo dobil IP prek DHCP, pri čemer -naj kot hostname strežniku pošlje ime, ki ga dobiš na simpleArbiterDhcp. -Za drugega (BREZ_DHCP) poskrbi, da bo imel statično nastavljen IP. - -Prvi omrežni vmesnik računalnika SimpleArbiter naj bo povezan na Internet. Drugi naj bo povezan na neko lokalno omrežje, na katerega bosta priklopljena računalnika Z_DHCP ter BREZ_DHCP. Na računalniku Z_DHCP poskrbite, da bo ob pridobivanju naslova DHCP strežniku poslal tudi posebej nastavljeno ime računalnika (hostname), ki ne bo enako dejanskemu imenu računalnika (tistemu, ki ga izpiše ukaz hostname). - -Naslov BREZ_DHCP ter ime računalnika za Z_DHCP dobite ob zagonu run_test.py na računalniku SimpleArbiter.</pre> -""" -} - -computers = { - 'Z_DHCP': { - 'disks': [ - { 'name': 'Z_DHCP', - }, - #{ 'name': 'CDROM', - # 'options':{'readonly': True}, - # 'parts': [],# no parts, no mounting. - #} - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'BREZ_DHCP': { - 'disks': [ - { 'name': 'BREZ_DHCP', - }, - #{ 'name': 'CDROM', - # 'options':{'readonly': True}, - # 'parts': [],# no parts, no mounting. - #} - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterDhcp', - # attempt automount - }, - #{ 'name': 'CDROM', - # 'options': {'readonly': True}, - # 'parts': [{'dev': 'b1', 'path': '/cdrom'}], - #}, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'IP_DHCP': {'descriptions': {'si': 'Naslov za DHCP'}, 'w': False, 'public': False, 'type': 'IP', 'generated': True}, - 'Hostname_DHCP': {'descriptions': {'si': 'Ime DHCP'}, 'w': False, 'public': True, 'type': 'hostname', 'generated': True}, - 'IP_static': {'descriptions': {'si': 'Naslov BREZ_DHCP'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, - 'IP_dhcp_static': {'descriptions': {'si': 'Dodeljen IP brez DHCP'}, 'w': False, 'public': False, 'type': 'IP', 'generated': True}, -} - -def task(IP_DHCP, Hostname_DHCP, IP_static, MAC_static, IP_dhcp_static): - from pexpect import pxssh - import pexpect - results = dict() - # check hostname of DHCP - # check the hostname in the response of IP_DHCP - # check availability of IP_static - # check non-availability of IP_dhcp_static - return results - -def gen_params(user_id, params_meta): - r = random.Random(user_id) - # IP_NM, DNS_NM, IP_static, DNS_static) - net = kpov_util.IPv4_subnet_gen(r, '172.23.128.0/18', 24) - params['IP_DHCP'], params['IP_static'], params['IP_dhcp_static'] = kpov_util.IPv4_addr_gen(r, net, 3) - params['Hostname_DHCP'] = kpov_util.hostname_gen(r) - return params - -def task_check(results, params): - import re - score = -9 - hints = [] - if results['bla']: - score += 3 - return score, hints - -def prepare_disks(templates, task_params, global_params): -# d = templates['simpleArbiterDhcp'] -# create config for static_DHCP -# set static_DHCP hostname - write_default_config(templates['simpleArbiterDhcp'], global_params) diff --git a/kpov_judge/tasks/set_ip_static_dhcp/howtos/en/index.html b/kpov_judge/tasks/set_ip_static_dhcp/howtos/en/index.html deleted file mode 100644 index 74dfeea..0000000 --- a/kpov_judge/tasks/set_ip_static_dhcp/howtos/en/index.html +++ /dev/null @@ -1,73 +0,0 @@ -<p> -<h2>Purpose of the assignment</h2> -Learn how to setup network interfaces in most modern Linux distributions (NetworkManager). -</p> -<p> -<h2>Quick instructions</h2> -Set a static IP in NetworkManager, set a static IP and DNS server in /etc/network/interfaces. You'll get both IP's when you execute script run_test.py. -</p> -<p> -<h2>Instructions</p> -<ol> -<li>From the directory with images of virtual computers, download the following:<br/> maliNetworkManager, maliBrezNetworkManager, SimpleArbiterDhcp.</li> - -<li>Set the network for virtual computers, so that SimpleArbiterDhcp's 1. nework interface is connected to the same network, as the only network interface for maliNetworkManager and maliBrezNetworkManager,<br/> - SimpleArbiterDhcp's 2. network interface will be connected to a NAT or a physical network, where the address and route (gateway) to the internet is obtained via DHCP.</li> - -<li>Start SimpleArbiterDhcp. Sign in as user "tester" with password "SedemKrogovPekla".</li> -<li> -<img alt="slika-04" src="https://lusy.fri.uni-lj.si/kpov-public-svn/kpov-public/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/04.png" style="width: 800px; height: 600px;" /><br/> -Use command <pre>ping 193.2.1.66</pre> to check if SimpleArbiterDhcp is connected to internet. If you get ping reply, you're connected to the internet. Cancel the ping with combination CTRL+C.<br/> - If SimpleArbiterDhcp doesn't have internet access, change the network settings in Virtual box for 1. and 2. network interface, then restart the virtual computer. - -</li> -<li>Run the script run_test.py.</li> - -<li>Enter "03.predvaja" as assignment name.</li> - -<li>Read the maliNetworkManager's static IP . Leave SimpleArbiterDhcp running in the background until you have setup the maliNetworkManager.</li> - -<li>Start maliNetworkManager.</li> - -<li> -Sign in the GUI(graphical user interface) using username "student" and password "vaje".</li> -<li><img alt="ikona network manager" src="https://lusy.fri.uni-lj.si/kpov-public-svn/kpov-public/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/10.png" style="width: 800px; height: 600px;" /><br/> -Right click on the icon for network settings.</br> - -<li> -<img alt="Menu NetworkManager" src="https://lusy.fri.uni-lj.si/kpov-public-svn/kpov-public/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/11.png" style="width: 800px; height: 600px;" /><br/> -Choose "Edit Connections"</li> - -<li> -<img alt="Menu NetworkManager" src="https://lusy.fri.uni-lj.si/kpov-public-svn/kpov-public/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/12.png" style="width: 800px; height: 600px;" /><br/> -Click "Edit"</li> - -<li> -<img alt="Menu NetworkManager" src="https://lusy.fri.uni-lj.si/kpov-public-svn/kpov-public/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/13.png" style="width: 800px; height: 600px;" /><br/> -In tab "IPv4" change the "Method" to "Manual". Click "Add". Set the SimpleArbiterDhcp's static IP as static IP A.<br/> -Add Arnes DNS: 193.2.1.66 to DNS servers. -</li> -<li>Click "Save"</li> - -<li>Switch to SimpleArbiterDhcp. Click "Enter" or "OK".</li> - -<li>Read maliBrezNetworkManager's IP . Click "OK". Read the DNS server's address .</li> - -<li> Switch to maliBrezNetworkManager. Switch to first console using combination CTRL+ALT+F1. Sign in as root (su) with password "kaboom".</li> - -<li> Open the file /etc/network/interfaces. Edit the settings according to the information you got on SimpleArbiter. Entry for network interface should look something like this:<br/> -<pre> -allow-hotplug eth0 -iface eth0 inet static - 10.0.1.2 - netmask 255.255.255.128 - dns-nameservers 10.0.1.5 -</pre> -</li> - -<li> Save the settings. Use the command <pre>reboot</pre> to restart maliBrezNetworkManager. On boot the NetworkManager reads which network interfaces are configured in /etc/network/interfaces. After that NetworkManager doesn't manage these interfaces anymore.</li> - - -</li>Press OK on SimpleArbiterDhcp. If all went ok, you have completed this assignment.</li> -</ol> -</p> diff --git a/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/04.png b/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/04.png Binary files differdeleted file mode 100644 index 754c200..0000000 --- a/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/04.png +++ /dev/null diff --git a/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/09.png b/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/09.png Binary files differdeleted file mode 100644 index 866a51d..0000000 --- a/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/09.png +++ /dev/null diff --git a/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/10.png b/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/10.png Binary files differdeleted file mode 100644 index d6ccf42..0000000 --- a/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/10.png +++ /dev/null diff --git a/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/11.png b/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/11.png Binary files differdeleted file mode 100644 index 10b5ec7..0000000 --- a/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/11.png +++ /dev/null diff --git a/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/12.png b/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/12.png Binary files differdeleted file mode 100644 index 0a87ae6..0000000 --- a/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/12.png +++ /dev/null diff --git a/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/13.png b/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/13.png Binary files differdeleted file mode 100644 index e71474a..0000000 --- a/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/13.png +++ /dev/null diff --git a/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/17.png b/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/17.png Binary files differdeleted file mode 100644 index d4bba87..0000000 --- a/kpov_judge/tasks/set_ip_static_dhcp/howtos/images/17.png +++ /dev/null diff --git a/kpov_judge/tasks/set_ip_static_dhcp/howtos/si/index.html b/kpov_judge/tasks/set_ip_static_dhcp/howtos/si/index.html deleted file mode 100644 index 6236245..0000000 --- a/kpov_judge/tasks/set_ip_static_dhcp/howtos/si/index.html +++ /dev/null @@ -1,74 +0,0 @@ -<p> -<h2>Namen vaje</h2> -Naučite se, kako se nastavljajo omrežni vmesniki v večini sodobnih Linux distribucij (NetworkManager). -</p> -<p> -<h2>Naloga na hitro</h2> -Nastavi statičen IP v NetworkManager-ju, nastavi statični IP in DNS strežnik v /etc/network/interfaces. Oba naslova računalnikov in DNS strežnikov dobite ob zagonu run_test.py. -</p> -<p> -<h2>Navodila</p> -<ol> -<li>Z imenika s slikami virtualnih računalnikov povlecite slike maliNetworkManager, maliBrezNetworkManager, SimpleArbiterGW</li> - -<li>Nastavite omrežja navideznih računalnikov tako, da bo<br/>1. omrežni vmesnik SimpleArbiterGW povezan na isto omrežje kot edini omrežni vmesnik maliNetworkManager in maliBrezNetworkManager,<br/> - 2. vmesnik SimpleArbiterGW bo povezan na NAT ali fizično omrežje, kjer prek DHCP dobi naslov in pot (prehod, gateway) do Interneta.</li> - -<li>Zaženite SimpleArbiterGW. Prijavite se kot uporabnik tester z geslom SedemKrogovPekla</li> -<li> -<img alt="slika-04" src="../images/04.png" style="width: 800px; height: 600px;" /><br/> -Z ukazom <pre>ping 8.8.8.8 </pre> preverite, ali je SimpleArbiterGW na Internetu. Če je, boste približno vsako sekundo dobili odziv. Ping prekinete -s kombinacijo tipk CTRL+C.<br/> - Če SimpleArbiterGW ne pride do Interneta, v VirtualBox zamenjajte nastavitve 1. in 2. omrežni vmesnik ter ponovno zaženite navidezni računalnik. -</li> -<li>Poženite run_test.py.</li> - -<li>Kot ime naloge vpišite preparation</li> - -<li>Preberite statični IP maliNetworkManager. Pustite SimpleArbiterGW da teče v ozadju, dokler niste nastavili maliNetworkManager</li> - -<li>Zaženite maliNetworkManager.</li> - -<li> -Prijavite se v grafično okolje z uporabniškim imenom student, geslom vaje</li> -<li><img alt="ikona network manager" src="../images/10.png" style="width: 800px; height: 600px;" /><br/> -Desno-kliknite na ikono za mrežne nastavitve.</br> - -<li> -<img alt="Menu NetworkManager" src="../images/11.png" style="width: 800px; height: 600px;" /><br/> -Izberite "Edit Connections".</li> - -<li> -<img alt="Menu NetworkManager" src="../images/12.png" style="width: 800px; height: 600px;" /><br/> -Kliknite "Edit"</li> - -<li> -<img alt="Menu NetworkManager" src="../images/13.png" style="width: 800px; height: 600px;" /><br/> -V zavihku "IPv4" spremenite "Method" na "Manual". Kliknite na "Add". Nastavite statični IP, ki ste ga prebrali na SimpleArbiterGW kot statični I.<br/> -V DNS servers dodajte naslov DNSja, ki van ha poda run_test.py. Kot gateway dodaj IP SimpleArbiterGW. -</li> -<li>Kliknite "Save".</li> - -<li>Preklopite na SimpleArbiterGW. Pritisnite "Enter" oz. "OK".</li> - -<li>Preberite IP maliBrezNetworkManager. Pritisnite "OK". Preberite naslov DNS strežnika.</li> - -<li> Preklopite na maliBrezNetworkManager. Preklopite na prvo konzolo s kombinacijo CTRL+ALT+F1. Prijavite se kot root z geslom kaboom.</li> - -<li> Odprite datoteko /etc/network/interfaces. Popravite nastavitve v skladu s podatki, ki ste jih dobili na SimpleArbiter. Vnos za omrežni vmesnik mora izgledati približno takole:<br/> -<pre> -allow-hotplug eth0 -iface eth0 inet static - address "Podan IP" - netmask 255.255.255.0 - dns-nameservers "Podan DNS" - getway "IP SimpleArbiterGW" -</pre> -</li> - -<li> Shranite nastavitve. Z ukazoma "ifdown eth0", in ifup eth0" posodobite NetworkManager ki prebere -kateri omrežni vmesniki so nastavljeni v /etc/network/interfaces. Za te vmesnike potem ne skrbi več.</li> - -</li>Na SimpleArbiterGW pritisnite OK. Če je šlo vse po sreči, ste opravili tokratno nalogo.</li> -</ol> -</p> diff --git a/kpov_judge/tasks/set_ip_static_dhcp/task.py b/kpov_judge/tasks/set_ip_static_dhcp/task.py deleted file mode 100644 index 0d11f43..0000000 --- a/kpov_judge/tasks/set_ip_static_dhcp/task.py +++ /dev/null @@ -1,127 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si': '''\ -<p> -Ustvari tri navidezne računalnike. Za prvega uporabi sliko diska <em>simpleArbiterDhcpGW</em>, za drugega sliko diska -<em>maliNetworkManager</em>, za tretjega sliko diska <em>maliBrezNetworkManager</em>. Računalnike imenujmo enako kot slike diska. - -<p> -Na <em>maliBrezNetworkManager</em> poskrbi, da NetworkManager ne bo več skrbel za omrežni vmesnik, temveč bosta delovala ukaza <code>ifup</code> in <code>ifdown</code>. - -<p> -Na <em>maliNetworkManager</em> nastavi naslov IP <code>{{IP_NM}}</code> ter DNS <code>{{DNS_NM}}</code>. - -<p> -Na <em>maliBrezNetworkManager</em> nastavi naslov IP <code>{{IP_static}}</code> ter DNS <code>{{DNS_static}}</code>. -''', - 'en': '''\ -<p> -Create three virtual machines. Use <em>simpleArbiterDhcpGW</em> as the disk image for the first, <em>maliNetworkManager</em> as the disk image for the second, and <em>maliBrezNetworkManager</em> for the third. The virtual machine names can match the disks. - -<p> -Make sure that on <em> maliBrezNetworkManager</em> <code>ifup</code> and <code>ifdown</code> can be used to configure the network and that NetworkManager, while still installed, will not manage the network interface. The IP should be <code>{{IP_static}}</code> and the computer should use the server <code>{{DNS_static}}</code> for DNS. - -<p> -On <em>maliNetworkManager</em>, set the IP address to <code>{{IP_NM}}</code> and use <code>{{DNS_NM}}</code> for DNS. -''', -} - -computers = { - 'maliNetworkManager': { - 'disks': [ - { 'name': 'maliNetworkManager', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'maliBrezNetworkManager': { - 'disks': [ - { 'name': 'maliBrezNetworkManager', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterDhcpGW', - }, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'IP_NM': {'descriptions': {'si': 'Naslov maliNetworkManager', 'en': 'IP address for maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'DNS_NM': {'descriptions': {'si': 'DNS za maliNetworkManager', 'en': 'DNS for maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'IP_static': {'descriptions': {'si': 'Naslov maliBrezNetworkManager', 'en': 'IP address for maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, - 'DNS_static': {'descriptions': {'si': 'DNS za maliBrezNetworkManager', 'en':'DNS for maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, -} - -def task(IP_NM, DNS_NM, IP_static, DNS_static): - import collections - - tests = ( - ('nmcli', 'nmcli -c no d'), - ('nslookup', 'nslookup www.arnes.si'), - ) - - results = collections.defaultdict(str) - for name, host in [('nm', IP_NM), ('static', IP_static)]: - host_results = kpov_util.ssh_test(host, 'student', 'vaje', tests) - for key, value in host_results.items(): - results[key+'-'+name] = value - return results - -def gen_params(user_id, params_meta): - params = dict() - r = random.Random(user_id) - dns_servers = ['193.2.1.66', '193.2.1.72', '8.8.8.8', '8.8.4.4', '208.67.222.222', '208.67.220.220'] - net = kpov_util.IPv4_subnet_gen(r, '10.94.96.0/19', 25) - params['DNS_NM'] = r.choice(dns_servers) - params['IP_NM'], params['IP_static'] = kpov_util.IPv4_addr_gen(r, net, 2) - params['DNS_static'] = r.choice(dns_servers) - return params - -def task_check(results, params): - import re - score = 0 - hints = [] - if results['ssh-nm'] is True: - score += 1 - else: - hints += ['mali ssh failed: ' + results['ssh-nm']] - if results['ssh-static'] is True: - score += 1 - else: - hints += ['malibrez ssh failed: ' + results['ssh-static']] - if params['DNS_NM'] in results['nslookup-nm']: - score += 2 - else: - hints += ['NM nslookup incorrect'] - if params['DNS_static'] in results['nslookup-static']: - score += 2 - else: - hints += ['static nslookup incorrect'] - if re.search(r'e(th0|np0s3|ns3) +ethernet +connected', results['nmcli-nm']): - score += 2 - else: - hints += ['nmcli incorrect'] - if re.search(r'e(th0|np0s3|ns3) +ethernet +unmanaged', results['nmcli-static']): - score += 2 - else: - hints += ['nmcli on malibrez incorrect'] - return score, hints - -def prepare_disks(templates, task_params, global_params): - write_default_config(templates['simpleArbiterDhcpGW'], global_params) diff --git a/kpov_judge/tasks/set_motd/howtos/en/index.html b/kpov_judge/tasks/set_motd/howtos/en/index.html deleted file mode 100644 index 2987cc5..0000000 --- a/kpov_judge/tasks/set_motd/howtos/en/index.html +++ /dev/null @@ -1,44 +0,0 @@ -<!DOCTYPE html>
-<html>
-<head>
- <title>set_motd</title>
- <meta charset="utf-8">
-</head>
-<body>
-<h1>set_motd</h1>
-<h2>Purpose of the exercise</h2>
-<p>How to create user? How to edit a file? How to connect to anoter computer using ssh? How to find out the computer IP address?</p>
-<h2>Brief description</h2>
-<p>Set up two virtual machines, set MOTD. Connect using ssh.</p>
-
-<h2>How To</h2>
-
-<ol>
- <li>Create two virtual machines, Student(student-console) and Test(SimpleArbiterDhcpGw) <br> <img src="../images/img4.png" alt="no img"></li>
- <li>Change the network settings to both virtual machines. SimpleArbiterDhcpGw: Adapter 1 set it to NAT for internet access, Adapter 2 to internal network for local network.
- Student: Adapter1 set it to "internal-network" so it is in the same domestic network as SimpleArbiterDhcpGw. <br> <img src="../images/img1.png" alt="no img"> <br> <img src="../images/img2.png" alt="no img"> <br> <img src="../images/img3.png" alt="no img"></li>
- <li>Login on <b>Student</b> <br> <img src="../images/img5.png" alt="no img"></li>
- <li>On Student(student-console) create a new user (with "adduser username", as the task demands of you ( eg. marjankoral19 ), with a custom password. <br> <img src="../images/img6.png" alt="no img"></li>
- <li>In Student(student-console) open interfaces file ( nano /etc/network/interfaces ) and set the IP <br>
- <h2>How to use the <strong>nano</strong> text editor </h2>
- <p>
- 1.) Open the nano editor with the command nano, which is followed by the path and name of the file. Example: <strong>nano /etc/myfile</strong>. If the file doesn't exist, the file will be created by the editor.<br />
- 2.) To move in the editor, we use the arrow keys, <strong>backspace</strong> is used for deleting. <br />
- 3.) To save a file press the combination of keys <strong>ctrl</strong> + <strong>O</strong>. <br />
- 4.) To exit the editor press the combination of keys <strong>ctrl</strong> + <strong>X</strong>. The editor will ask you, if you really want to exit, you can answer with <strong>y</strong> (yes ) or with <strong>n</strong> ( no ). <br />
- 5.) To cut a line press the combination of keys <strong>ctrl</strong> + <strong>K</strong>. <br />
- 6.) To paste a line press the combination of keys <strong>ctrl</strong> + <strong>U</strong>. <br />
- 7.) To search over a document press the combination of keys <strong>ctrl</strong> + <strong>W</strong> and then enter the search string.
- </p> <img src="../images/img7.png" alt="no img" ></li>
- <li>We can check which interface belongs to which adapter in Virtual-box with MAC address. Run ifconfig command and compare the HWaddr value with the value in the Virtual-box ( settings => network => adapter => Mac address ) <br /><img src="../images/slika4.png" alt="no img" /><img src="../images/slika3.png" alt="no img"/></li>
- <li>Then edit the /etc/motd (eg. with nano editor like this: "nano /etc/motd"), file with the specified string. (eg. "Not for Human consumption" ) <br> <img src="../images/img8.png" alt="no img"> </li>
- <li>For testing, login with the test user into Test(SimpleArbiterDhcpGw) <br> <img src="../images/img9.png" alt="no img"></li>
- <li>Then connect to the Student with ssh, using the user marjankoral19 - ssh marjankoral@ip. <br> <img src="../images/img10.png" alt="no img"></li>
- <li>If the login was successful, the Message of the day should apear.</li>
- <li>To run Kpov_judge, login onto SimpleArbiterDhcpGw, find and run the file test_task.py ( with ./test_task.py as all other scripts )<br /> <img src="../images/img11.png" alt="no img"></li>
- <li>A window appears as we can see on the image above, then press Enter, enter your username ( eg. dr6784@student.uni-lj.si ), password, task name (eg. 01-preparation-set_motd), enter the string we should get in motd, enter the username and password of a user on Student(student-console)(eg. marjankoral19), the IP of Student(student-console), and after a brief moment we should get the result. <img src="../images/img12.png" alt="no img"> </li>
-</ol>
-
-
-</body>
-</html>
\ No newline at end of file diff --git a/kpov_judge/tasks/set_motd/howtos/images/first.png b/kpov_judge/tasks/set_motd/howtos/images/first.png Binary files differdeleted file mode 100644 index d3797d7..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/first.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/images/img1.png b/kpov_judge/tasks/set_motd/howtos/images/img1.png Binary files differdeleted file mode 100644 index 2ed7899..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/img1.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/images/img10.png b/kpov_judge/tasks/set_motd/howtos/images/img10.png Binary files differdeleted file mode 100644 index dca77ef..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/img10.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/images/img11.png b/kpov_judge/tasks/set_motd/howtos/images/img11.png Binary files differdeleted file mode 100644 index f42e7b0..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/img11.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/images/img12.png b/kpov_judge/tasks/set_motd/howtos/images/img12.png Binary files differdeleted file mode 100644 index 73ffb65..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/img12.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/images/img2.png b/kpov_judge/tasks/set_motd/howtos/images/img2.png Binary files differdeleted file mode 100644 index 51688ac..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/img2.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/images/img3.png b/kpov_judge/tasks/set_motd/howtos/images/img3.png Binary files differdeleted file mode 100644 index 93a8acf..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/img3.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/images/img4.png b/kpov_judge/tasks/set_motd/howtos/images/img4.png Binary files differdeleted file mode 100644 index e5e21f9..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/img4.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/images/img5.png b/kpov_judge/tasks/set_motd/howtos/images/img5.png Binary files differdeleted file mode 100644 index a128781..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/img5.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/images/img6.png b/kpov_judge/tasks/set_motd/howtos/images/img6.png Binary files differdeleted file mode 100644 index b10bf9a..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/img6.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/images/img7.png b/kpov_judge/tasks/set_motd/howtos/images/img7.png Binary files differdeleted file mode 100644 index 40ce63d..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/img7.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/images/img8.png b/kpov_judge/tasks/set_motd/howtos/images/img8.png Binary files differdeleted file mode 100644 index b7bd3b8..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/img8.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/images/img9.png b/kpov_judge/tasks/set_motd/howtos/images/img9.png Binary files differdeleted file mode 100644 index 20a2439..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/img9.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/images/second.png b/kpov_judge/tasks/set_motd/howtos/images/second.png Binary files differdeleted file mode 100644 index 61bea73..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/second.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/images/slika3.png b/kpov_judge/tasks/set_motd/howtos/images/slika3.png Binary files differdeleted file mode 100644 index 05ca178..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/slika3.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/images/slika4.png b/kpov_judge/tasks/set_motd/howtos/images/slika4.png Binary files differdeleted file mode 100644 index b99df06..0000000 --- a/kpov_judge/tasks/set_motd/howtos/images/slika4.png +++ /dev/null diff --git a/kpov_judge/tasks/set_motd/howtos/si/index.html b/kpov_judge/tasks/set_motd/howtos/si/index.html deleted file mode 100644 index 601b667..0000000 --- a/kpov_judge/tasks/set_motd/howtos/si/index.html +++ /dev/null @@ -1,46 +0,0 @@ -<!DOCTYPE html>
-<html>
-<head>
- <title>set_motd</title>
-<meta charset="utf-8">
-</head>
-<body>
-<h1>set_motd</h1>
-<h2>Namen vaje</h2>
-<p>Kako se ustvari uporabnik? Kako se popravi datoteka? Kako se s pomočjo ssh
-povežemo na drug racunalnik? Kako ugotovimo IP naslov računalnika? </p>
-
-<h2>Naloga na hitro</h2>
-<p>Postavi 2 navidezna računalnika, nastavi MOTD. Poveži se preko ssh.</p>
-
-<h2>Podrobna navodila</h2>
-
-<ol>
- <li>Ustvari dva navidezna računalnika, računalnik Student(student-console) ter računalnik Test(SimpleArbiterDhcpGw) <br> <img src="../images/img4.png" alt="ni slike"></li>
- <li>Spremeni omrežne nastavitve obema navideznima računalnikoma, SimpleArbiterDhcpGw: Adapter 1 na NAT za dostop do interneta, Adapter 2 na "internal network" za lokalno omrežje,
- Student: Adapter1 na internal-network, da je v enakem omrežju kot SimpleArbiterDhcpGw. <br> <img src="../images/img1.png" alt="ni slike" > <br> <img src="../images/img2.png" alt="ni slike"> <br> <img src="../images/img3.png" alt="ni slike"></li>
- <li>Prijavi se na računalniku Student. <br> <img src="../images/img5.png" alt="ni slike"></li>
- <li>Na računalniku Student(student-console) ustvari novega uporabnika (z ukazom "adduser imeuporabnika"), kot to od tebe zahteva naloga (npr. marjankoral19), geslo določi sam. <br> <img src="../images/img6.png" alt="ni slike"></li>
- <li>Računalnik Student, odpri datoteko interfaces ( nano /etc/network/interfaces ), ter nastavi IP. <br> <img src="../images/img7.png" alt="ni slike"></li>
- <h2>Kako se uporablja <strong>nano</strong> urejavalnika besedila: </h2>
- <p>
- 1.) Urejvalnik Nano odpremo z ukazom nano, kateremu sledi ime datoteke. Primer: <strong>nano /etc/mojadatoteka</strong>. Če datoteka ne obstaja jo bo ustvaril urejevalnik. <br />
- 2.) Po urejevalniku se premikamo s smernimi puščicami, brišemo s tipko <strong>backspace</strong>. <br />
- 3.) Za shranjevanje dokumenta pritisnemo kombinacijo tipk <strong>ctrl</strong> + <strong>O</strong> <br />
- 4.) Za izhod iz urejevalnika pritisnemo kombinacijo tipk <strong>ctrl</strong> + <strong>X</strong>. Pri tem nas urejevalnik upraša, če želimo shraniti spremembe. Odgovorimo z <strong>y</strong> (yes, ja ) ali z <strong>n</strong> ( no, ne ). <br />
- 5.) Za izrez vrstice uporabimo kombinacijo tipk <strong>ctrl</strong> + <strong>K</strong>. <br />
- 6.) Za lepljenje vrstice se uporablja kombinacija tipk <strong>ctrl</strong> + <strong>U</strong>. <br />
- 7.) Za iskanje po besedilu uporabimo kombinacijo tipk <strong>ctrl</strong> + <strong>W</strong>, nakar vnesemo iskani niz in pritisnemo tipko enter.
- </p><br />
- <li>Kateri vmesnik (npr. eth0) spada pod kateri adapter (npr. Adapter1 ), lahko preverimo s strojnimi naslovi. Na računalniku zaženemo ukaz ifconfig, pogledamo HWaddr vrednost ter jo primerjamo z vrednostjo v Virtual-boxu (nastavitve => omrežja => adapter => MAC address <br /><img src="../images/slika4.png" alt="ni slike"/><img src="../images/slika3.png" alt="ni slike"/></li>
- <li>Nato spremeni datoteko /etc/motd (z urejevalnikom nano, primer uporabe: "nano /etc/motd"), ter zamenjaj niz z ustreznim nizom kot to od tebe zahteva naloga ( npr. "Not for Human consumption" ) <br>
- <img src="../images/img8.png" alt="ni slike"> </li>
- <li>Za testiranje se s testnim uporabniškim imenom prijavi na prvem računalniku. (SimpleArbiterDhcpGw) <br> <img src="../images/img9.png" alt="ni slike"></li>
- <li>Nato se preko ssh poveži na računalnik Student z uporabniškim imenom marjankoral19 - ssh marjankoral19@ip. <br> <img src="../images/img10.png" alt="ni slike" ></li>
- <li>Po uspešni prijavi se bi moralo izpisati motd sporočilo.</li>
- <li>Kpov_judge poženemo tako da se prijavimo na računalniku SimpleArbiterDhcpGw, najdemo datoteko test_task.py ter jo poženemo ( z ./test_task.py kot se poganjajo vse skripte )<br /> <img src="../images/img11.png" alt="ni slike"></li>
- <li>Pojavi se nam okno kot ga vidimo zgoraj, nato pa pritisnemo tipko Enter, vnesemo svoje uporabniško ime ( npr. dr6784@student.uni-lj.si ), geslo, ime naloge (npr. 01-preparation-set_motd), vnesemo niz ki bi se nam moral prikazati, vnesemo ime uporabnika na računalniku Student (npr. marjankoral19) ter njegovo geslo, ip računalnika študent, nato pa po kratkem premoru dobimo rezultat. <img src="../images/img12.png" alt="ni slike"> </li>
-</ol>
-
-</body>
-</html>
\ No newline at end of file diff --git a/kpov_judge/tasks/set_motd/task.py b/kpov_judge/tasks/set_motd/task.py deleted file mode 100644 index 89b78f6..0000000 --- a/kpov_judge/tasks/set_motd/task.py +++ /dev/null @@ -1,86 +0,0 @@ -instructions = { - 'si': '''\ -<p> -Ustvari dva navidezna računalnika - imenujmo ju <em>arbiter</em> in <em>student</em>. -Na računalniku <em>student</em> ustvarite uporabnika z uporabniškim imenom <code>{{peer_user}}</code>. IP navideznega računalnika <em>student</em> ter geslo za uporabnika <code>{{peer_user}}</code> nastavite sami. - -<p> -Poskrbite, da se bo v sporočilu, ki se ob prijavi izpiše na računalniku <em>student</em>, pojavil niz - -<pre><code>{{niz}}</code></pre> - -<p> -Temu sporočilu v angleščini rečemo <em lang="en">message of the day</em> oziroma <em>MOTD</em>. Ocenjevalni program pričakuje, da se bo ob koncu prijave pojavila ukazna vrstica oblike - -<pre><code>username@hostname:~$ </code></pre> - -Pazite, da se bo takšna vrstica pojavila šele po nizu, ki ste ga dobili v teh navodilih. - ''', - 'en': '''\ -<p> -Create two virtual machines named <em>arbiter</em> and <em>student</em>. On <em>student</em>, create a user with the username <code>{{peer_user}}</code>. Set the IP of <em>student</em> and the password for <code>{{peer_user}}</code> yourself. - -<p> -Set the <em>message of the day</em> (MOTD) on <em>student</em> to - -<pre><code>{{niz}}</code></pre> - -<p> -This is the message which is displayed when you log in. The grading system expects that after login a prompt similar to - -<pre><code>username@hostname:~$ </code></pre> - -<p> -appears. Make sure that this line shows up only after the string you got in these instructions. -''' -} - -computers = { - 'arbiter': { - 'disks': [{'name': 'dhcp-gw'}], - 'flavor': 'm1.tiny', - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'config_drive': True, - 'userdata': {'string': "#!/bin/bash\nsed -i '/cloud/d' /etc/fstab\npoweroff &\n"} - }, - 'student': { - 'disks': [{ 'name': 'console'}], - 'flavor': 'm1.tiny', - 'network_interfaces': [{'network': 'net1'}], - 'config_drive': True, - 'userdata': {'string': "#!/bin/bash\nsed -i '/cloud/d' /etc/fstab\npoweroff &\n"} - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'peer_ip': {'descriptions': {'si': 'IP računalnika', 'en':'IP'}, 'w': True, 'public': True, 'type': 'IP', 'generated': False}, - 'peer_user': {'descriptions': {'si': 'ime uporabnika', 'en':'Username'}, 'w': False, 'public': True, 'type': 'username', 'generated': True}, - 'peer_passwd': {'descriptions': {'si': 'geslo uporabnika', 'en': 'Password'}, 'w': True, 'public': True, 'type': 'alnumstr', 'generated': False}, - 'niz': {'descriptions':{'si': 'niz, ki naj se v motd pokaže', 'en': 'The string which should be displayed in the MOTD'}, 'w': False, 'public': True, 'type': 'short_text', 'generated': True}, -} - -def task(peer_ip, peer_user, peer_passwd, niz): - "Check whether ssh works and return the MOTD." - return kpov_util.ssh_test(peer_ip, peer_user, peer_passwd) - -def gen_params(user_id, params_meta): - return kpov_util.default_gen(user_id, params_meta) - -def task_check(results, params): - niz = params['niz'] - score = 0 - hints = [] - if results['ssh'] is True: - score += 4 - if niz in results['motd']: - score += 6 - else: - hints += ['wrong motd:\n' + results['motd'] + '\n'] - else: - hints += ['ssh failed: ' + results['ssh']] - return score, hints - -def prepare_disks(templates, task_params, global_params): - write_default_config(templates['dhcp-gw'], global_params) diff --git a/kpov_judge/tasks/smb_nfs/howtos/en/index.html b/kpov_judge/tasks/smb_nfs/howtos/en/index.html deleted file mode 100644 index fe056b4..0000000 --- a/kpov_judge/tasks/smb_nfs/howtos/en/index.html +++ /dev/null @@ -1,341 +0,0 @@ -<html>
-<head>
-<meta http-equiv="content-type" content="text/html" charset="utf-8">
-<title>smb_nfs</title>
-<style type="text/css">
- #code {
- font-family: Courier New;
- font-size: 12;
- }
-</style>
-</head>
-<body>
- <h1>
- smb_nfs
- </h1>
- <p>
- <a href="#vb">VirtualBox</a> | <a href="#server">Server</a> | <a href="#client">Client</a> | <a href="#nfs">NFS</a> | <a href="#smb">Samba</a> | <a href="#dhcp">DHCP</a>
- </p>
- <h2>
- Quick guide
- </h2>
- <p>
- Set up two virtual computers - SimpleArbiterDhcp and FileServer.
- </p>
- <p>
- Make sure that the directory /srv/nfs/ERLbbBrT on FileServer is accessible
- over NFS and over SMB under the sharename urania-03.
- Set the SMB server name to zarptica-32.
- </p>
- <p>
- SimpleArbiterDhcp should have write access to /srv/nfs/ERLbbBrT over NFS.
- </p>
-
- <h2>
- Instructions
- </h2>
- <ul style="list-style: none;">
- <li>
- <h3>
- Download these VM images:
- </h3>
- <ul type="disc">
- <li>
- student-fileserver.vdi
- </li>
- <li>
- simpleArbiterDhcpGW.vdi
- </li>
- <br>
- </ul>
- </li>
- <a name="vb"></a>
- <li>
- <h3>
- VirtualBox Settings:
- </h3>
- <ul type="disc">
- <li>
- Enable PAE/NX for both VMs: Settings⇒System⇒Processor
- </li>
- <li>
- For FileServer
- <ul>
- <li>
- Adapter 1 - NAT
- </li>
- <li>
- Adapter 2 - Internal Network
- </li>
- </ul>
- </li>
- <li>
- For SimpleArbiterDhcp
- <ul>
- <li>
- Adapter 1 - Internal Network
- </li>
- </ul>
- </li>
- </ul>
- </li>
- <br>
- <a name="server"></a>
- <li>
- <h3>
- Server FileServer
- </h3>
- <ol>
- <a name="dhcp"></a>
- <li>
- Set up a DHCP server
- <ol>
- <li>
- <span id="code">
- apt-get update
- </span>
- </li>
- <li>
- <span id="code">
- apt-get install isc-dhcp-server
- </span>
- </li>
- <li>
- The server will not start (error
- <span id="code">
- Starting ISC DHCP server: dhcpdcheck syslog for diagnostics. ... failed!</span>)
- , configure 3 files:
- <ul>
- <li>
- In /etc/network/interfaces set static IP for eth1 on which the DHCP server will be running,
- e.g.:
- <p id="code">
- auto eth1<br>
- iface eth1 inet static<br>
- address 192.168.1.10<br>
- netmask 255.255.255.0<br>
- network 192.168.1.0<br>
- broadcast 192.168.1.255<br>
- </p>
- </li>
- <li>
- In /etc/default/isc-dhcp-server:
- <p id="code">
- INTERFACES="eth1"
- </p>
- </li>
- <li>
- In /etc/dhcp/dhcpd.conf configure the subnet properties,
- e.g.:
- <p id="code">
- authoritative;<br>
- default-lease-time 600;<br>
- max-lease-time 7200;<br>
- <br>
- subnet 192.168.1.0 netmask 255.255.255.0 {<br>
- range 192.168.1.100 192.168.1.200;<br>
- option routers 192.168.1.10;<br>
- option domain-name-servers 193.2.1.66, 8.8.4.4;<br>
- <br>
- host SimpleArbiter {<br>
- hardware ethernet 08:00:27:A2:FB:B4;<br>
- fixed-address 192.168.1.180;<br>
- }<br>
- }<br>
- </p>
- </li>
- </ul>
- </li>
- </ol>
- </li>
- <a name="nfs"></a>
- <li>
- Set up a NFS server
- <ol>
- <li>
- apt-get install nfs-kernel-server
- </li>
- <li>
- Determine the rules in /etc/exports, e.g.:
- <p id="code">
- #privileges for SimpleArbiterDhcp<br>
- /srv/nfs/ERLbbBrT 192.168.1.180(rw,sync,insecure)<br>
- /srv/nfs/ERLbbBrT 192.168.1.0/24(ro,sync,insecure)<br>
- </p>
- </li>
- <li>
- Change the owner of the directory and files in it:
- <span id="code">
- chown student /srv/nfs/ERLbbBrT
- </span>
- and similarly for all the files in shared directory. The owner should not be root.
- </li>
- <li>
- Run command
- <span id="code">exportfs -rv</span>
- to export file systems
- <p>After that run
- <span id="code">
- services nfs-kernel-server restart
- </span>
- </p>
- </li>
- <br>
- </ol>
- </li>
- <a name="smb"></a>
- <li>
- Set up SMB server
- <ol>
- <li>
- <span id="code">
- apt-get install samba
- </span>
- </li>
- <li>
- Create directory urania-03 and set owner and privileges:
- <p id="code">
- mkdir /home/student/urania-03<br>
- chown -R root:users /home/urania-03/<br>
- chmod -R ug+rwx,o+rx+w /home/urania-03<br>
- </p>
- </li>
- <li>
- Edit configurations in /etc/samba/smb.conf, add at the bottom of document, e.g.:
- <p id="code">
- [global]<br>
- workgroup = users<br>
- server string = zarptica-32<br>
- dns proxy = no<br>
- log file = /var/log/samba/log.%m<br>
- max log size = 1000<br>
- syslog = 0<br>
- panic action = /usr/share/samba/panic-action %d <br>
- security = user<br>
- encrypt passwords = yes<br>
- passdb backend = tdbsam<br>
- obey pam restrictions = yes<br>
- unix password sync = yes<br>
- passwd program = /usr/bin/passwd %u<br>
- passwd chat = *Enter\snew\s*\spassword:* %n\n <br>*Retype\snew\s*\spassword:* %n\n <br>*password\supdated\ssuccessfully* .<br>
- pam password change = yes<br>
- map to guest = bad user<br>
- usershare allow guests = yes<br>
- <br>
- [homes]<br>
- comment = Home Directories<br>
- browseable = no<br>
- read only = yes<br>
- create mask = 0700<br>
- directory mask = 0700<br>
- valid users = %S<br>
- <br>
- [printers]<br>
- comment = ALl Printers<br>
- browseable = no<br>
- path = /var/spool/samba<br>
- printable = yes<br>
- guest ok = no<br>
- read only = yes<br>
- create mask = 0700<br>
- <br>
- [print$]<br>
- comment = Printer Drivers<br>
- path = /var/lib/samba/printers<br>
- browseable = yes<br>
- read only = yes<br>
- guest ok = no<br>
- <br>
- [urania-03]<br>
- comment = All Users<br>
- path = /home/urania-03<br>
- users = @users<br>
- force group = users
- create mask = 0660<br>
- directory mask = 0771<br>
- writable = yes<br>
- </p>
- </li>
- <li>
- Restart Samba:
- <span id="code">
- service samba restart
- </span>
- </li>
- <li style="list-style-type:none;">
- <p>
- Test the syntax of smb.conf file with command
- <span id="code">
- testparam
- </span>
- </p>
- </li>
- <li>
- Add users:
- <p>
- In order to define passwords for Samba users they have to exist on a local system, too.
- <p>
- Use command
- <span id="code">
- useradd USERNAME --shell /bin/false
- </span>
- to create user with a disabled account and without home directory, e.g:
- <p id="code">
- useradd tester --shell /bin/false
- </p>
- </p>
- <p>
- Define Samba password for your user:
- <p id="code">
- smbpasswd -a tester
- </p>
- <p>
- Add the user to your group.
- <p>
- Open /etc/group file and add group and users:
- <span id="code">
- users:x:1002:tester
- </span>
- </p>
- </p>
- <li> Restart Samba.
- </li>
- </li>
- </ol>
- </li>
- </ol>
- </li>
- <br>
- <a name="client"></a>
- <li>
- <h3>
- Client SimpleArbiterDhcp
- </h3>
- <ul type="disc">
- <li>Create directories for your mounts, e.g.:
- <p id="code">
- mkdir mnt<br>
- mkdir mnt/smb<br>
- mkdir mnt/nfs<br>
- </p>
- </li>
- <li>
- NFS: Run command
- <p id="code">
- sudo mount 192.168.1.10:/srv/nfs/ERLbbBrT /mnt/nfs
- </p>
- </li>
- <li>
- SMB: Run command
- <p id="code">
- sudo mount -t cifs //192.168.1.10/urania-03 /mnt/smb -o username=tester,password=test,workgroup=users<br>
- </p>
- </li>
- <p>
- You should be able to access shared folders now.
- </p>
- </ul>
- </li>
- </ul>
-</body>
-</html>
\ No newline at end of file diff --git a/kpov_judge/tasks/smb_nfs/howtos/images/parameters.png b/kpov_judge/tasks/smb_nfs/howtos/images/parameters.png Binary files differdeleted file mode 100644 index 7d3db83..0000000 --- a/kpov_judge/tasks/smb_nfs/howtos/images/parameters.png +++ /dev/null diff --git a/kpov_judge/tasks/smb_nfs/howtos/si/index.html b/kpov_judge/tasks/smb_nfs/howtos/si/index.html deleted file mode 100644 index 80d910d..0000000 --- a/kpov_judge/tasks/smb_nfs/howtos/si/index.html +++ /dev/null @@ -1,71 +0,0 @@ -<!DOCTYPE html> -<html lang="sl"> - -<head> - <title>SMB NFS How To</title> - <meta charset="utf-8" /> - <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" /> -</head> - -<body class="container"> - <h1>KPOV Judge 7 (SMB NFS)</h1> - <p>V tej vaji postavimo na linux-u strežnik za nudenje datotek prek mreže in strežnik za SMB, s katerim lahko na Windows sistemih postavimo datoteko v skupno rabo. Pazi da bo simpleArbiterDhcpGW imel NFS pravico pisanja po imeniku!</p> - <h2>Virtualni računalniki</h2> - <ul> - <li>simpleArbiterDhcpGW</li> - <li>student-fileserver</li> - </ul> - <h3>simpleArbiterDhcpGW</h3> - <p>Naj ima 2 omrežna vmesnika, prvi naj bo preko NAT povezan na svetovni splet, drugi vmesnik pa naj vsebuje interno povezavo znotraj virtualnih sistemov na tvojem računalniku “<i>intnet</i>”.</p> - <h3>student-fileserver</h3> - <p>Naj ima 1 omrežni vmesnik, povezan na interno omrežje “<i>intnet</i>”.</p> - <h2>Parametri</h2> - <div class="figure"> - <img src="../images/parameters.png" alt="Parametri" /> - <p class="caption">Parametri za reševanje naloge</p> - </div> - <p>Tokrat imamo tri parametre. “Imenovani” <strong>dir</strong>, <strong>smb-share</strong>, <strong>smb-server</strong>.</p> - <p>Oziroma iz slike so to: </p> - <ul> - <li><strong>dir</strong> = TeNVU74X</li> - <li><strong>smb-share</strong> = aurora-85</li> - <li><strong>smb-server</strong> = melete-04</li> - </ul> - <h2>Postopek</h2> - <p>Ko zaženemo simpleArbiterDhcpGW in student-fileserver se najprej prijavimo v oba sistema. Nato pa na student-fileserver poženemo</p> - <div class="sourceCode"><pre class="sourceCode bash"><code class="sourceCode bash"><span class="ex">apt-get</span> update <span class="kw">&&</span> <span class="ex">apt-get</span> install nfs-kernel-server samba</code></pre></div> - <h3>Nastavitve NFS</h3> - <p>V datoteki <code>/etc/exports</code> dodamo sledečo vrtstico: <code>/srv/nfs/[dir] [IP simpleArbiterDhcpGW](rw)</code>.</p> <p>Datoteko shranimo in znova poženemo NFS strežnik.</p> - <div class="sourceCode"><pre class="sourceCode bash"><span class="ex">service</span> nfs-kernel-server restart</pre></div> - <p>Ustvarimo imenik, ki smo ga malce prej navedli v nastavitvah NFS. In nato omogočimo vsem pisanje po tem imeniku.</p> - <div class="sourceCode"> - <pre class="sourceCode bash"> -<span class="fu">mkdir</span> /srv/nfs/[dir] -<span class="fu">chmod</span> oug+w /srv/nfs/[dir] -</pre> - </div> - <h3>Nastavitve SMB</h3> - <p>Vse nastavitvene datoteke SMB se nahajajo v imeniku: <code>/etc/samba</code>. Zanima pa nas datoteka <code>smb.conf</code>.</p> - <div class="sourceCode"><pre class="sourceCode bash"><span class="co"># Datoteka smb.conf</span> - [<span class="ex">global</span>] - - <span class="ex">workgroup</span> = WORKGROUP - <span class="ex">netbios</span> name = [smb-server] <span class="co"># Nadomestek DNS, ki si ga je izmislil Microsoft</span> - - <span class="co"># Malce nižje pod vrstico =========== Share Definitions =========== dodamo svoje nastavitve</span> - - [[<span class="ex">smb-share</span>]] <span class="co"># Primer iz slike: [aurora-85]</span> - <span class="ex">path</span> = /srv/nfs/[dir] - <span class="bu">read</span> <span class="va">only</span> <span class="va">=</span> <span class="va">no</span> - <span class="ex">guest</span> ok = yes - <span class="ex">browseable</span> = yes</pre></div> - <p>Ko popravimo to datoteko restartamo SMB in NetBios s spodnjima ukazoma.</p> - <div class="sourceCode"><pre class="sourceCode bash"><span class="ex">service</span> smbd restart -<span class="ex">service</span> nmbd restart</pre></div> - <h2>Testiranje</h2> - <p>Sedaj samo še testiranje :) Za to pa na <strong>simpleArbiterDhcpGW</strong> poženi testno skripto.</p> - <div class="sourceCode"><pre class="sourceCode bash"><span class="ex">./test_task.py</span></pre></div> - -</body> - -</html> diff --git a/kpov_judge/tasks/smb_nfs/task.py b/kpov_judge/tasks/smb_nfs/task.py deleted file mode 100644 index 6d1e51d..0000000 --- a/kpov_judge/tasks/smb_nfs/task.py +++ /dev/null @@ -1,138 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -# TODO: dokoncaj! -instructions = { - 'si': '''\ -<p> -Postavi dva navidezna računalnika: <em>simpleArbiterDhcp</em> in <em>FileServer</em>. - -<p> -Poskrbi, da bo imenik <code>{{NFS_MOUNT}}</code> na <em>FileServer</em> dostopen prek NFS in prek SMB kot imenik v skupni rabi <code>{{SMB_SHARENAME}}</code>. Ime strežnika SMB nastavite na <code>{{FILESERVER_NAME}}</code>. - -<p> -<em>SimpleArbiterDhcp</em> naj ima prek NFS pravico pisati po imeniku. -''', - 'en': '''\ -<p> -Set up two virtual computers: <em>simpleArbiterDhcp</em> and <em>FileServer</em>. - -<p> -Make sure that the directory <code>{{NFS_MOUNT}}</code> on <em>FileServer</em> is accessible over NFS and over SMB under the sharename <code>{{SMB_SHARENAME}}</code>. Set the SMB server name to <code>{{FILESERVER_NAME}}</code>. - -<p> -<em>SimpleArbiterDhcp</em> should have write access to <code>{{NFS_MOUNT}}</code> over NFS. -''', -} - -computers = { - 'FileServer': { - 'disks': [ - { 'name': 'student-fileserver', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterDhcpGW', - }, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'FILESERVER_IP': {'descriptions': {'si': 'IP streznika'}, 'w': True, 'public':True, 'type': 'IP', 'generated': False}, - 'FILESERVER_NAME': {'descriptions': {'si': 'Ime streznika'}, 'w': False, 'public':True, 'type': 'hostname', 'generated': True}, - 'SMB_SHARENAME': {'descriptions': {'si': 'Ime imenika v skupni rabi prek SMB', 'en': 'SMB sharename'}, 'w': False, 'public':True, 'type': 'filename', 'generated': True}, - 'NFS_MOUNT': {'descriptions': {'si': 'Imenik, dostopen prek NFS'}, 'w': False, 'public': True, 'type': 'filename', 'generated': True}, - 'SHARED_FILENAME': {'descriptions': {'si': 'Iskana datoteka'}, 'w': False, 'public': True, 'type': 'filename', 'generated': True}, - 'SHARED_CONTENT': {'descriptions': {'si': 'Vsebina iskane datoteke'}, 'w': False, 'public': False, 'type': 'short', 'generated': True}, - 'SHARED_FILE_SEED': {'descriptions': {'si': 'Dodatni podatek za testiranje'}, 'w': False, 'public': True, 'type': 'filename', 'generated': True}, -} - -def task(FILESERVER_IP, FILESERVER_NAME, NFS_MOUNT, SMB_SHARENAME, SHARED_FILE_SEED): - import pexpect - import random - # TODO: (polz) Try using pexpect instead of subprocess, it's much nicer. - # Tabela vseh mountov. - # Samo mounti na streznik. - results = dict() - results['mount'] = pexpect.run('mount') - results['try_mount_nfs'] = pexpect.run('sudo mount -t nfs {}:/{} /mnt/nfs'.format( - FILESERVER_IP, NFS_MOUNT)) - results['try_mount_smb'] = pexpect.run( - 'sudo mount -t cifs //{}/{} /mnt/smb -o ip={},guest'.format( - FILESERVER_NAME, SMB_SHARENAME, FILESERVER_IP)) - results['mount_after'] = pexpect.run('mount') - results['ls_smbmount'] = pexpect.run('ls /mnt/smb') - results['ls_nfs'] = pexpect.run('ls /mnt/nfs') - r = random.Random(SHARED_FILE_SEED) - testfile = kpov_util.fname_gen(r) - teststring = kpov_util.alnum_gen(r, 200) - with open('/mnt/nfs/{}'.format(testfile),'w') as f: - f.write(teststring) - results['filestr'] = pexpect.run( - 'cat /mnt/smb/{}'.format(testfile)) - results['filels'] = pexpect.run( - 'ls /mnt/smb/'.format(testfile)) - pexpect.run('rm /mnt/nfs/{}'.format(testfile)) - results['filels_later'] = pexpect.run('ls /mnt/smb') - pexpect.run("sudo umount /mnt/nfs") - pexpect.run("sudo umount /mnt/smb") - return results - -def gen_params(user_id, params_meta): - d = kpov_util.default_gen(user_id, params_meta) - r = random.Random(user_id) - d['FILESERVER_NAME'] = kpov_util.hostname_gen(r) - d['SMB_SHARENAME'] = kpov_util.hostname_gen(r) - d['NFS_MOUNT'] = "/srv/nfs/" + kpov_util.fname_gen(r, False) - d['SHARED_FILENAME'] = kpov_util.fname_gen(r) - d['SHARED_CONTENT'] = kpov_util.fortune(r, 4096) - d['SHARED_FILE_SEED'] = kpov_util.alnum_gen(r, 42) - return d - -def task_check(results, params): - score = 0 - hints = [] - r = random.Random(params['SHARED_FILE_SEED']) - testfile = kpov_util.fname_gen(r) - teststring = kpov_util.alnum_gen(r, 200) - # no need to check results['mount'] or results['try_mount_nfs'] - # or results['try_mount_smb'] - if results['mount_after'].find('//{}/{} on /mnt/smb type cifs'.format( - params['FILESERVER_NAME'], params['SMB_SHARENAME'])) >= 0: - score += 2 - if results['mount_after'].find('{}:{} on /mnt/nfs type nfs'.format( - params['FILESERVER_IP'], params['NFS_MOUNT'])) >= 0: - score += 2 - if results['ls_smbmount'].find(params['SHARED_FILENAME']) >= 0: - score += 1 - if results['ls_nfs'].find(params['SHARED_FILENAME']) >= 0: - score += 1 - if results['filestr'] == teststring: - score += 2 - filels_later = set(results['filels_later'].split()) - filels = set(results['filels'].split()) - if "".join(filels - filels_later).find(testfile) >= 0: - score += 2 - return score, hints - -def prepare_disks(templates, task_params, global_params): - d = templates['student-fileserver'] - d.mkdir("/srv/nfs") - d.mkdir(task_params['NFS_MOUNT']) - d.write(task_params['NFS_MOUNT'] + "/" + task_params["SHARED_FILENAME"], - task_params["SHARED_CONTENT"]) - d = templates['simpleArbiterDhcpGW'] - d.mkdir('/mnt/nfs') - d.mkdir('/mnt/smb') - write_default_config(templates['simpleArbiterDhcpGW'], global_params) diff --git a/kpov_judge/tasks/snmp_agent_uptime/howtos/en/index.html b/kpov_judge/tasks/snmp_agent_uptime/howtos/en/index.html deleted file mode 100644 index bef6792..0000000 --- a/kpov_judge/tasks/snmp_agent_uptime/howtos/en/index.html +++ /dev/null @@ -1,319 +0,0 @@ -<html>
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8">
- <title>snmp_agent_uptime</title>
- </head>
- <body>
- <h1>snmp_agent_uptime</h1>
- <h2>Quick instructions</h2>
- <p>
- Set up three virtual computers, SimpleArbiter with the disk image
- simpleArbiterDhcp, SNMPServer and SNMPClient. Write a program
- called upminutes. This program should output the uptime of the
- computer in minutes. Set it up on SNMPClient in the home directory
- of the user test with the password test.
- </p>
- <p>
- Make sure that the SNMP server reports it's uptime in seconds
- over SNMP under NET-SNMP-EXTEND-MIB::nsExtendOutput2Table.
- </p>
- <p>
- Write a script called beri.sh that reads the value from the
- OID 1.3.6.1.4.1.8072.1.3.2.4.1.2 on SNMPServer. Set it up on
- SNMPClient in the home directory of the user test.
- </p>
- <h2>Instructions</h2>
- <h3>Set up of VM VirtualBox</h3>
- <ol>
- <li>
- Download the following virtual images (*.vid) from the directory
- with images of virtual computers:
- <ol type="disc">
- <li>
- simpleArbiterDhcp.vdi
- </li>
- <li>
- some-bash-console.vdi – twice, one for SNMPServer
- and second for SNMPClient
- </li>
- </ol>
- </li>
- <li>
- VM VirtualBox WARNING! If you want to use one same virtual image
- (some-bash-console.vdi) for two virtual computers
- (SNMPServer and SNMPClient), you must <strong>change UUID</strong>
- of one image.
- <ol type="disc">
- <li>
- Use this command
- <i>vboxmanage internalcommands sethduuid name-of-disk.vdi</i>
- to change UUID (<a href="http://www.giannistsakiris.com/2009/05/06/virtualbox-how-to-change-the-uuid-of-virtual-disk-vdi/">hint</a>).
- </li>
- </ol>
- </li>
- <li>
- Final view of sets VM VirtualBox machines.<br>
- <img src="../images/01.png" alt="VM VirtualBox machines" width="800">
- </li>
- </ol>
-
- <h3>Set up of SNMPServer machine</h3>
- <ol>
- <li>
- setup network as “Bridged Adapter” -> Machine-> Settings ->Network
-
- Install snmpd and snmp packages and tools for inspecting the
- data available over SNMP.
- <ol type="disc">
- <li>
- command <i>apt-get install snmpd snmp snmp-mibs-downloader</i>
- </li>
- </ol>
- <li>
- RECOMMENDATION! Before doing any changes to your /etc/snmp/snmpd.conf
- file take a copy of original file.
- <ol type="disc">
- <li>
- command <i>cp /etc/snmp/snmpd.conf /etc/snmp/snmpd.conf.orig</i>
- </li>
- </ol>
- </li>
- <li>
- Set up the snmp server to allow all other computers to access it = edit
- snmpd.conf file.
- <ol type="disc">
- <li>
- command <i>nano /etc/snmp/snmpd.conf</i>
- (you can use different editor)
- </li>
- <li>
- Check this 4 rows and make sure they look like this:<br>
- <i># Listen for connections from the local system only<br>
- # agentAddress udp:127.0.0.1:161<br>
- # Listen for connections on all interfaces (both IPv4 *and* IPv6)<br>
- agentAddress udp:161,udp6:[::1]:161</i>
- </li>
- </ol>
- </li>
- <li>
- Add a group (community) of computers we deem to be worthy of
- accessing all data. This group will be called students = again edit
- snmpd.conf file.
- <ol type="disc">
- <li>
- rocommunity students 0.0.0.0/0
- </li>
- <li>
- change 0.0.0.0./0 into correct address <i>ifconfig -a</i>
- </li>
- </ol>
- </li>
- <li>
- OPTIONAL CONFIGURATION. Lower in the same file you can set the
- location of the computer snmpd is running on and the name
- of the administrator.
- <ol type="disc">
- <li>
- find under # SYSTEM INFORMATION
- </li>
- </ol>
- </li>
- <li>
- Make sure that the SNMP server reports it's uptime in seconds
- over SNMP under NET-SNMP-EXTEND-MIB::nsExtendOutput2Table.
- <ol type="disc">
- <li>
- create script upseconds containing this and save it where
- you want:<br>
- <i>#!/bin/bash<br>
- uptime=$(</proc/uptime)<br>
- seconds=${uptime%%.*}<br>
- echo "Uptime in seconds:" $seconds<br>
- exit 0</i>
- </li>
- <li>
- don't forget to make the script runnable:<br>
- command <i>chmod +x /your_path_to_script/upseconds</i>
- </li>
- <li>
- Then edit file <i>snmpd.conf</i> and under # EXTENDING THE AGENT
- comment all three tests and add your line of your code
- with upsecond script. It will look like this:<br>
- <i># extend test1 /bin/echo Hello, world!<br>
- # extend-sh test2 echo Hello, world! ; echo Hi there ; exit 35<br>
- # extend-sh test3 /bin/sh /tmp/shtest<br>
- extend-sh "your_name" "your_path_to_script_upseconds"
- </i>
- </li>
- </ol>
- </li>
- <li>
- You need to restart the snmp services.
- <ol type="disc">
- <li>
- command <i>/etc/init.d/snmpd restart</i>
- </li>
- </ol>
- </li>
- <li>
- You can test your configuration through localhost.
- <ol type="disc">
- <li>
- command <i>snmpwalk localhost -c public -v1</i>
- </li>
- </ol>
- </li>
- <li>
- Also test the correct return of server's uptime in seconds SNMP under
- NET-SNMP-EXTEND-MIB::nsExtendOutput2Table.
- <ol type="disc">
- <li>
- command <i>snmpwalk -c students -v1 IPaddressOfServer
- 1.3.6.1.4.1.8072.1.3.2.4.1.2</i>
- </li>
- <li>
- you should get string: "Uptime in seconds: xyz"
- </li>
- </ol>
- </li>
- </ol>
-
- <h3>Set up of SNMPClient machine</h3>
- <ol>
- <li>
- Install snmpd and snmp packages.
- <ol type="disc">
- <li>
- command <i>apt-get install snmpd snmp</i>
- </li>
- </ol>
- <li>
- RECOMMENDATION! Before doing any changes to your /etc/snmp/snmpd.conf
- file take a copy of original file.
- <ol type="disc">
- <li>
- command <i>cp /etc/snmp/snmpd.conf /etc/snmp/snmpd.conf.orig</i>
- </li>
- </ol>
- </li>
- <li>
- Set up the snmp client to allow all other computers to access it = edit
- snmpd.conf file.
- <ol type="disc">
- <li>
- command <i>nano /etc/snmp/snmpd.conf</i>
- (you can use different editor)
- </li>
- <li>
- (un)comment these four lines as below:<br>
- <i># Listen for connections from the local system only<br>
- # agentAddress udp:127.0.0.1:161<br>
- # Listen for connections on all interfaces (both IPv4 *and* IPv6)<br>
- agentAddress udp:161,udp6:[::1]:161</i>
- </li>
- </ol>
- </li>
- <li>
- Add a group (community) of computers we deem to be worthy of
- accessing all data. This group will be called students = again edit
- snmpd.conf file.
- <ol type="disc">
- <li>
- rocommunity students 0.0.0.0/0
- </li>
- <li>
- write correct network address = command <i>ifconfig -a</i>
- </li>
- </ol>
- </li>
- <li>
- OPTIONAL CONFIGURATION. Lower in the same file you can set the
- location of the computer snmpd is running on and the name
- of the administrator.
- <ol type="disc">
- <li>
- find under # SYSTEM INFORMATION
- </li>
- </ol>
- </li>
-
- <li>
- You need to restart the snmp services.
- <ol type="disc">
- <li>
- command <i>/etc/init.d/snmpd restart</i>
- </li>
- </ol>
- </li>
- <li>
- You can test your configuration through localhost.
- <ol type="disc">
- <li>
- command <i>snmpwalk localhost -c public -v1</i>
- </li>
- </ol>
- </li>
- <li>Create the user <i>test</i> with password <i>test</i>
- <ol type="disc">
- <li>
- command <i>adduser test</i>
- </li>
- </ol>
- </li>
- <li>Login as user <i>test</i> and create program <i>upminutes</i>
- in the home directory. This program should output the uptime of the
- computer in minutes.
- <ol type="disc">
- <li>
- command <i>nano upminutes</i> (you can use different editor)
- </li>
- <li>
- add the source code:<br>
- <i>#!/bin/bash<br>
- uptime=$(</proc/uptime)<br>
- uptime=${uptime%%.*}<br>
- minutes=$(( uptime / 60 ))<br>
- echo $minutes<br>
- exit 0</i>
- </li>
- <li>
- don't forget to make the program runnable:<br>
- command <i>chmod +x /home/test/upminutes</i>
- </li>
- <li>
- test the program (it should output the uptime of the
- computer in minutes)<br>
- command <i>/home/test/upminutes</i>
- </li>
- </ol>
- </li>
- <li><strong> As user <i>test</i> and create next script called
- <i>beri.sh</i> that reads the value from the OID
- 1.3.6.1.4.1.8072.1.3.2.4.1.2. on SNMPServer. Set it up on SNMPClient
- in the home directory of the user test.
- <ol type="disc">
- <li>
- command <i>nano beri.sh</i> (you can use different editor)
- </li>
- <li>
- add the source code:<br>
- <i>#!/bin/bash<br>
- snmpwalk -c students -v1 IPServerAddress 1.3.6.1.4.1.8072.1.3.2.4.1.2<br>
- exit 0</i>
- </li>
- <li>
- don't forget to make the program runnable:<br>
- command <i>chmod +x /home/test/upminutes</i>
- you can test it with <i>./beri.sh</i>
- </li>
- </ol>
- </li>
- </ol>
-
- <h3> Setting SimpleArbiter </h3>
- User: tester
- Password: test
-
- apt-get install libsnmp-python
- </body>
-</html>
diff --git a/kpov_judge/tasks/snmp_agent_uptime/howtos/images/01.png b/kpov_judge/tasks/snmp_agent_uptime/howtos/images/01.png Binary files differdeleted file mode 100644 index 1bd01aa..0000000 --- a/kpov_judge/tasks/snmp_agent_uptime/howtos/images/01.png +++ /dev/null diff --git a/kpov_judge/tasks/snmp_agent_uptime/howtos/si/index.html b/kpov_judge/tasks/snmp_agent_uptime/howtos/si/index.html deleted file mode 100644 index f490f6c..0000000 --- a/kpov_judge/tasks/snmp_agent_uptime/howtos/si/index.html +++ /dev/null @@ -1,308 +0,0 @@ -<html>
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8">
- <title>snmp_agent_uptime</title>
- </head>
- <body>
- <h1>snmp_agent_uptime</h1>
- <h2>Namen naloge</h2>
- <p>
-
- </p>
- <h2>Hitra navodila</h2>
- <p>
- Naloga: Postavi tri navidezne racunalnike SimpleArbiter s sliko diska simpleArbiterDhcp,SNMPServer in
- SNMPClient.
- Napiši program upminutes, ki bo izpisal v minutah koliko casa je racunalnik vklopljen.
- Postavi ga na SNMPClient v domaÄŤi imenik uporabnika test z geslom test.
- </p>
- <p>
- Poskrbi, da bo SNMP strežnik prek SNMP pod NET-SNMP-EXTEND-MIB::nsExtendOutput2Table sporočal, koliko časa je vklopljen v sekundah.
- </p>
- <p>
- Napisi skripto, poimenovano beri.sh, ki prek SNMP prebere vrednost s streĹľnika
- SNMPServer na OID 1.3.6.1.4.1.8072.1.3.2.4.1.4.
- Postavi jo na SNMP klienta, v domači imenik uporabnika test z geslom test.
- </p>
- <h2>Navodila</h2>
- <h3>Nastavitev VM VirtualBox-a</h3>
- <ol>
- <li>
- Prenesi sledeče slike virtualk (*.vid) iz datoteke
- z slikami virtualk računalnikov:
- <ol type="disc">
- <li>
- simpleArbiterDhcp.vdi
- </li>
- <li>
- neko-bash-konzolo.vdi (dvakrat), enkrat za SNMPServer
- in drugič SNMPClient.
- </li>
- </ol>
- </li>
- <li>
- VM VirtualBox OPOZORILO! Ce hoces uporabljati isto sliko virtualke
- (neko-bash-konzolo.vdi) za dva navidezna racunalnika
- (SNMPServer in SNMPClient), moras <strong>spremeniti UUID</strong>
- ene od slik.
- <ol type="disc">
- <li>
- Uporabi ta ukaz
- <i>vboxmanage internalcommands sethduuid ime-diska.vdi</i>
- za spreminjanje UUID (<a href="http://www.giannistsakiris.com/2009/05/06/virtualbox-how-to-change-the-uuid-of-virtual-disk-vdi/">namig</a>).
- </li>
- </ol>
- </li>
- <li>
- Primer VM VirtualBox-a po nastavitvi.<br>
- <img src="..\images\01.png" width="800">
- </li>
- </ol>
-
- <h3>Nastavitev SNMPServer virtualke</h3>
- <ol>
- <li>
- Nasnemi snmpd and snmp orodja za pregledovanje
- podatkov, ki so no voljo preko SNMP.
- <ol type="disc">
- <li>
- ukaz <i>apt-get install snmpd snmp snmp-mibs-downloader</i>
- </li>
- </ol>
- <li>
- PRIPOROCILO! Preden spreminjate vaso datoteko /etc/snmp/snmpd.conf,
- naredite kopijo originalne datoteke.
- <ol type="disc">
- <li>
- ukaz <i>cp /etc/snmp/snmpd.conf /etc/snmp/snmpd.conf.orig</i>
- </li>
- </ol>
- </li>
- <li>
- Nastavi snmp streznik tako, da se bodo lahko nanj povezali drugi racunalniki
- (popravi datoteko snmpd.conf).
- <ol type="disc">
- <li>
- ukaz <i>nano /etc/snmp/snmpd.conf</i>
- (lahko uporabis drug urejevalnik besedila)
- </li>
- <li>
- odkomentiraj sledece stiri vrstice:<br>
- <i># Listen for connections from the local system only<br>
- # agentAddress udp:127.0.0.1:161<br>
- # Listen for connections on all interfaces (both IPv4 *and* IPv6)<br>
- agentAddress udp:161,udp6:[::1]:161</i>
- </li>
- </ol>
- </li>
- <li>
- Dodaj skupino (community) racunalnikov, ki lahko dostopajo do vseh podatkov.
- To skupino bomo poimenovali students (spet potrebno spremeniti datoteko)
- snmpd.conf file.
- <ol type="disc">
- <li>
- rocommunity students 0.0.0.0/0
- </li>
- <li>
- napisi pravilni naslov omrezja = ukaz <i>ifconfig -a</i>
- </li>
- </ol>
- </li>
- <li>
- DODATNA (NEOBVEZNA) KONFIGURACIJA. Nizje v isti datoteki lahko nastavis
- lokacijo racunalnika, na katerem deluje snmp, ter ime administratorja.
- <ol type="disc">
- <li>
- poisci pod # SYSTEM INFORMATION
- </li>
- </ol>
- </li>
- <li>
- Poskrbi, da bo SNMP streznik prek SNMP pod NET-SNMP-EXTEND-MIB::nsExtendOutpucd
- k t2Table sporocal, koliko casa je vklopljen v sekundah.
- <ol type="disc">
- <li>
- ustvari skripto upseconds, v kateri je zapisano sledece:<br>
- <i>#!/bin/bash<br>
- uptime=$(</proc/uptime)<br>
- seconds=${uptime%%.*}<br>
- echo "Uptime in seconds:" $seconds<br>
- exit 0</i><br>
- skripto nato shrani kjerkoli hoces
- </li>
- <li>
- ne pozabi skripti dodelti pravic, da jo lahko zaganjamo:<br>
- ukaz <i>chmod +x /pot_do_skripte/upseconds</i>
- </li>
- <li>
- Nato uredi datoteko <i>snmpd.conf</i> in pod # EXTENDING THE AGENT
- zakomentiraj vse tri teste ter dodaj svojo skripto upseconds.
- Zgledati bi moralo nekako tako:<br>
- <i># extend test1 /bin/echo Hello, world!<br>
- # extend-sh test2 echo Hello, world! ; echo Hi there ; exit 35<br>
- # extend-sh test3 /bin/sh /tmp/shtest<br>
- extend-sh "ime_testa" "pot_to_skripte_upseconds"
- </i>
- </li>
- </ol>
- </li>
- <li>
- Potrebno je ponovno zagnati snmp storitev.
- <ol type="disc">
- <li>
- ukaz <i>/etc/init.d/snmpd restart</i>
- </li>
- </ol>
- </li>
- <li>
- Lahko testiras svoje nastavitve preko localhost-a.
- <ol type="disc">
- <li>
- ukaz <i>snmpwalk localhost -c public -v1</i>
- </li>
- </ol>
- </li>
- <li>
- Stestiraj tudi, ali SNMP vrne pravilni cas delovanja (uptime) v sekundah
- pod NET-SNMP-EXTEND-MIB::nsExtendOutput2Table.
- <ol type="disc">
- <li>
- ukaz <i>snmpwalk -c students -v1 IPnaslovStreznika
- 1.3.6.1.4.1.8072.1.3.2.4.1.2</i>
- </li>
- <li>
- moral bi vrniti taksen string: "Uptime in seconds: xyz"
- </li>
- </ol>
- </li>
- </ol>
-
- <h3>Nastavitev SNMPClient virtualke</h3>
- <ol>
- <li>
- Nasnemi snmpd and snmp paketa.
- <ol type="disc">
- <li>
- ukaz <i>apt-get install snmpd snmp</i>
- </li>
- </ol>
- <li>
- PRIPOROCILO! Preden spreminjate vaso datoteko /etc/snmp/snmpd.conf,
- naredite kopijo originalne datoteke.
- <ol type="disc">
- <li>
- ukaz <i>cp /etc/snmp/snmpd.conf /etc/snmp/snmpd.conf.orig</i>
- </li>
- </ol>
- </li>
- <li>
- Nastavi snmp streznik tako, da se bodo lahko nanj povezali drugi racunalniki
- (popravi datoteko snmpd.conf).
- <ol type="disc">
- <li>
- ukaz <i>nano /etc/snmp/snmpd.conf</i>
- (lahko uporabis drug urejevalnik besedila)
- </li>
- <li>
- odkomentiraj sledece stiri vrstice:<br>
- <i># Listen for connections from the local system only<br>
- # agentAddress udp:127.0.0.1:161<br>
- # Listen for connections on all interfaces (both IPv4 *and* IPv6)<br>
- agentAddress udp:161,udp6:[::1]:161</i>
- </li>
- </ol>
- </li>
- <li>
- Dodaj skupino (community) racunalnikov, ki lahko dostopajo do vseh podatkov.
- To skupino bomo poimenovali students (spet potrebno spremeniti datoteko)
- snmpd.conf file.
- <ol type="disc">
- <li>
- rocommunity students 0.0.0.0/0
- </li>
- <li>
- napisi pravilni naslov omrezja = ukaz <i>ifconfig -a</i>
- </li>
- </ol>
- </li>
- <li>
- DODATNA (NEOBVEZNA) KONFIGURACIJA. Nizje v isti datoteki lahko nastavis
- lokacijo racunalnika, na katerem deluje snmp, ter ime administratorja.
- <ol type="disc">
- <li>
- poisci pod # SYSTEM INFORMATION
- </li>
- </ol>
- </li>
-
- <li>
- Potrebno je ponovno zagnati snmp storitev.
- <ol type="disc">
- <li>
- ukaz <i>/etc/init.d/snmpd restart</i>
- </li>
- </ol>
- </li>
- <li>
- Lahko testiras svoje nastavitve preko localhost-a.
- <ol type="disc">
- <li>
- ukaz <i>snmpwalk localhost -c public -v1</i>
- </li>
- </ol>
- </li>
- <li>Ustvari uporabnika <i>test</i> z geslom <i>test</i>
- <ol type="disc">
- <li>
- ukaz <i>adduser test</i>
- </li>
- </ol>
- </li>
- <li>Prijavi se kot uporabnik <i>test</i> ter naredi skripto <i>upminutes</i>
- v domacem direktoriju. Ta skripta naj izpisuje cas delovanja racunalnika (uptime) v minutah.
- <ol type="disc">
- <li>
- ukaz <i>nano upminutes</i> (lahko uporabis drug urejevalnik besedila)
- </li>
- <li>
- dodaj sledeco kodo:<br>
- <i>#!/bin/bash<br>
- uptime=$(</proc/uptime)<br>
- uptime=${uptime%%.*}<br>
- minutes=$(( uptime / 60 ))<br>
- echo $minutes<br>
- exit 0</i>
- </li>
- <li>
- ne pozabi skripti dodelti pravic, da jo lahko zaganjamo:<br>
- ukaz <i>chmod +x /pot_do_skripte/upminutes</i>
- </li>
- <li>
- stestiraj skripto (izpisovati bi morala cas delovanja racunalnika (uptime) v minutah)<br>
- ukaz <i>/home/test/upminutes</i>
- </li>
- </ol>
- </li>
- <li>Kot uporabnik <i>test</i> naredi se eno skripto <i>beri.sh</i>m ki bere
- vrednosti od OID 1.3.6.1.4.1.8072.1.3.2.4.1.2.
- na SNMPServer. Shrani jo na SNMPClient v domac direktorij uporabnika test.
- <ol type="disc">
- <li>
- ukaz <i>nano beri.sh</i> (lahko uporabis drug urejevalnik besedila)
- </li>
- <li>
- dodaj kodo:<br>
- <i>#!/bin/bash<br>
- snmpwalk -c students -v1 IPnaslovStreznika 1.3.6.1.4.1.8072.1.3.2.4.1.2<br>
- exit 0</i>
- </li>
- <li>
- ne pozabi skripti dodelti pravic, da jo lahko zaganjamo:<br>
- ukaz <i>chmod +x /pot_do_skripte/upminutes</i>
- </li>
- </ol>
- </li>
- </ol>
-
- </body>
-</html>
diff --git a/kpov_judge/tasks/snmp_agent_uptime/task.py b/kpov_judge/tasks/snmp_agent_uptime/task.py deleted file mode 100644 index 919fcb4..0000000 --- a/kpov_judge/tasks/snmp_agent_uptime/task.py +++ /dev/null @@ -1,224 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -# TODO: finish this. -instructions = { - 'si': '''\ -<p> -Postavi tri navidezne računalnike: <em>SimpleArbiter</em>, <em>SNMPServer</em> in <em>SNMPClient</em>. - -<p> -Napiši program <code>upminutes</code>, ki bo izpisal v minutah, koliko časa je racunalnik vklopljen. Postavi ga na <em>SNMPClient</em> v domači imenik uporabnika <code>test</code> z geslom <code>test</code>. - -<p> -Poskrbi, da bo strežnik SNMP pod OID - -<pre><code>{{SNMP_UPTIME_OID}}</code></pre> - -<p> -sporočal, koliko časa je vklopljen v sekundah. - -<p> -Napiši skripto, poimenovano <code>beri.sh</code>, ki prek SNMP prebere vrednost s <em>simpleArbiterDhcpGWSNMP</em> na OID - -<pre><code>{{SNMP_CLIENT_OID}}</code></pre> - -<p> -kot član skupnosti <code>testers</code>. Postavi jo na <em>SNMPClient</em>, v domači imenik uporabnika <code>test</code>. Poskrbi, da bodo podatki na SNMPServer dostopni za skupino (angl. <em lang="en">community</em>) <code>studentje</code>. -''', - 'en': '''\ -<p> -Set up three virtual computers: <em>SimpleArbiter</em>, <em>SNMPServer</em> and <em>SNMPClient</em>. - -<p> -Write a program called <code>upminutes</code>. This program should output the uptime of the computer in minutes. Set it up on <em>SNMPClient</em> in the home directory of the user <code>test</code> with the password <code>test</code>. - -<p> -Make sure that the SNMP server reports its uptime in seconds over SNMP under OID - -<pre><code>{{SNMP_UPTIME_OID}}</code></pre> - -<p> -Write a script called <code>beri.sh</code> that reads the value from the OID - -<pre><code>{{SNMP_CLIENT_OID}}</code></pre> - -<p> -on <em>simpleArbiterDhcpGWSNMP</em> as a member of the community <code>testers</code>. Set it up on <em>SNMPClient</em> in the home directory of the user <code>test</code>. Make all the data available over SNMP readable by the community <code>studentje</code>. -''', -} - -computers = { - 'SNMPClient': { - 'disks': [ - { 'name': 'student-SNMPClient', - - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - }, - 'SNMPServer': { - 'disks': [ - { 'name': 'student-SNMPServer', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterDhcpGWSNMP', - }, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'SNMP_VALUE': {'descriptions': {'si': 'Vrednost, dostopna prek SNMP', 'en': 'The value available over SNMP'}, 'w': False, 'public':False, 'type': 'short', 'generated': True}, - 'SNMP_UPTIME_OID': {'descriptions': {'si': 'SNMP_UPTIME_OID (za uptime)', 'en': 'SNMP_UPTIME_OID (for the uptime)'}, 'w': False, 'public':True, 'type': 'str', 'generated': True}, - 'SNMP_CLIENT_OID': {'descriptions': {'si': 'SNMP_CLIENT_OID, ki naj ga klient bere', 'en':'The OID that the client should read'}, 'w': False, 'public':True, 'type': 'OID', 'generated': True}, - 'SERVER_IP': {'descriptions': {'si': 'IP SNMP strežnika', 'en':'IP of the SNMP server'}, 'w': True, 'public':True, 'type': 'IP', 'generated': False}, - 'CLIENT_IP': {'descriptions': {'si': 'IP SNMP klienta', 'en': 'IP of the SNMP client'}, 'w': True, 'public':True, 'type': 'IP', 'generated': False}, - -} - -def task(SERVER_IP, CLIENT_IP, SNMP_UPTIME_OID, SNMP_CLIENT_OID): - #<== Aleksander Fujs 6310020 ==> - # TODO popravi IPje - import netsnmp - import paramiko - from paramiko import SSHClient - return_results = {} - - client = SSHClient() - client.load_system_host_keys() - client.set_missing_host_key_policy(paramiko.AutoAddPolicy()) - - client.connect(SERVER_IP, username='student', password='vaje') - stdin, stdout, stderr = client.exec_command('uptime=$(</proc/uptime); uptime=${uptime%%.*}; echo $uptime') - return_results['server_uptime'] = stdout.read() - - try: - session = netsnmp.Session(DestHost=SERVER_IP, Version=2, Community='studentje') - # results_objs = netsnmp.VarList(netsnmp.Varbind(SNMP_UPTIME_OID)) #117.112.116.105.109.101 <-uptime - results_objs = netsnmp.VarList(netsnmp.Varbind('.1.3.6.1.4.1.8072.1.3.2.4.1.2')) #117.112.116.105.109.101 <-uptime - session.walk(results_objs) - result_list = [] - for result in results_objs: - result_list.append('{}.{}: {}'.format( - result.tag, result.iid, result.val)) - return_results['server_OID'] = "\n".join(result_list) - except Exception as exception_error: - # Check for errors and print out results - print(('ERROR: Occurred during SNMPget for OID %s from %s: ' - '(%s)') % (SNMP_UPTIME_OID, CLIENT_IP, exception_error)) - sys.exit(2) - - client.connect(CLIENT_IP, username='test', password='test') - stdin, stdout, stderr = client.exec_command('uptime=$(</proc/uptime); uptime=${uptime%%.*}; echo $(( uptime ))') - return_results['client_uptime'] = stdout.read() - # zakaj bi morala biti ravno bash skripta? - stdin, stdout, stderr = client.exec_command('/home/test/upminutes') - #TODO preverit da ni v skripti hardcodan - return_results['client_script'] = stdout.read() - - stdin, stdout, stderr = client.exec_command('/home/test/beri.sh') - return_results['client_script2'] = stdout.read() - #TODO add 3 part of assigement - return return_results - #<== Aleksander Fujs 6310020 ==> - - -def gen_params(user_id, params_meta): - import random - params = dict() - r = random.Random(user_id) - # You can also create an OID creation function in kpov_util. - # this should probably return params_meta - - #<== Aleksander Fujs 6310020 ==> - params['SNMP_VALUE'] = kpov_util.alnum_gen(r, 64) - params['SNMP_UPTIME_OID'] = 'NET-SNMP-EXTEND-MIB::nsExtendOutLine."{}".1'.format( - kpov_util.hostname_gen(r)) - params['SNMP_CLIENT_OID'] = '1.3.6.1.4.1.8072.2.9999.9999.{}'.format( - r.randint(0, 255)) - #<== Aleksander Fujs 6310020 ==> - - return params - -def task_check(results, params): - #TODO improve regex - import re - score = 0 - hints = [] - client_script_uptime = int(results['client_script'].strip()) - client_uptime = int(results['client_uptime'].strip()) - d = client_uptime - client_script_uptime*60 - if d >= 0 and d < 62: - score += 3 - else: - hints += ["client uptime script output wrong."] - server_uptime = int(results['server_uptime'].strip()) - lines = results['server_OID'].split('\n') - unique_part_start = params['SNMP_UPTIME_OID'].find('"') - unique_part_end = params['SNMP_UPTIME_OID'].find('"', unique_part_start+1) - unique_part = params['SNMP_UPTIME_OID'][unique_part_start+1:unique_part_end] - server_oid = 'iso.3.6.1.4.1.8072.1.3.2.4.1.2.{}.'.format(len(unique_part)) - server_oid += '.'.join([str(ord(i)) for i in unique_part]) + '.1.' - found_uptime = False - for line in lines: - try: - oid, uptime_s = line.split(':') - d = server_uptime - int(uptime_s.strip()) - if oid.strip() == server_oid and d >= -2 and d <= 5: - found_uptime = True - break - except Exception as e: - pass - if len(lines) <= 50 and found_uptime: - score += 3 - else: - hints += ["Uptime not found in server's MDB"] - if results['client_script2'].find(params['SNMP_VALUE']) >= 0: - score += 4 - else: - hints += ["beri.sh not working properly"] - return score, hints - -def prepare_disks(templates, task_params, global_params): -# d = templates['simpleArbiterDhcp'] - prog = """#!/usr/bin/python -import sys -action = sys.argv[1] -oid = sys.argv[2] - -foo_oid = ".{oid}" -foo_oid_start = foo_oid[:foo_oid.rfind('.')] -foo_oid_end = foo_oid[len(foo_oid_start)+1:] -oid_end = oid[len(foo_oid_start)+1:] -oid_start = oid[:len(foo_oid_start)] - -if action == '-n' and ( - (oid_start == foo_oid_start) and ( - (len(oid_end) == 0) or (int(oid_end) < int(foo_oid_end)) - ) - ): - oid = foo_oid - -if action != '-s' and oid == foo_oid: - print foo_oid - print "string" - print "{val}" -""".format(oid = task_params['SNMP_CLIENT_OID'], val = task_params['SNMP_VALUE']) - templates['simpleArbiterDhcpGWSNMP'].write('/usr/local/bin/snmpext.py', prog) - templates['simpleArbiterDhcpGWSNMP'].chmod(0o755, '/usr/local/bin/snmpext.py') - write_default_config(templates['simpleArbiterDhcpGWSNMP'], global_params) diff --git a/kpov_judge/tasks/snmp_alarms_interfaces/task.py b/kpov_judge/tasks/snmp_alarms_interfaces/task.py deleted file mode 100644 index 03d4509..0000000 --- a/kpov_judge/tasks/snmp_alarms_interfaces/task.py +++ /dev/null @@ -1,107 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -instructions = { - 'si':""" -<pre>Postavite tri računalnike - SimpleArbiterSNMP s sliko diska simpleArbiterSNMP, ServerSNMP s sliko -diska serverSNMP ter SNMPClient. - -Na SNMPClient ustvarite uporabnika test z geslom test. V datoteko /home/test/alarmi zapišite -vse IP in vse OID, s katerih po SNMP prihajajo alarmi. Za vsak alarm zapišite eno vrstico, -v kateri bosta najprej IP, nato OID, ločena s presledkom. - -V datoteko /home/test/vmesniki vpišite imena vseh omrežnih vmesnikov, ki jih prek SNMP dobite na -ServerSNMP.</pre> -""" -} - -computers = { - 'maliNetworkManager': { - 'disks': [ - { 'name': 'maliNetworkManager', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'maliBrezNetworkManager': { - 'disks': [ - { 'name': 'maliBrezNetworkManager', - }, - ], - 'network_interfaces': [{'network': 'net1'}], - 'flavor': 'm1.tiny', - 'config_drive': False - - }, - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiterDhcp', - }, - ], - 'network_interfaces': [{'network': 'net1'}, {'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } -} - -networks = { 'net1': {'public': False}, 'test-net': {'public': True} } - -params_meta = { - 'IP_NM': {'descriptions': {'si': 'Naslov maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'DNS_NM': {'descriptions': {'si': 'DNS za maliNetworkManager'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, - 'IP_static': {'descriptions': {'si': 'Naslov maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, - 'DNS_static': {'descriptions': {'si': 'DNS za maliBrezNetworkManager'}, 'w': False, 'public': True, 'type': 'IP', 'generated': True}, -} - -def task(IP_NM, DNS_NM, IP_static, DNS_static): - from pexpect import pxssh - import pexpect - results = dict() - peer_user = 'student' - peer_passwd = 'vaje' - sA = pxssh.pxssh() - sB = pxssh.pxssh() - sA.login(IP_NM, peer_user, peer_passwd) - sB.login(IP_static, peer_user, peer_passwd) - # sA - # make sure NM is not handling eth0 - results['NM_nmcli'] = sA.run('nmcli d') - results['NM_nslookup'] = sA.run('nslookup www.arnes.si') - # sB - # check whether NM is handling eth0 - results['static_nmcli'] = sB.run('nmcli d') - results['static_nslookup'] = sB.run('nslookup www.arnes.si') - sA.logout() - sB.logout() - return results - -def gen_params(user_id, params_meta): - params = dict() - r = random.Random(user_id) - # IP_NM, DNS_NM, IP_static, DNS_static) - dns_servers = ['193.2.1.66', '193.2.1.72', '8.8.8.8', '8.8.4.4', '208.67.222.222', '208.67.220.220'] - net = kpov_util.IPv4_subnet_gen(r, '172.23.128.0/18', 24) - params['DNS_NM'] = r.choice(dns_servers) - params['IP_NM'], params['IP_static'] = kpov_util.IPv4_addr_gen(r, net, 2) - params['DNS_static'] = r.choice(dns_servers) - return params - -def task_check(results, params): - import re - score = -9 - hints = [] - if results['NM_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_NM'])) > -1: - score += 3 - if results['static_nslookup'].find('Server:\t\t{0}\r'.format(params['DNS_static'])) > -1: - score += 3 - if re.search(r'eth0 +802-.*connected', results['NM_nmcli']): - score += 2 - if not re.search(r'eth0 +802-.*connected', results['static_nmcli']): - score += 2 - score = 0 - return score, hints - -def prepare_disks(templates, task_params, global_params): - write_default_config(templates['simpleArbiterDhcp'], global_params) diff --git a/kpov_judge/tasks/vlc_stream_rtp/howtos/en/index.html b/kpov_judge/tasks/vlc_stream_rtp/howtos/en/index.html deleted file mode 100644 index c9e2714..0000000 --- a/kpov_judge/tasks/vlc_stream_rtp/howtos/en/index.html +++ /dev/null @@ -1,94 +0,0 @@ -<html> - -<head> -<meta http-equiv=Content-Type content="text/html; charset=utf-8"> -</head> - - -<body><font face="Georgia, Times New Roman, Times, serif"> - -<h2> Summary </h1> - -<ol> - <li>Set up a virtual machine</li> - <li>Install VLC</li> - <li>Create RTP video stream</li> - <li>Make sure the stream is accessible from the internet</li> -</ol> - - <h2>Instructions</h1> - - <ol> - <li> - <h4>Set up a virtual machine </h3> - <p> Use disk simpleArbiter. You can get it <a href="http://polz.si/media/uploads/kpov/virtualke/">here</a>. </p> - </li> - - <li> - <h4>Install VLC</h3> - <p> - In file <code>/etc/apt/sources.list</code> replace <code>wheezy</code> with - <code>testing</code> or if missing, add rows: - </p> - <p> - <code> - deb http://ftp.at.debian.org/debian wheezy main contrib non-free <br> - deb-src http://ftp.at.debian.org/debian wheezy main contrib non-free - </code> - </p> - <img alt="slika-01" src="../images/1.png" style="width: 640px;" /> - <p> - Check for updates and install VLC with the following commands: - </p> - <p> - <code> - apt-get update <br> - apt-get install vlc - </code> - </p> - </li> - - <li> - <h4>Create a new stream </h3> - - <p> - Open VLC. In Media menu select Stream. - </p> - <img src="../images/stream_menu.png" style="width: 640px;" alt="menu"> - <p> - Here we choose stream source. This can be a file, a network stream or a capture device. <br> - For this excercise, add one or more video file by clicking <i>Add ...</i> Continue with a click on button Stream. - </p> - <img src="../images/playlist.PNG" style="width: 640px;" alt="stream source"> - <p> - We must also choose the stream destination. For this excercise, choose RTP/MPEG Transport Stream and click Add. - You can configure multiple destinations simultaneously. - </p> - <p> - Configure destination settings. Enter address and stream name. - </p> - <img src="../images/stream_output.PNG" style="width: 640px;" alt="stream destination"> - <p> - Next, we can set transcoding, encapsulation, audio and video codecs and also subtitles. When you finish, click Save and Next. - </p> - <img src="../images/stream_transcoding.PNG" style="width: 640px;" alt="stream settings"> - <p> - In the last step, it is important to check option Stream all elementary streams. - In the text area, we can see the string that can be used to run the stream from a command line. - This is useful if you want to run stream from a computer without graphic interface. - </p> - <img src="../images/stream_finish.PNG" style="width: 640px;"> - </li> - - <li> - <h4>Open stream </h3> - <p> - We can now play the stream from another device using VLC. - </p> - <img src="../images/stream_open.PNG" style="width: 640px;" alt="play stream"> - </li> -</ol> - -</body> - -</html>
\ No newline at end of file diff --git a/kpov_judge/tasks/vlc_stream_rtp/howtos/images/1.png b/kpov_judge/tasks/vlc_stream_rtp/howtos/images/1.png Binary files differdeleted file mode 100644 index 903be70..0000000 --- a/kpov_judge/tasks/vlc_stream_rtp/howtos/images/1.png +++ /dev/null diff --git a/kpov_judge/tasks/vlc_stream_rtp/howtos/images/playlist.PNG b/kpov_judge/tasks/vlc_stream_rtp/howtos/images/playlist.PNG Binary files differdeleted file mode 100644 index b815098..0000000 --- a/kpov_judge/tasks/vlc_stream_rtp/howtos/images/playlist.PNG +++ /dev/null diff --git a/kpov_judge/tasks/vlc_stream_rtp/howtos/images/stream_finish.PNG b/kpov_judge/tasks/vlc_stream_rtp/howtos/images/stream_finish.PNG Binary files differdeleted file mode 100644 index f429a9b..0000000 --- a/kpov_judge/tasks/vlc_stream_rtp/howtos/images/stream_finish.PNG +++ /dev/null diff --git a/kpov_judge/tasks/vlc_stream_rtp/howtos/images/stream_menu.png b/kpov_judge/tasks/vlc_stream_rtp/howtos/images/stream_menu.png Binary files differdeleted file mode 100644 index 01f52c6..0000000 --- a/kpov_judge/tasks/vlc_stream_rtp/howtos/images/stream_menu.png +++ /dev/null diff --git a/kpov_judge/tasks/vlc_stream_rtp/howtos/images/stream_open.PNG b/kpov_judge/tasks/vlc_stream_rtp/howtos/images/stream_open.PNG Binary files differdeleted file mode 100644 index 772ffe8..0000000 --- a/kpov_judge/tasks/vlc_stream_rtp/howtos/images/stream_open.PNG +++ /dev/null diff --git a/kpov_judge/tasks/vlc_stream_rtp/howtos/images/stream_output.PNG b/kpov_judge/tasks/vlc_stream_rtp/howtos/images/stream_output.PNG Binary files differdeleted file mode 100644 index c3dc2a7..0000000 --- a/kpov_judge/tasks/vlc_stream_rtp/howtos/images/stream_output.PNG +++ /dev/null diff --git a/kpov_judge/tasks/vlc_stream_rtp/howtos/images/stream_transcoding.PNG b/kpov_judge/tasks/vlc_stream_rtp/howtos/images/stream_transcoding.PNG Binary files differdeleted file mode 100644 index 1fbc9f3..0000000 --- a/kpov_judge/tasks/vlc_stream_rtp/howtos/images/stream_transcoding.PNG +++ /dev/null diff --git a/kpov_judge/tasks/vlc_stream_rtp/howtos/si/index.html b/kpov_judge/tasks/vlc_stream_rtp/howtos/si/index.html deleted file mode 100644 index c94044b..0000000 --- a/kpov_judge/tasks/vlc_stream_rtp/howtos/si/index.html +++ /dev/null @@ -1,93 +0,0 @@ -<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=utf-8">
-</head>
-
-
-<body><font face="Georgia, Times New Roman, Times, serif">
-
-<h2> Naloga na hitro </h1>
-
-<ol>
- <li>Postavi navidezni računalnik</li>
- <li>Naloži VLC</li>
- <li>Ustvari RTP video tok</li>
- <li>Poskrbi, da bo tok dostopen na internetu</li>
-</ol>
-
- <h2>Navodila</h1>
-
- <ol>
- <li>
- <h4>Postavi navidezni računalnik </h3>
- <p> Uporabi disk simpleArbiter. Dobiš ga lahko <a href="http://polz.si/media/uploads/kpov/virtualke/">tu</a>. </p>
- </li>
-
- <li>
- <h4>Naloži VLC </h3>
- <p>
- V <code>/etc/apt/sources.list</code> v spodnjih vrsticah zamenjaj <code>wheezy</code> z
- <code>testing</code> oziroma dodaj vrstice če niso napisane:
- </p>
- <p>
- <code>
- deb http://ftp.at.debian.org/debian wheezy main contrib non-free <br>
- deb-src http://ftp.at.debian.org/debian wheezy main contrib non-free
- </code>
- </p>
- <img alt="slika-01" src="../images/1.png" style="width: 640px;" />
- <p>
- Poglej za posodobitve in nato naloži VLC z naslednjimi ukazi:
- </p>
- <p>
- <code>
- apt-get update <br>
- apt-get install vlc
- </code>
- </p>
- </li>
-
- <li>
- <h4>Ustvari nov tok </h3>
-
- <p>
- Odpri VLC. V meniju Media izberi Stream.
- </p>
- <img src="../images/stream_menu.png" style="width: 640px;" alt="Meni">
- <p>
- V oknu "Open Media" izberemo vir toka. Ta je lahko datoteka, že obstoječ omrežni tok ali pa snemalne naprave. <br>
- Za namen te naloge lahko z klikom na gumb <i>Add ...</i> dodamo eno ali več video datotek. Nadaljujemo z klikom na Stream.
- </p>
- <img src="../images/playlist.PNG" style="width: 640px;" alt="Vir toka">
- <p>
- Določiti moramo tudi destinacijo toka. Za to nalogo izberemo RTP/MPEG Transport Stream in kliknemo Add.
- Možno je nastaviti več destinacij hkrati.
- </p>
- <p>
- Nato izpolnimo nastavitve destinacije z naslovom in imenom toka.
- </p>
- <img src="../images/stream_output.PNG" style="width: 640px;" alt="Destinacija toka">
- <p>
- V naslednjem koraku lahko nastavimo kodiranje, enkapsulacijo, avdio in video nastavitve ter podnapise.
- </p>
- <img src="../images/stream_transcoding.PNG" style="width: 640px;" alt="Nastavitve Toka">
- <p>
- V zadnjem koraku je pomembno obkljukati možnost Stream all elementary streams.
- V spodnjem tekstovnem polju dobimo niz, ki ga lahko uporabimo za zagon toka iz ukazne vrstice.
- </p>
- <img src="../images/stream_finish.PNG" style="width: 640px;">
- </li>
-
- <li>
- <h4>Odpri tok </h3>
- <p>
- Na drugem računalniku lahko ustvarjen video tok predvajamo z VLC.
- </p>
- <img src="../images/stream_open.PNG" style="width: 640px;" alt="Predvajanje toka">
- </li>
-</ol>
-
-</body>
-
-</html>
\ No newline at end of file diff --git a/kpov_judge/tasks/vlc_stream_rtp/task.py b/kpov_judge/tasks/vlc_stream_rtp/task.py deleted file mode 100644 index 427fc0e..0000000 --- a/kpov_judge/tasks/vlc_stream_rtp/task.py +++ /dev/null @@ -1,110 +0,0 @@ -# kpov_util should be imported by add_assignment.py - -# Postavi nek film na Internet tako, da ga bodo lahko ostali videli. -# TODO: finish this - -instructions = { - 'si': '''\ -<p> -Postavi navidezni računalnik <em>SimpleArbiter</em> in <em>StudentVLC</em>. Poskrbi, da bosta na istem omrežju, od koder bosta imela dostop tudi do interneta. - -<p> -Na <em>StudentVLC</em> posodobi datoteko <code>/etc/apt/sources.list</code>, preveri posodobitve in naloži VLC. - -<p> -Posnemi ali kako drugače ustvari film ter poskrbi, da bo film dostopen na lokalnem omrežju prek RTP z imenom toka <code>{{TOK}}</code> na naslovu <code>{{NASLOV}}</code>, vrata <code>{{PORT}}</code>. Računaj, da bodo film lahko videli tvoji sošolci. Kršenje avtorskih pravic je pri reševanju te naloge strogo prepovedano. -''', - 'en': '''\ -<p> -Set up a virtual computer called <em>SimpleArbiter</em> using the simpleArbiter disk and -a virtual computer called <em>StudentVLC</em> using the student-VLC disk. Make sure they -are on the same network and that they have access to the Internet. - -<p> -On StundentVLC, update /etc/apt/sources.list, check the for updates and install VLC. - -<p> -Record or otherwise create a movie and make sure the movie is avaliable on your local network via RTP with the name of the stream <code>{{TOK}}</code> at the address <code>{{NASLOV}}</code> on port <code>{{PORT}}</code>. Take into account that the movie may be seen by your classmates. Copyright infrigement while solving this task is strictly prohibited. -''', -} - -computers = { - 'SimpleArbiter': { - 'disks': [ - { 'name': 'simpleArbiter', - }, - ], - 'network_interfaces': [{'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - }, - 'StudentVLC': { - 'disks': [ - { 'name': 'student-VLC', - }, - ], - 'network_interfaces': [{'network': 'test-net'}], - 'flavor': 'm1.tiny', - 'config_drive': False - } - -} - -networks = { 'test-net': {'public': True} } - -params_meta = { - 'NASLOV': {'descriptions': {'si': 'RTP multicast IP naslov'}, 'w': False, 'public':True, 'type': 'stream_name', 'generated': True}, - 'PORT': {'descriptions': {'si': 'RTP VRATA'}, 'w': False, 'public':True, 'type': 'port', 'generated': True}, - 'TOK': {'descriptions': {'si': 'Naslov (ime) toka'}, 'w': False, 'public':True, 'type': 'IP', 'generated': True}, -} - -def task(NASLOV, TOK): - import pexpect - results = dict() - results['ps'] = pexpect.run('ps xa') - results['tcpdump_hex'] = pexpect.run('sudo /usr/sbin/tcpdump -x -c 2 dst host 239.255.255.255 and port 9875'.format(NASLOV)) - results['tcpdump'] = pexpect.run('sudo /usr/sbin/tcpdump -c 8 dst host {}'.format(NASLOV)) - return results - -def gen_params(user_id, params_meta): - params = dict() - r = random.Random(user_id) - net = kpov_util.IPv4_net_gen(r, min_hosts = 16, - local=True, multicast=True) - params['NASLOV'] = kpov_util.IPv4_addr_gen(r, net, 1)[0] - params['PORT'] = str(r.randint(5000, 6000)) - params['TOK'] = kpov_util.hostname_gen(r) - return params - -def task_check(results, params): - import re - score = 0 - hints = [] - p1_s = "" - sname = "" - try: - packs = results['tcpdump_hex'].split('> 239.255.255.255.9875: UDP, length') - p1 = packs[1] - p1_l = p1.split('\n') - p1_d = p1_l[1:-1] - p1_s = "" - for i in p1_d: - p1_s = p1_s + "".join([j.strip() for j in i.split(' ')[1:]]) - sname = "".join([hex(ord(i))[2:] for i in params['TOK']]) - except: - hints.append("problem parsing RTP stream capture result") - if p1_s.find(sname) > 2: - score += 5 - else: - hints.append("stream name not found in stream announcement") - s = "IP [^ ]* > {}.{}: UDP, length [0-9]+".format( - re.escape(params['NASLOV']), - params['PORT']) - if re.search(s, results['tcpdump']): - score += 5 - else: - hints.append("RTP stream not detected in " + results['tcpdump']) - return score, hints - -def prepare_disks(templates, task_params, global_params): - write_default_config(templates['simpleArbiter'], global_params) diff --git a/kpov_judge/test_prepare_disks.py b/kpov_judge/test_prepare_disks.py deleted file mode 100755 index bdb3f89..0000000 --- a/kpov_judge/test_prepare_disks.py +++ /dev/null @@ -1,196 +0,0 @@ -#!/usr/bin/env python3 - -import fcntl -import glob -import inspect -import os -import sys -import urllib.request - -import guestfs -import paramiko -import yaml - -import kpov_util -from test_task import http_auth -from util import write_default_config - -class SSHGuestFs: - def __init__(self, hostname, username, password): - return_results = {} - client = paramiko.SSHClient() - client.load_system_host_keys() - client.set_missing_host_key_policy(paramiko.AutoAddPolicy()) - client.connect(hostname, username=username, password=password) - self.conn = client - def __del__(self): - try: - self.conn.close() - except: - pass - def chmod(self, mode, path): - self.conn.exec_command('chmod {} "{}"'.format(oct(mode), path)) - def chown(self, owner, group, path): - self.conn.exec_command('chown {}.{} "{}"'.format(str(owner), str(group), path)) - def command(self, arguments): - self.conn.exec_command(arguments) - def cp(self, src, dest): - self.conn.exec_command('cp "{}" "{}"'.format(src, dest)) - def cp_a(self, src, dest): - self.conn.exec_command('cp -a "{}" "{}"'.format(src, dest)) - def cp_r(self, src, dest): - self.conn.exec_command('cp -r "{}" "{}"'.format(src, dest)) - def dd(self, src, dest): - self.conn.exec_command('dd if="{}" of="{}"'.format(src, dest)) - def df(self): - stdin, stdout, stderr = self.conn.exec_command('df') - return stdin.read() - def download(self, remotefilename, filename): - stdin, stdout, stderr = self.conn.exec_command('dd if="{}"'.format(path)) - with open(filename, 'w') as f: - data = stdin.read(4096) - while data: - f.write(data) - data = stdin.read(4096) - def download_offset (self, remotefilename, filename, offset, size): - stdin, stdout, stderr = self.conn.exec_command('dd bs=1 skip={} count={} if="{}"'.format( - offset, size ,path)) - with open(filename, 'w') as f: - data = stdin.read(4096) - while data: - f.write(data) - data = stdin.read(4096) - def du(self, path): - stdin, stdout, stderr = self.conn.exec_command('du "{}"'.format(path)) - return stdin.read() - def equal(self, file1, file2): - pass - def file(self, path): - stdin, stdout, stderr = self.conn.exec_command('file "{}"'.format(path)) - return stdin.read() - def ln(self, target, linkname): - self.conn.exec_command('ln "{}" "{}"'.format(target, linkname)) - def ln_s(self, target, linkname): - self.conn.exec_command('ln -s "{}" "{}"'.format(target, linkname)) - def ln_f(self, target, linkname): - self.conn.exec_command('ln -f "{}" "{}"'.format(target, linkname)) - def ln_sf(self, target, linkname): - self.conn.exec_command('ln -sf "{}" "{}"'.format(target, linkname)) - def getxattrs(self, path): - pass - #path = path) - #stdin, stdout, stderr = self.conn.exec_command('du "{}"'.format(path)) - #return stdin.read() - def mv (self, src, dest): - self.conn.exec_command('mv "{}" "{}"'.format(src, dest)) - def mkdir (self, path): - self.conn.exec_command('mkdir -p "{}"'.format(path)) - def read_file (self, path): - sftp_client = self.conn.open_sftp() - f = sftp_client.file(path, mode='r', bufsize=-1) - s = f.read() - f.close() - return s - def readdir (self, dir): - sftp_client = self.conn.open_sftp() - return sftp_client.listdir(path) - def readlink (self, path): - stdin, stdout, stderr = self.conn.exec_command('readlink "{}"'.format(path)) - return stdin.read() - def rename (self, oldpath, newpath): - return self.mv(oldpath, newpath) - def rm (self, path): - stdin, stdout, stderr = self.conn.exec_command('rm "{}"'.format(path)) - def rm_rf (self, path): - stdin, stdout, stderr = self.conn.exec_command('rm -rf "{}"'.format(path)) - def rmdir (self, path): - stdin, stdout, stderr = self.conn.exec_command('rmdir "{}"'.format(path)) - def touch (self, path): - """Touch acts like the touch(1) command. It can be used to - update the timestamps on a file, or, if the file does - not exist, to create a new zero-length file. - - This command only works on regular files, and will fail - on other file types such as directories, symbolic links, - block special etc. - """ - self.conn.exec_command('touch "{}"'.format(path)) - def setxattr (self, xattr, val, vallen, path): - pass - def write (self, path, content): - """This call creates a file called "path". The content of - the file is the string "content" (which can contain any - 8 bit data). - - See also "g.write_append". - """ - sftp_client = self.conn.open_sftp() - f = sftp_client.file(path, mode='w', bufsize=-1) - f.write(content) - f.close() - - def write_append (self, path, content): - """This call appends "content" to the end of file "path". - If "path" does not exist, then a new file is created. - - See also "g.write". - """ - sftp_client = self.conn.open_sftp() - f = sftp_client.file(path, mode='a', bufsize=-1) - f.write(content) - f.close() - - -if __name__ == '__main__': - if len(sys.argv) != 1: - print("Usage: " + sys.argv[0]) - print("Run prepare_disks on running computers over ssh") - print("The task name and params are read from ~/.kpov_params.yaml") - - yaml_config_file = os.path.expanduser("~/.kpov_params.yaml") - with open(yaml_config_file) as f: - params = yaml.load(f) - task_name = params['task_name'] - try: - task_url = params['task_url'] - task_name = params['task_name'] - if task_url.startswith('http'): - http_auth(task_url, params['username'], params['password']) - req = urllib.request.Request("{task_url}/{task_name}/task.py".format(**params)) - source = urllib.request.urlopen(req).read() - if not source: - raise Exception('no such task: {}'.format(task_name)) - d = {} - exec(compile(source, 'task.py', 'exec'), globals(), d) - computers, prepare_disks = d['computers'], d['prepare_disks'] - except Exception as e: - print(e) - exit(1) - - templates = dict() - sshguestfs_params = params.get('sshguestfs_params', dict()) - task_sshguestfs_params = sshguestfs_params.get(task_name, dict()) - for computer_name, computer in computers.items(): - comp_params = task_sshguestfs_params.get(computer_name, dict()) - for k in ['hostname', 'username', 'password']: - try: - p = comp_params[k] - except: - p = input("{} {}:".format(computer_name, k)) - comp_params[k] = p - comp_connection = None - try: - comp_connection = SSHGuestFs(**comp_params) - task_sshguestfs_params[computer_name] = comp_params - except Exception as e: - print(e) - task_sshguestfs_params.pop(computer_name, None) - for disk in computer['disks']: - disk_name = disk['name'] - templates[disk_name] = comp_connection - sshguestfs_params[task_name] = task_sshguestfs_params - params['sshguestfs_params'] = sshguestfs_params - with open(yaml_config_file, 'w') as f: - # print "dumping", params - yaml.dump(params, f) - prepare_disks(templates, params['task_params'][task_name], params) diff --git a/kpov_judge/test_task.py b/kpov_judge/test_task.py deleted file mode 100755 index 43aaf38..0000000 --- a/kpov_judge/test_task.py +++ /dev/null @@ -1,246 +0,0 @@ -#!/usr/bin/env python3 - -import argparse -import collections -import getpass -import inspect -import io -import json -import locale -import os -import random -import readline -import sys -import urllib.request - -import yaml -import kpov_util - -locale.setlocale(locale.LC_ALL, ['C', 'utf8']) -readline.set_completer_delims(readline.get_completer_delims().replace('/', '')) -readline.parse_and_bind('tab: complete') - -TASK_URL = "file://" + os.getcwd() + '/tasks' -PARAMS_FILE = os.path.expanduser("~/.kpov_params.yaml") -DEFAULT_LANGUAGE = 'si' - -def print_header(title, spacing=1): - print('\n'*spacing + '> {}'.format(title)) - -# get the parameters for a task either from the user or from a file -def get_params(params, params_meta, language=None): - # prefill input() prompt with given text - def rlinput(prompt, prefill=''): - readline.set_startup_hook(lambda: readline.insert_text(prefill)) - try: - return input(prompt) - finally: - readline.set_startup_hook() - - if language is None: - language = params.get('language', DEFAULT_LANGUAGE) - - # print all non-writable parameters first, then prompt for writable ones - for name, meta in sorted(params_meta.items(), key=lambda n: n[1].get('w', True)): - description = meta.get('descriptions', {}).get(language, name) - if name not in params: - params[name] = None - if meta.get('w', True): - try: - if meta.get('masked', False): - s = getpass.getpass('{}: '.format(description)) - else: - s = rlinput('{}: '.format(description), params.get(name, '')) - if s: - params[name] = s - except EOFError: - print() - else: - print('{}: {}'.format(name, params.get(name, ''))) - return params - -def add_meta_to_argparser(argparser, meta, defaults={}): - language = defaults.get('language', DEFAULT_LANGUAGE) - for k, v in meta.items(): - try: - desc = v['descriptions'][language].encode("utf-8") - except: - desc = k - argparser.add_argument('--'+k, nargs='?', type=str, help=desc, - default=defaults.get(k, None)) - -def load_params(filename): - try: - return yaml.load(open(filename)) - except: - return {} - -def locate_task(params, argparser, quiet=False): - # first the URL where all tasks are stored - url_meta = { - 'task_url': {'descriptions': {'si': 'URL z nalogami', 'en': 'Root URL for all tasks'}} - } - if 'task_url' not in params: - params['task_url'] = TASK_URL - add_meta_to_argparser(argparser, meta=url_meta, defaults=params) - args, unknown_args = argparser.parse_known_args() - params['task_url'] = args.task_url - if not quiet: - print_header('Task', spacing=0) - params = get_params(params, url_meta) - - # and finally, the name of the task - fetch_params_meta = collections.OrderedDict({'task_name': {'descriptions': {'si': 'Ime naloge', 'en': 'Task name'}}}) - add_meta_to_argparser(argparser, meta=fetch_params_meta, defaults=params) - args, unknown_args = argparser.parse_known_args() - # update params with the now known args - for k, v in fetch_params_meta.items(): - params[k] = vars(args).get(k, params.get(k, None)) - if not quiet: - params = get_params(params, fetch_params_meta) - return params - -def http_auth(url, username, password): - password_mgr = urllib.request.HTTPPasswordMgrWithDefaultRealm() - password_mgr.add_password(None, url, username, password) - handler = urllib.request.HTTPBasicAuthHandler(password_mgr) - opener = urllib.request.build_opener(handler) - urllib.request.install_opener(opener) # now all calls to urlopen use our opener - -def load_task(stream): - # the stream should definitions for the functions task(…), - # task_check and gen_params, and a dictionary params_meta - d = {} - exec(compile(source, 'task.py', 'exec'), globals(), d) - return d['task'], d['task_check'], d['params_meta'], d['gen_params'] - - -if __name__ == '__main__': - # get the parameters needed to get to the task, such as the URLs, the name of the task and optionally an ID from the student - # start with the the parameters needed for the dialog gui to work - argparser = argparse.ArgumentParser(conflict_handler='resolve', - description='Test a KPOV Judge task.') - argparser.add_argument('-h', '--help', action='store_true') - argparser.add_argument('-q', '--quiet', action='store_true', - help='disable prompts') - argparser.add_argument('-g', '--generate_params', action='store_true', - help='generate initial values for the task parameters') - argparser.add_argument('-pf', '--params_file', nargs='?', default=PARAMS_FILE, - help='a local file with saved param values') - basic_args, unknown_args = argparser.parse_known_args() - - # get default parameters including language - params = load_params(basic_args.params_file) - argparser.add_argument('-l', '--language', nargs='?', - default=params.get('language', DEFAULT_LANGUAGE), - help='the language used') - basic_args, unknown_args = argparser.parse_known_args() - params['language'] = basic_args.language - - if basic_args.help: - argparser.print_help() - exit(0) - - # continue with the parameters needed to get the task - params = locate_task(params, argparser, quiet=basic_args.quiet) - # TODO: if the task name is missing or invalid, try to get a list of tasks - # get task source and generate params if neccessarry - try: - task_url = params['task_url'] - task_name = params['task_name'] - - source = urllib.request.urlopen("{task_url}/{task_name}/task.py".format(**params)).read() - if not source: - raise Exception('no such task: {}'.format(task_name)) - task, task_check, task_params_meta, gen_params = load_task(source) - except Exception as e: - print(e) - with open(basic_args.params_file, 'w') as f: - yaml.dump(params, f) - exit(1) - - # get stored task parameters - params['task_params'] = params.get('task_params', {}) - task_params = params['task_params'].setdefault(task_name, {}) - tokens = params.setdefault('tokens', {}) - - # ensure we have a submission token - if task_url.startswith('http'): - n_tries = 3 - while n_tries > 0: - try: - if tokens.get(task_name): - response = urllib.request.urlopen( - '{task_url}/{task_name}/params.json'.format(**params), - data=urllib.parse.urlencode({'token': tokens.get(task_name)}).encode()) - response = json.load(io.TextIOWrapper(response)) - if response: - # got params - task_params.update(response) - break - else: - # did not get a token, try again with password - del tokens[task_name] - n_tries -= 1 - - if not tokens.get(task_name): - # get the student's ID and password - # TODO clunky, should refactor all argument-getting stuff - user_meta = collections.OrderedDict(( - ('username', {'descriptions': {'si': 'Uporabniško ime', 'en': 'Username'}}), - ('password', {'descriptions': {'si': 'Geslo', 'en': 'Password'}, 'masked': True}), - )) - print_header('KPOV login') - user_params = get_params(params, user_meta, params['language']) - - http_auth(task_url, user_params['username'], user_params['password']) - response = urllib.request.urlopen('{task_url}/{task_name}/token.json'.format(**params)) - response = json.load(io.TextIOWrapper(response)) - if response: - tokens[task_name] = response['token'] - params['username'] = user_params['username'] - except Exception as ex: - print(ex) - - if basic_args.generate_params: - #prejema lahko samo stringe in ne številk (potrebno je str(int) - # print ("params before: {} {}".format(params, task_params)) - task_params.update(gen_params(params['username'], task_params_meta)) - # print ("params after: {} {}".format(params, task_params)) - - task_argparser = argparse.ArgumentParser(parents=[argparser], conflict_handler='resolve', add_help=True) - add_meta_to_argparser(task_argparser, task_params_meta, defaults=task_params) - args = vars(task_argparser.parse_args()) - for k in task_params_meta: - if args.get(k): - task_params[k] = args[k] - if not basic_args.quiet: - print_header('Task parameters') - task_params = get_params(task_params, task_params_meta, language=params['language']) - - public_params = {} - for k in inspect.getargs(task.__code__)[0]: - public_params[k] = task_params[k] - params['task_params'][params['task_name']] = task_params - - # save parameters for the next run - with open(basic_args.params_file, 'w') as f: - yaml.dump(params, f) - - try: - print_header('Results', spacing=0 if basic_args.quiet else 1) - print('Running task... ', end='', flush=True) - task_result = task(**public_params) - print('checking task... ', end='', flush=True) - task_params['token'] = tokens[task_name] # hack to avoid changing task_check signature - score, hints = task_check(task_result, task_params) - del task_params['token'] - print('done!') - print('Score: {}'.format(score)) - - print_header('Hints') - for hint in hints: - print(hint.strip()) - except Exception as e: - import traceback - traceback.print_exc() diff --git a/kpov_judge/util.py b/kpov_judge/util.py deleted file mode 100644 index 6d9e085..0000000 --- a/kpov_judge/util.py +++ /dev/null @@ -1,24 +0,0 @@ -import os -import yaml - -def write_default_config(disk, global_params): - home = '/home/test' - params_file = os.path.join(home, '.kpov_params.yaml') - default_params = {} - for k in [ - 'task_name', - 'username', - 'task_url']: - if k in global_params: - default_params[k] = global_params[k] - disk.write(params_file, yaml.dump(default_params)) - disk.chown(1001, 1001, params_file) - - mydir = os.path.dirname(os.path.abspath(__file__)) - # write testing script and helper - for f in ['test_task.py', 'kpov_util.py']: - src = os.path.join(mydir, f) - dst = os.path.join('/home/test', f) - disk.write(dst, open(src).read()) - disk.chmod(0o755, dst) - disk.copy_in(os.path.join(mydir, 'random_data'), '/home/test') diff --git a/kpov_judge/web/kpov.wsgi b/kpov_judge/web/kpov.wsgi deleted file mode 100644 index b55e6ac..0000000 --- a/kpov_judge/web/kpov.wsgi +++ /dev/null @@ -1 +0,0 @@ -from kpov_judge import app as kpovjudge diff --git a/kpov_judge/web/kpov_judge/babel.cfg b/kpov_judge/web/kpov_judge/babel.cfg deleted file mode 100644 index f0234b3..0000000 --- a/kpov_judge/web/kpov_judge/babel.cfg +++ /dev/null @@ -1,3 +0,0 @@ -[python: **.py] -[jinja2: **/templates/**.html] -extensions=jinja2.ext.autoescape,jinja2.ext.with_ diff --git a/kpov_judge/web/kpov_judge/icons/computer.svg b/kpov_judge/web/kpov_judge/icons/computer.svg deleted file mode 100644 index 6da674d..0000000 --- a/kpov_judge/web/kpov_judge/icons/computer.svg +++ /dev/null @@ -1,1877 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="120" - height="140" - id="svg4718" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="computer.svg"> - <defs - id="defs4720"> - <filter - inkscape:collect="always" - id="filter5659" - x="-0.045228258" - width="1.0904565" - y="-0.37485376" - height="1.7497075" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.7961743" - id="feGaussianBlur5661" /> - </filter> - <filter - inkscape:collect="always" - id="filter5677" - x="-0.1638047" - width="1.3276094" - y="-1.3576204" - height="3.7152407" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="6.5052645" - id="feGaussianBlur5679" /> - </filter> - <linearGradient - id="linearGradient5513"> - <stop - style="stop-color:#d3d7cf;stop-opacity:1" - offset="0" - id="stop5515" /> - <stop - id="stop5517" - offset="0.11058617" - style="stop-color:#979894;stop-opacity:1" /> - <stop - id="stop5519" - offset="0.21474838" - style="stop-color:#d3d7cf;stop-opacity:1" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0.35913071" - id="stop5521" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop5523" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5567"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5569" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5571" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4465" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.37" - id="feGaussianBlur4467" /> - </filter> - <linearGradient - id="linearGradient5615"> - <stop - id="stop5617" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.31506849" - offset="0.59850603" - id="stop5619" /> - <stop - id="stop5621" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5316"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop5318" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop5320" /> - </linearGradient> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath5584"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="czsccccccszcc" - id="path5586" - d="m 119.00002,314 1,20.55814 c 0.65135,13.3905 -8,16.93023 -18,21.76744 -1.02876,0.49763 -2,1.0787 -2,2.41861 l 0,3.62791 c 0,3.6279 8,3.6279 15,3.6279 l 66,0 c 7,0 15,0 15,-3.6279 l 0,-3.62791 c 0,-1.33991 -0.97125,-1.92098 -2,-2.41861 -10,-4.83721 -18.65135,-8.37694 -18,-21.76744 l 1,-20.55814 -58,0 z" - style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - </clipPath> - <filter - inkscape:collect="always" - id="filter5592" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.745" - id="feGaussianBlur5594" /> - </filter> - <linearGradient - id="linearGradient10629-2"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop10631-8" /> - <stop - style="stop-color:#959595;stop-opacity:1" - offset="1" - id="stop10633-2" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3288"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3290" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3292" /> - </linearGradient> - <linearGradient - id="linearGradient12756-7"> - <stop - style="stop-color:#5789ca;stop-opacity:1" - offset="0" - id="stop12758-4" /> - <stop - style="stop-color:#023c88;stop-opacity:1" - offset="1" - id="stop12760-6" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5687"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5689" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5691" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4788"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4790" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4792" /> - </linearGradient> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath5221"> - <rect - style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - id="rect5223" - width="208.00005" - height="124" - x="44" - y="362" /> - </clipPath> - <filter - inkscape:collect="always" - id="filter5252" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.6762502" - id="feGaussianBlur5254" /> - </filter> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath5266"> - <rect - style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - id="rect5268" - width="223.99995" - height="148" - x="36.000046" - y="-270" - rx="2.125" - ry="2.125" /> - </clipPath> - <filter - inkscape:collect="always" - id="filter5681" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.92999989" - id="feGaussianBlur5683" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient5351"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5353" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5355" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5361"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5363" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5365" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5371"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5373" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5375" /> - </linearGradient> - <linearGradient - id="linearGradient5496"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop5498" /> - <stop - id="stop5505" - offset="0.0312636" - style="stop-color:#ffffff;stop-opacity:1" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1" - offset="0.19532859" - id="stop5507" /> - <stop - id="stop5509" - offset="0.82031411" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0.95833272" - id="stop5511" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="1" - id="stop5500" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5544"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5546" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5549" /> - </linearGradient> - <linearGradient - id="linearGradient4070"> - <stop - id="stop4072" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.52789462" - id="stop4074" /> - <stop - id="stop4076" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5701"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5703" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5705" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter5713" - x="-0.86400002" - width="2.7279999" - y="-0.006041958" - height="1.0120839" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.36" - id="feGaussianBlur5715" /> - </filter> - <linearGradient - id="linearGradient5555"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5557" /> - <stop - id="stop5563" - offset="0.59523809" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5559" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4090"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4092" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4094" /> - </linearGradient> - <linearGradient - id="linearGradient4134"> - <stop - id="stop4136" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="0.56766391" - id="stop3378" /> - <stop - id="stop4138" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4249"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4251" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4253" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4453"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop4455" /> - <stop - style="stop-color:#888a85;stop-opacity:0;" - offset="1" - id="stop4457" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4383"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4385" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4387" /> - </linearGradient> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4367"> - <path - inkscape:connector-curvature="0" - style="display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new" - d="m 240,211 c -1.66165,0 -3,1.33835 -3,3 l 0,4 10,0 0,-4 c 0,-1.66165 -1.33835,-3 -3,-3 l -4,0 z" - id="path4369" /> - </clipPath> - <filter - inkscape:collect="always" - id="filter4461" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.2548" - id="feGaussianBlur4463" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient4325"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4327" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4329" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4363" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.49890366" - id="feGaussianBlur4365" /> - </filter> - <filter - inkscape:collect="always" - id="filter4353" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.481711" - id="feGaussianBlur4355" /> - </filter> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4287"> - <path - inkscape:connector-curvature="0" - style="display:inline;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - d="m 164.5,171.375 c -1.80944,16.18787 3.57797,26.96266 12.53125,33.84375 8.95328,6.88109 21.33929,9.97794 33.65625,11.5 12.31696,1.52206 24.61016,1.44261 33.34375,1.8125 4.36679,0.18494 7.85588,0.49346 9.875,1.09375 1.00956,0.30014 1.60095,0.69442 1.78125,0.9375 0.1803,0.24308 0.21449,0.38792 -0.0937,1 -0.5676,1.12711 -1.88943,1.92802 -4.03125,2.4375 -2.14182,0.50948 -4.98306,0.67251 -8.125,0.65625 -6.28389,-0.0325 -13.813,-0.76309 -20.09375,-0.59375 -3.14038,0.0847 -5.97092,0.38298 -8.25,1.1875 -2.27908,0.80452 -4.09475,2.22183 -4.6875,4.40625 -0.59275,2.18442 0.001,4.85419 1.8125,8.25 1.81134,3.39581 4.88283,7.55678 9.53125,12.75 l 1.5,-1.3125 c -4.58534,-5.12274 -7.56231,-9.211 -9.25,-12.375 -1.68769,-3.164 -2.04477,-5.34946 -1.65625,-6.78125 0.38852,-1.43179 1.47822,-2.3819 3.40625,-3.0625 1.92803,-0.6806 4.61811,-0.98059 7.65625,-1.0625 6.07628,-0.16382 13.59915,0.56045 20.03125,0.59375 3.21605,0.0166 6.13826,-0.14209 8.5625,-0.71875 2.42424,-0.57666 4.45416,-1.60938 5.40625,-3.5 0.51688,-1.0264 0.50003,-2.21986 -0.125,-3.0625 -0.62503,-0.84264 -1.60421,-1.29702 -2.8125,-1.65625 -2.41658,-0.71845 -5.96364,-1.00067 -10.375,-1.1875 -8.82271,-0.37366 -21.00798,-0.31129 -33.15625,-1.8125 -12.14827,-1.50121 -24.21446,-4.58175 -32.6875,-11.09375 -8.47304,-6.512 -13.50101,-16.33486 -11.75,-32 l -2,-0.25 z" - id="path4289" /> - </clipPath> - <filter - inkscape:collect="always" - id="filter4293" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.42725912" - id="feGaussianBlur4295" /> - </filter> - <filter - inkscape:collect="always" - id="filter3761" - x="-0.027514406" - width="1.0550288" - y="-0.20195091" - height="1.4039018" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.5929877" - id="feGaussianBlur3763" /> - </filter> - <filter - inkscape:collect="always" - id="filter3865" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.64248474" - id="feGaussianBlur3867" /> - </filter> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath3519"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccsccccsccsscsccccc" - id="path3521" - d="m 49.053018,377.91849 c -0.710706,0.0727 -1.339556,0.49196 -1.68004,1.12002 l -14.280335,26.38285 c -0.171895,0.32432 -0.254644,0.67287 -0.248894,1.02669 1.72e-4,0.0106 -3.28e-4,0.0205 0,0.0311 l 0,2.98673 0,0.31112 0.06222,0 c 0.04534,0.25962 0.109053,0.51286 0.248895,0.74669 0.388063,0.64889 1.079535,1.05365 1.835599,1.0578 l 220.862957,0 c 0.76537,0.002 1.4767,-0.39926 1.86671,-1.0578 0.13743,-0.23204 0.20572,-0.48851 0.2489,-0.74669 0.0487,-0.29136 0.0622,-0.87113 0.0622,-0.87113 l 0,-2.08449 c 0,-0.49198 -0.0355,-0.98746 -0.28001,-1.43115 L 242.9109,379.0074 c -0.38858,-0.68003 -1.11464,-1.09662 -1.89783,-1.08891 l -191.742269,0 c -0.07255,-0.004 -0.145236,-0.004 -0.217783,0 z" - style="display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new" /> - </clipPath> - <linearGradient - inkscape:collect="always" - id="linearGradient2748"> - <stop - style="stop-color:#eeeeec;stop-opacity:1" - offset="0" - id="stop2750" /> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="1" - id="stop2752" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter3523" - x="-0.006099917" - width="1.0121998" - y="-0.36629945" - height="1.7325989" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.57234376" - id="feGaussianBlur3525" /> - </filter> - <linearGradient - id="linearGradient2740"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop2742" /> - <stop - style="stop-color:#888a85;stop-opacity:0;" - offset="1" - id="stop2744" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3942"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop3944" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3946" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter3952" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.65357075" - id="feGaussianBlur3954" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient3715"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3717" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3719" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3861"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3863" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3865" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter3964" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.5890625" - id="feGaussianBlur3966" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient4386"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4388" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4390" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4506" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.43637892" - id="feGaussianBlur4508" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient4394"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4396" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4398" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4450" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.33940583" - id="feGaussianBlur4452" /> - </filter> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath3599"> - <path - inkscape:connector-curvature="0" - style="display:inline;fill:#888a85;fill-opacity:1;stroke:none;enable-background:new" - d="m 208.28125,157.9375 c -0.008,0.10327 -0.005,0.2131 0.0312,0.3125 l 1.09375,3.0625 c 0.10951,0.28392 0.3832,0.47053 0.6875,0.46875 l 2,0 c 0.23532,-0.002 0.45756,-0.12059 0.59375,-0.3125 0.1362,-0.19191 0.16975,-0.43353 0.0937,-0.65625 l -1.03125,-2.875 -3.46875,0 z m 7.96875,0 c -0.0101,0.11643 0.0164,0.23327 0.0625,0.34375 l 1.28125,3.0625 c 0.11937,0.27165 0.39086,0.44442 0.6875,0.4375 l 2,0 c 0.24322,0.002 0.45595,-0.11207 0.59375,-0.3125 0.1378,-0.20044 0.18268,-0.46111 0.0937,-0.6875 l -1.1875,-2.84375 -3.53125,0 z m 8.03125,0 c -0.0114,0.12934 0.005,0.25506 0.0625,0.375 l 1.53125,3.0625 c 0.12384,0.24906 0.3781,0.40646 0.65625,0.40625 l 2,0 c 0.24601,-0.004 0.46165,-0.13617 0.59375,-0.34375 0.13209,-0.20758 0.16299,-0.46291 0.0625,-0.6875 l -1.40625,-2.8125 -3.5,0 z" - id="path3601" /> - </clipPath> - <filter - inkscape:collect="always" - id="filter3643" - x="-0.05291193" - width="1.1058239" - y="-0.33744851" - height="1.674897" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.43059837" - id="feGaussianBlur3645" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient3647"> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3649" /> - <stop - style="stop-color:#729fcf;stop-opacity:0;" - offset="1" - id="stop3651" /> - </linearGradient> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath3655"> - <path - inkscape:connector-curvature="0" - style="display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new" - d="m 55.5625,287.96875 c -0.954459,-2e-5 -1.753046,0.47221 -2.125,1.40625 0,0 -0.59375,1.5 -0.59375,1.5 -0.155151,0.38964 -0.144272,0.90146 0.0625,1.3125 -0.5424,0.20441 -0.994862,0.57872 -1.25,1.1875 0,0 -0.625,1.46875 -0.625,1.46875 -0.01064,0.0102 -0.02106,0.0206 -0.03125,0.0312 -0.147112,0.351 -0.147348,0.80716 0,1.1875 -0.654855,0.16843 -1.194974,0.58271 -1.5,1.28125 0,0 -0.65625,1.5 -0.65625,1.5 -0.179615,0.41135 -0.163645,0.96978 0.09375,1.40625 -0.456605,0.2136 -0.850785,0.56008 -1.09375,1.09375 0,0 -0.6875,1.5 -0.6875,1.5 -0.166596,0.3659 -0.171331,0.84393 0,1.25 -0.62588,0.17262 -1.15115,0.55035 -1.46875,1.21875 0,0 -0.71875,1.5 -0.71875,1.5 -0.176959,0.37241 -0.209116,0.89133 -0.03125,1.3125 -0.590006,0.18007 -1.095835,0.56208 -1.40625,1.1875 0,0 -0.75,1.5 -0.75,1.5 -0.230425,0.46425 -0.217387,1.17845 0.15625,1.625 0.373637,0.44655 0.898009,0.5625 1.375,0.5625 0,0 9,0 9,0 0.953978,0 1.816699,-0.36523 2.25,-1.34375 0,0 0.108824,-0.25767 0.1875,-0.4375 -0.05805,0.4359 -0.07391,0.93458 0.21875,1.25 0.380339,0.40991 0.866761,0.53125 1.34375,0.53125 0,0 7,0 7,0 0.953978,0 1.836332,-0.39264 2.21875,-1.375 0,0 0.114925,-0.25416 0.1875,-0.4375 -0.06545,0.45383 -0.06104,0.9589 0.25,1.28125 0.379673,0.39347 0.866761,0.53125 1.34375,0.53125 0,0 8,0 8,0 0.953978,0 1.877328,-0.40568 2.21875,-1.4375 0,0 0.07819,-0.23457 0.125,-0.375 -0.05472,0.45853 -0.005,0.99507 0.3125,1.3125 0.378095,0.37806 0.866761,0.5 1.34375,0.5 0,0 49,0 49,0 0.47699,0 0.93217,-0.13944 1.3125,-0.40625 0.38033,-0.26681 0.70843,-0.71185 0.75,-1.28125 0.0146,0.52272 0.27443,1.01257 0.625,1.28125 0.3817,0.29252 0.83551,0.40625 1.3125,0.40625 0,0 8,0 8,0 0.47699,0 0.93469,-0.12271 1.3125,-0.40625 0.37781,-0.28354 0.67936,-0.78654 0.6875,-1.34375 -0.003,0.56895 0.30769,1.06032 0.6875,1.34375 0.37981,0.28343 0.83551,0.40625 1.3125,0.40625 0,0 7,0 7,0 0.47699,0 0.93334,-0.11356 1.3125,-0.40625 0.35741,-0.2759 0.64298,-0.75536 0.65625,-1.28125 0.0269,0.56108 0.34012,1.00636 0.71875,1.28125 0.37863,0.27489 0.83551,0.40625 1.3125,0.40625 0,0 7,0 7,0 0.47699,0 0.93189,-0.13504 1.3125,-0.4375 0.33417,-0.26556 0.5727,-0.72805 0.59375,-1.21875 0.0587,0.57406 0.39957,1.02196 0.78125,1.28125 0.38168,0.25929 0.83551,0.375 1.3125,0.375 0,0 7,0 7,0 0.47699,0 0.93486,-0.14417 1.3125,-0.46875 0.37764,-0.32458 0.64177,-0.89451 0.5625,-1.4375 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0846,-0.57915 -0.39998,-0.99087 -0.8125,-1.25 0.26304,-0.33524 0.43753,-0.80255 0.375,-1.25 0,0 -0.1875,-1.46875 -0.1875,-1.46875 -0.0771,-0.55194 -0.38883,-0.96029 -0.75,-1.21875 0.28697,-0.32745 0.46979,-0.80673 0.40625,-1.28125 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0863,-0.64445 -0.46892,-1.08991 -0.96875,-1.34375 0.21754,-0.31446 0.3334,-0.71895 0.28125,-1.125 0,0 -0.1875,-1.5 -0.1875,-1.5 -0.0628,-0.48882 -0.28162,-0.88199 -0.59375,-1.15625 0.3204,-0.33632 0.49776,-0.85491 0.4375,-1.34375 0,0 -0.15625,-1.46875 -0.15625,-1.46875 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 -0.0652,-0.52853 -0.32297,-0.94463 -0.6875,-1.21875 0.29245,-0.33453 0.46156,-0.80893 0.40625,-1.28125 0,0 -0.1875,-1.5 -0.1875,-1.5 -0.12129,-1.03687 -1.01431,-1.65625 -1.96875,-1.65625 0,0 -4.46875,0 -4.46875,0 -0.83019,-2e-5 -1.54501,0.68576 -1.6875,1.53125 -0.17843,-0.9173 -0.95265,-1.53125 -1.84375,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.84102,-2e-5 -1.56875,0.66895 -1.71875,1.53125 -0.16424,-0.90063 -0.93185,-1.53125 -1.8125,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.82937,-2e-5 -1.55984,0.62799 -1.75,1.46875 -0.1816,-0.84615 -0.93291,-1.46875 -1.78125,-1.46875 0,0 -4.46875,0 -4.46875,0 -0.95446,-2e-5 -1.92074,0.6785 -1.9375,1.75 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0,0 0,1.5 0,1.5 -0.0127,0.7602 0.51176,1.35605 1.15625,1.625 -0.12836,0.20924 -0.21851,0.45518 -0.25,0.71875 C 141.54605,292.6745 140.75707,292 139.875,292 c 0,0 -1.36761,0 -2.65625,0 0.10967,-0.21224 0.17748,-0.46182 0.1875,-0.71875 0,0 0.0312,-1.5 0.0312,-1.5 0.0104,1.6e-4 0.0208,1.6e-4 0.0312,0 0.0406,-1.03535 -0.92056,-1.8125 -1.875,-1.8125 0,0 -4.46875,0 -4.46875,0 -0.8829,-4e-5 -1.66429,0.61268 -1.84375,1.53125 -0.13633,-0.84769 -0.8474,-1.53125 -1.6875,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.88361,-2e-5 -1.66805,0.58302 -1.875,1.5 -0.0558,-0.35964 -0.0917,-0.72331 -0.34375,-0.96875 -0.34903,-0.33981 -0.83528,-0.53125 -1.3125,-0.53125 0,0 -4.46875,0 -4.46875,0 -0.91613,-2e-5 -1.71751,0.62448 -1.90625,1.5625 -0.048,-0.38038 -0.0844,-0.78197 -0.34375,-1.03125 -0.35372,-0.33993 -0.83528,-0.53125 -1.3125,-0.53125 0,0 -4.4375,0 -4.4375,0 -0.95446,-2e-5 -1.827,0.58662 -2,1.59375 0,0 -0.28125,1.5 -0.28125,1.5 -0.0536,0.31226 0.002,0.64303 0.125,0.9375 -1.12495,0 -2.25,0 -2.25,0 -0.91516,0 -1.75034,0.50557 -2,1.46875 -0.0327,-0.2552 -0.0561,-0.53156 -0.15625,-0.75 0.44269,-0.26266 0.79037,-0.68755 0.90625,-1.28125 0,0 0.28125,-1.5 0.28125,-1.5 0.0966,-0.49519 -0.0595,-1.03926 -0.40625,-1.40625 -0.34672,-0.36699 -0.83528,-0.5625 -1.3125,-0.5625 0,0 -4.46875,0 -4.46875,0 -0.915444,-2e-5 -1.710844,0.56161 -1.96875,1.46875 -0.03828,-0.3233 -0.03241,-0.66466 -0.25,-0.90625 -0.343882,-0.38181 -0.835278,-0.5625 -1.3125,-0.5625 0,0 -4.46875,0 -4.46875,0 -0.939161,-2e-5 -1.734609,0.55554 -2,1.5 -0.04106,-0.35142 -0.01918,-0.73118 -0.25,-0.96875 -0.356725,-0.36715 -0.835278,-0.53125 -1.3125,-0.53125 0,0 -4.4375,0 -4.4375,0 -0.93898,-2e-5 -1.735581,0.53284 -2.03125,1.46875 -0.03961,-0.3294 -0.0041,-0.67482 -0.21875,-0.90625 -0.354335,-0.38205 -0.835278,-0.5625 -1.3125,-0.5625 0,0 -4.4375,0 -4.4375,0 -0.954458,-2e-5 -1.780034,0.51209 -2.09375,1.46875 0,0 -0.5,1.5 -0.5,1.5 -0.12705,0.38743 -0.100069,0.86623 0.09375,1.25 -0.488335,0.2274 -0.859572,0.66202 -1.0625,1.25 -0.01042,-1.6e-4 -0.02083,-1.6e-4 -0.03125,0 0,0 -0.02942,0.057 -0.03125,0.0625 -0.02217,-0.33391 0.05809,-0.69358 -0.15625,-0.9375 C 67.430108,292.16289 66.945446,292 66.46875,292 c 0,0 -4.53125,0 -4.53125,0 -0.95339,0 -1.765397,0.46514 -2.125,1.40625 0,0 -0.02922,0.0571 -0.03125,0.0625 -0.01147,-0.19812 0.02259,-0.40569 0,-0.59375 0.545726,-0.21265 0.981483,-0.64147 1.21875,-1.28125 0,0 0.5625,-1.5 0.5625,-1.5 0.179465,-0.48392 0.129105,-1.11671 -0.21875,-1.53125 -0.347855,-0.41454 -0.866528,-0.59375 -1.34375,-0.59375 0,0 -4.4375,0 -4.4375,0 z m 124.46875,0 c -0.47723,-10e-6 -0.95826,0.19131 -1.3125,0.53125 -0.35424,0.33994 -0.54646,0.8825 -0.46875,1.40625 0,0 0.21875,1.5 0.21875,1.5 0.0798,0.53832 0.34906,0.94708 0.71875,1.21875 -0.26977,0.33547 -0.41592,0.81906 -0.34375,1.28125 0,0 0.25,1.5 0.25,1.5 0.0761,0.48761 0.32391,0.85876 0.65625,1.125 -0.32612,0.33975 -0.52016,0.86671 -0.4375,1.375 0,0 0.25,1.5 0.25,1.5 0.17473,1.07374 1.11146,1.625 2.0625,1.625 0,0 4.6875,0 4.6875,0 0.47552,0 0.94708,-0.17982 1.3125,-0.53125 0.26989,-0.25956 0.31039,-0.66816 0.34375,-1.0625 0.21406,1.06435 1.14271,1.59375 2.09375,1.59375 0,0 4.6875,0 4.6875,0 0.47552,0 0.94205,-0.14878 1.3125,-0.5 0.254,-0.24081 0.26705,-0.65396 0.3125,-1.03125 0.25227,1.05222 1.17396,1.53125 2.125,1.53125 0,0 4.6875,0 4.6875,0 0.47552,0 0.943,-0.16609 1.3125,-0.53125 0.3695,-0.36516 0.54773,-0.97545 0.40625,-1.5 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 0,0 -0.40625,-1.5 -0.40625,-1.5 -0.14437,-0.53537 -0.44735,-0.90971 -0.84375,-1.15625 0.27003,-0.37065 0.3959,-0.86963 0.28125,-1.3125 0,0 -0.375,-1.5 -0.375,-1.5 -0.1461,-0.56436 -0.46062,-0.9773 -0.875,-1.21875 0.23847,-0.36882 0.35298,-0.86254 0.25,-1.28125 0,0 -0.375,-1.5 -0.375,-1.5 -0.2439,-0.99158 -1.10808,-1.53123 -2.0625,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.47723,-10e-6 -0.96239,0.1954 -1.3125,0.5625 -0.22033,0.23102 -0.20073,0.57924 -0.25,0.90625 -0.25187,-0.92205 -1.05332,-1.46875 -1.96875,-1.46875 0,0 -4.46875,0 -4.46875,0 -0.47723,-10e-6 -0.96015,0.17815 -1.3125,0.53125 -0.22952,0.23 -0.22498,0.60044 -0.28125,0.9375 -0.24104,-0.9479 -1.0622,-1.46875 -1.96875,-1.46875 0,0 -4.4375,0 -4.4375,0 z m -23.03125,3.5 c 0.11392,0.71011 0.60204,1.21996 1.21875,1.4375 -0.0803,0.19647 -0.12542,0.43348 -0.15625,0.65625 -0.10414,-0.74332 -0.62988,-1.26775 -1.28125,-1.46875 -0.002,-6.2e-4 0.002,-0.0306 0,-0.0312 0.10195,-0.18702 0.1833,-0.37752 0.21875,-0.59375 z M 113.0625,291.5 c 0.0232,0.17627 0.0518,0.33615 0.0937,0.5 -0.14062,0 -0.14256,0 -0.28125,0 0.0799,-0.15281 0.14914,-0.31838 0.1875,-0.5 z m 8.09375,0 c 0.0253,0.16913 0.0512,0.33704 0.0937,0.5 -0.14056,0 -0.14357,0 -0.28125,0 0.0809,-0.15546 0.15147,-0.316 0.1875,-0.5 z m 8.0625,0 c 0.0288,0.17533 0.0701,0.33742 0.125,0.5 -0.15589,0 -0.16167,0 -0.3125,0 0.0805,-0.15519 0.15026,-0.31679 0.1875,-0.5 z m 35.875,0 c 0.0358,0.18021 0.0807,0.34922 0.15625,0.5 -0.13979,0 -0.14281,0 -0.28125,0 0.054,-0.16157 0.0958,-0.32771 0.125,-0.5 z M 85.25,291.53125 c 0.02875,0.25051 0.04355,0.49985 0.125,0.71875 -0.484087,0.24213 -0.869524,0.65358 -1.03125,1.25 -0.02549,-0.23994 -0.02276,-0.50632 -0.09375,-0.71875 0.468832,-0.23903 0.826246,-0.64776 1,-1.25 z m 8.0625,0 c 0.02955,0.2599 0.05336,0.52424 0.15625,0.75 -0.452621,0.25373 -0.80225,0.67248 -0.9375,1.25 -0.01405,-0.27176 -0.01907,-0.55064 -0.125,-0.78125 0.430938,-0.25455 0.755853,-0.67751 0.90625,-1.21875 z m 93.3125,0 c 0.12103,0.48859 0.38382,0.86798 0.75,1.125 -0.13851,0.23531 -0.14573,0.54366 -0.1875,0.84375 -0.11163,-0.49842 -0.37712,-0.90209 -0.75,-1.15625 0.12578,-0.23421 0.1418,-0.52798 0.1875,-0.8125 z m 8.0625,0 c 0.13351,0.51897 0.4448,0.90296 0.84375,1.15625 -0.12884,0.24326 -0.13258,0.54787 -0.15625,0.84375 -0.12652,-0.57023 -0.43216,-0.97059 -0.84375,-1.21875 0.1121,-0.22611 0.12149,-0.51306 0.15625,-0.78125 z m -117.5,0.0312 c 0.02271,0.22423 0.0083,0.45614 0.0625,0.65625 -0.505646,0.23167 -0.907219,0.64465 -1.09375,1.25 -0.02243,-0.21779 -0.0086,-0.45496 -0.0625,-0.65625 0.505308,-0.23158 0.903706,-0.64438 1.09375,-1.25 z m 71.75,0 c 0.13694,0.63587 0.57541,1.1227 1.125,1.34375 -0.10731,0.19071 -0.18825,0.42039 -0.21875,0.65625 -0.0945,-0.70073 -0.55073,-1.21702 -1.15625,-1.4375 0.10413,-0.1725 0.20436,-0.3551 0.25,-0.5625 z M 207.8125,292 c -0.47669,10e-6 -0.96403,0.14754 -1.3125,0.53125 -0.34847,0.38371 -0.48153,1.00687 -0.34375,1.5 0,0 0.40625,1.46875 0.40625,1.46875 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0.15326,0.54851 0.47111,0.92148 0.875,1.15625 -0.26953,0.37604 -0.38211,0.88987 -0.25,1.34375 0,0 0.4375,1.5 0.4375,1.5 0.20696,0.71088 0.71164,1.13723 1.3125,1.34375 -0.17301,0.35148 -0.23787,0.78441 -0.125,1.15625 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0,0 0.46875,1.5 0.46875,1.5 0.18013,0.59348 0.5592,0.96558 1.03125,1.1875 -0.23244,0.37715 -0.3224,0.88665 -0.1875,1.3125 0,0 0.46875,1.5 0.46875,1.5 0.20149,0.63607 0.60949,1.06043 1.125,1.28125 -0.19851,0.36992 -0.25428,0.82807 -0.125,1.21875 0,0 0.5,1.5 0.5,1.5 0.34141,1.03186 1.26477,1.4375 2.21875,1.4375 0,0 14,0 14,0 0.47699,0 0.96692,-0.12094 1.34375,-0.53125 0.30265,-0.32953 0.28895,-0.83915 0.21875,-1.28125 0.0757,0.18181 0.1875,0.4375 0.1875,0.4375 0.40896,0.97722 1.29602,1.375 2.25,1.375 0,0 5,0 5,0 0.47699,0 0.99947,-0.13458 1.375,-0.5625 0.28026,-0.31936 0.21383,-0.76948 0.15625,-1.1875 0.0345,0.0709 0.21875,0.46875 0.21875,0.46875 0.45552,0.93579 1.31037,1.28125 2.25,1.28125 0,0 5,0 5,0 0.4698,0 0.96276,-0.12535 1.34375,-0.5625 0.38099,-0.43715 0.42703,-1.16472 0.1875,-1.625 0,0 -2.90625,-5.59375 -2.90625,-5.59375 -0.24412,-0.46911 -0.62253,-0.71361 -1,-0.90625 -0.12981,-0.0663 -0.26794,-0.10913 -0.40625,-0.15625 0.18708,-0.41717 0.17843,-0.93905 0,-1.3125 0,0 -2.6875,-5.59375 -2.6875,-5.59375 -0.28954,-0.606 -0.74663,-0.97865 -1.28125,-1.15625 0.17429,-0.39877 0.1839,-0.85454 0.0312,-1.21875 0,0 -0.625,-1.5 -0.625,-1.5 -0.38797,-0.92567 -1.20289,-1.37498 -2.15625,-1.375 0,0 -4.53125,0 -4.53125,0 -0.4767,0 -0.99594,0.1461 -1.34375,0.5625 -0.20167,0.24144 -0.1066,0.58828 -0.125,0.90625 -0.004,-0.0105 -0.0312,-0.0937 -0.0312,-0.0937 -0.35961,-0.94108 -1.17161,-1.375 -2.125,-1.375 0,0 -4.53125,0 -4.53125,0 -0.4767,0 -1.00187,0.17747 -1.34375,0.59375 -0.21329,0.25971 -0.11615,0.60621 -0.125,0.9375 -0.007,-0.0208 -0.0625,-0.125 -0.0625,-0.125 C 222.264,292.4508 221.45339,292 220.5,292 c 0,0 -4.53125,0 -4.53125,0 -0.47669,0 -0.967,0.16295 -1.3125,0.5625 -0.20868,0.24132 -0.16061,0.58629 -0.1875,0.90625 -0.31214,-1.01288 -1.17162,-1.46875 -2.125,-1.46875 0,0 -4.53125,0 -4.53125,0 z m -99,1.03125 c 0.14052,0 0.14195,0 0.28125,0 -0.0731,0.14235 -0.14938,0.29892 -0.1875,0.46875 -0.0203,-0.15567 -0.0597,-0.31979 -0.0937,-0.46875 z m 8.1875,0 c 0.12499,0 0.12672,0 0.25,0 -0.0752,0.151 -0.12215,0.31918 -0.15625,0.5 -0.0209,-0.16583 -0.0547,-0.33885 -0.0937,-0.5 z m 8.1875,0 c 0.12478,0 0.12792,0 0.25,0 -0.0726,0.14998 -0.12577,0.32201 -0.15625,0.5 -0.024,-0.16864 -0.0441,-0.34041 -0.0937,-0.5 z m 8.125,0 c 0.15589,0 0.16167,0 0.3125,0 -0.075,0.15438 -0.12806,0.31685 -0.15625,0.5 -0.0268,-0.17766 -0.0842,-0.34576 -0.15625,-0.5 z m 16.5625,2.375 c 0.0239,0.2109 0.10105,0.38806 0.1875,0.5625 -0.16254,0 -0.1952,0 -0.375,0 0.0835,-0.17221 0.16307,-0.35958 0.1875,-0.5625 z m -24.65625,0.0312 c 0.023,0.18371 0.0696,0.35656 0.125,0.53125 -0.1213,0 -0.17408,0 -0.3125,0 0.0825,-0.16202 0.15759,-0.33744 0.1875,-0.53125 z m 8.21875,0 c 0.0276,0.18367 0.0649,0.35908 0.125,0.53125 -0.11595,0 -0.15305,0 -0.28125,0 0.0797,-0.16191 0.12809,-0.33603 0.15625,-0.53125 z m 8.21875,0 c 0.0246,0.19338 0.0777,0.36717 0.15625,0.53125 -0.13225,0 -0.16655,0 -0.3125,0 0.0801,-0.16357 0.13106,-0.33955 0.15625,-0.53125 z m 16.4375,0 c 0.0288,0.19433 0.0763,0.36963 0.15625,0.53125 -0.1282,0 -0.14496,0 -0.28125,0 0.0601,-0.17205 0.0977,-0.34684 0.125,-0.53125 z m 64.9375,0 c 0.0106,0.03 0.0625,0.15625 0.0625,0.15625 0.1907,0.53967 0.54101,0.89931 0.96875,1.125 -0.10149,0.23628 -0.0556,0.51099 -0.0625,0.78125 -0.004,-0.0108 -0.0312,-0.0937 -0.0312,-0.0937 -0.19143,-0.5323 -0.5393,-0.92059 -0.96875,-1.15625 0.0883,-0.23974 0.0282,-0.53205 0.0312,-0.8125 z m -155.46875,0.0312 c 0.0053,0.16384 -0.01296,0.3426 0,0.5 -0.05944,0 -0.146306,0 -0.21875,0 0.06702,-0.1161 0.138979,-0.23768 0.1875,-0.375 0,0 0.02491,-0.10709 0.03125,-0.125 z m 16.5,0 c 0.01245,0.17268 0.0072,0.33612 0.03125,0.5 -0.0767,0 -0.157962,0 -0.25,0 0.07505,-0.13545 0.141781,-0.27388 0.1875,-0.4375 0,0 0.02964,-0.057 0.03125,-0.0625 z m 16.4375,0 c 0.0186,0.17047 0.0558,0.33728 0.0937,0.5 -0.0958,0 -0.16812,0 -0.28125,0 0.0825,-0.15181 0.14554,-0.31695 0.1875,-0.5 z m 8.25,0 c 0.019,0.16767 0.0561,0.33742 0.0937,0.5 -0.10157,0 -0.16374,0 -0.28125,0 0.0813,-0.15267 0.14925,-0.31661 0.1875,-0.5 z m 8.21875,0 c 0.0234,0.16909 0.044,0.34013 0.0937,0.5 -0.0954,0 -0.1429,0 -0.25,0 0.0781,-0.15225 0.11996,-0.31575 0.15625,-0.5 z m 78.625,0 c 0.11843,0.51484 0.41332,0.90215 0.78125,1.15625 -0.15679,0.2413 -0.18933,0.56519 -0.21875,0.875 -0.11938,-0.51647 -0.4076,-0.90255 -0.78125,-1.15625 0.15015,-0.24651 0.20261,-0.56323 0.21875,-0.875 z m -136.25,0.0312 c 0.004,0.1554 -2.92e-4,0.31702 0,0.46875 -0.03636,0 -0.201432,0 -0.25,0 0.06802,-0.11114 0.13696,-0.21428 0.1875,-0.34375 0,0 0.05444,-0.10464 0.0625,-0.125 z m 32.9375,0 c 0.01738,0.16178 0.03674,0.31231 0.0625,0.46875 -0.08081,0 -0.154584,0 -0.25,0 0.07835,-0.14513 0.144613,-0.29183 0.1875,-0.46875 z m 95.0625,0 c 0.11072,0.47751 0.37245,0.84265 0.71875,1.09375 -0.19253,0.26397 -0.22687,0.62366 -0.25,0.96875 -0.0972,-0.50472 -0.36667,-0.88885 -0.71875,-1.15625 0.18184,-0.24133 0.20466,-0.57877 0.25,-0.90625 z M 75.8125,295.5625 c 0.01414,0.13328 0.01808,0.27612 0.03125,0.40625 -0.06336,0 -0.14295,0 -0.21875,0 0.06957,-0.1235 0.140972,-0.25919 0.1875,-0.40625 z m 139,0 c 0.17186,0.5432 0.50926,0.92378 0.9375,1.15625 -0.0968,0.23218 -0.0736,0.50527 -0.0937,0.78125 -0.002,-0.005 -0.0312,-0.0625 -0.0312,-0.0625 -0.1691,-0.5267 -0.49666,-0.88221 -0.90625,-1.125 0.10625,-0.2185 0.0799,-0.49118 0.0937,-0.75 z m 16.46875,0 c 0.002,0.005 0.0312,0.0625 0.0312,0.0625 0.24708,0.63291 0.7014,1.02234 1.25,1.21875 -0.14466,0.34735 -0.1449,0.77463 -0.0312,1.125 -0.11357,-0.28692 -0.25,-0.59375 -0.25,-0.59375 -0.21366,-0.53666 -0.5906,-0.89672 -1.03125,-1.125 0.003,-0.01 -0.002,-0.0215 0,-0.0312 0.0468,-0.20004 0.0174,-0.43325 0.0312,-0.65625 z M 61.5,297 c 0.06363,0 0.168784,0 0.25,0 -0.0674,0.11338 -0.137272,0.24317 -0.1875,0.375 0,0 -0.04703,0.14842 -0.0625,0.1875 0.0032,-0.18773 0.01582,-0.38226 0,-0.5625 z m 8.3125,0 c 0.06599,0 0.166794,0 0.25,0 -0.07222,0.124 -0.136773,0.25814 -0.1875,0.40625 0,0 -0.02743,0.083 -0.03125,0.0937 -0.01278,-0.16362 -0.01929,-0.34006 -0.03125,-0.5 z m 8.375,0 c 0.0656,0 0.140964,0 0.21875,0 -0.08368,0.14372 -0.134381,0.29399 -0.1875,0.46875 0,0 -0.02963,0.0569 -0.03125,0.0625 -0.01059,-0.17702 0.01519,-0.35737 0,-0.53125 z m 8.3125,0 c 0.0771,0 0.157539,0 0.25,0 -0.07973,0.1463 -0.140423,0.32264 -0.1875,0.5 -0.01042,-1.6e-4 -0.02083,-1.6e-4 -0.03125,0 C 86.51416,297.3362 86.51741,297.15986 86.5,297 Z m 8.34375,0 c 0.09361,0 0.169838,0 0.28125,0 -0.08852,0.16017 -0.173934,0.33374 -0.21875,0.53125 -0.01533,-0.17821 -0.02522,-0.36064 -0.0625,-0.53125 z m 8.3125,0 c 0.10644,0 0.18495,0 0.3125,0 -0.0924,0.17064 -0.17874,0.35009 -0.21875,0.5625 -0.0165,-0.1869 -0.0508,-0.3861 -0.0937,-0.5625 z m 8.375,0 c 0.10402,0 0.16177,0 0.28125,0 -0.0879,0.1645 -0.14922,0.32969 -0.1875,0.53125 -0.0215,-0.1772 -0.05,-0.36188 -0.0937,-0.53125 z m 8.3125,0 c 0.11772,0 0.17656,0 0.3125,0 -0.0835,0.16697 -0.15657,0.35948 -0.1875,0.5625 -0.0238,-0.19642 -0.0707,-0.37982 -0.125,-0.5625 z m 8.375,0 c 0.1257,0 0.17089,0 0.3125,0 -0.0903,0.17889 -0.15687,0.37299 -0.1875,0.59375 -0.0217,-0.20009 -0.0632,-0.40681 -0.125,-0.59375 z m 8.3125,0 c 0.14031,0 0.18525,0 0.34375,0 -0.0944,0.18241 -0.16109,0.37448 -0.1875,0.59375 -0.0211,-0.2096 -0.0712,-0.4138 -0.15625,-0.59375 z m 8.34375,0 c 0.15931,0 0.19695,0 0.375,0 -0.0845,0.1707 -0.16118,0.36274 -0.1875,0.5625 -0.0264,-0.20128 -0.10201,-0.39074 -0.1875,-0.5625 z m 8.375,0 c 0.13792,0 0.16285,0 0.3125,0 -0.0653,0.17768 -0.099,0.36254 -0.125,0.5625 -0.0308,-0.21088 -0.0979,-0.38865 -0.1875,-0.5625 z m 8.34375,0 c 0.0723,0 0.22863,0 0.3125,0 -0.0618,0.18694 -0.10331,0.39366 -0.125,0.59375 -0.0302,-0.21439 -0.0977,-0.41562 -0.1875,-0.59375 z m 71.28125,1.90625 c 0.15952,0.35694 0.34653,0.81108 0.625,1.4375 -0.19094,-0.11045 -0.40429,-0.19734 -0.625,-0.25 0.15181,-0.38001 0.13123,-0.83554 0,-1.1875 z m -113,0.5 c 0.0166,0.20569 0.0638,0.40737 0.125,0.59375 -0.0913,0 -0.1974,0 -0.3125,0 0.0922,-0.17797 0.15541,-0.37226 0.1875,-0.59375 z m 8.40625,0 c 0.0194,0.20067 0.0639,0.40789 0.125,0.59375 -0.097,0 -0.19277,0 -0.3125,0 0.0914,-0.1792 0.16004,-0.37189 0.1875,-0.59375 z m 8.375,0 c 0.0229,0.20293 0.0534,0.41075 0.125,0.59375 -0.10674,0 -0.1852,0 -0.3125,0 0.0903,-0.17835 0.15943,-0.37858 0.1875,-0.59375 z m 16.8125,0 c 0.0281,0.21514 0.0972,0.41541 0.1875,0.59375 -0.11562,0 -0.17851,0 -0.3125,0 0.0716,-0.183 0.10206,-0.39084 0.125,-0.59375 z m 8.375,0 c 0.0275,0.22183 0.0961,0.41456 0.1875,0.59375 l -0.3125,0 c 0.0612,-0.18565 0.10571,-0.39202 0.125,-0.59375 z M 61.0625,299.4375 c 0.0018,0.18095 -0.0092,0.38327 0,0.5625 -0.01212,0 -0.227622,0 -0.25,0 0.07154,-0.11698 0.133214,-0.23565 0.1875,-0.375 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 0,0 0.05139,-0.12664 0.0625,-0.15625 z m 16.8125,0 c 0.0046,0.18382 0.0087,0.3847 0.03125,0.5625 -0.04732,0 -0.208622,0 -0.28125,0 0.08053,-0.13746 0.166148,-0.26915 0.21875,-0.4375 0,0 0.02548,-0.10655 0.03125,-0.125 z m 8.40625,0 c 0.0097,0.18584 0.0029,0.38442 0.03125,0.5625 -0.04995,0 -0.180924,0 -0.25,0 0.07667,-0.13996 0.140666,-0.29781 0.1875,-0.46875 0,0 0.02818,-0.0824 0.03125,-0.0937 z m 16.8125,0 c 0.0162,0.18621 0.051,0.38628 0.0937,0.5625 -0.0748,0 -0.21053,0 -0.3125,0 0.0942,-0.17053 0.17658,-0.34835 0.21875,-0.5625 z m 8.40625,0 c 0.0197,0.19025 0.0455,0.37946 0.0937,0.5625 -0.0836,0 -0.20346,0 -0.3125,0 0.0925,-0.17124 0.18161,-0.34818 0.21875,-0.5625 z m 33.5625,0 c 0.0288,0.20294 0.0996,0.3909 0.1875,0.5625 -0.13085,0 -0.21613,0 -0.375,0 0.0879,-0.17163 0.15881,-0.35946 0.1875,-0.5625 z m 70.9375,0 c 0.006,0.0182 0.0312,0.125 0.0312,0.125 0.10743,0.32589 0.26224,0.5975 0.46875,0.8125 -0.17497,-0.10717 -0.36377,-0.18562 -0.5625,-0.25 0.05,-0.21334 0.0559,-0.45666 0.0625,-0.6875 z m -121.3125,0.0312 c 0.01487,0.17753 0.02541,0.36084 0.0625,0.53125 -0.06187,0 -0.196287,0 -0.28125,0 0.08995,-0.15984 0.172007,-0.33271 0.21875,-0.53125 z m 129.71875,0 c 0.006,0.0178 0.0312,0.125 0.0312,0.125 0.0906,0.24615 0.22723,0.44408 0.375,0.625 -0.13677,-0.0643 -0.28699,-0.0882 -0.4375,-0.125 0.0376,-0.19534 0.025,-0.41266 0.0312,-0.625 z M 69.46875,299.5 c 0.01223,0.16271 0.01946,0.34021 0.03125,0.5 -0.03377,0 -0.195002,0 -0.25,0 0.0747,-0.12517 0.134634,-0.25565 0.1875,-0.40625 0,0 0.02742,-0.0829 0.03125,-0.0937 z m 147.46875,1.21875 c 0.17393,0.10324 0.36367,0.16528 0.5625,0.21875 -0.0324,0.2092 -0.0311,0.43342 -0.0312,0.65625 -0.0101,-0.0302 -0.0625,-0.15625 -0.0625,-0.15625 -0.10227,-0.30547 -0.27043,-0.52901 -0.46875,-0.71875 z m 8.625,0.0937 c 0.14127,0.0646 0.28355,0.0888 0.4375,0.125 -0.0524,0.23853 -0.0478,0.49744 -0.0312,0.75 -0.0314,-0.0836 -0.0937,-0.28125 -0.0937,-0.28125 -0.0847,-0.22596 -0.18028,-0.42421 -0.3125,-0.59375 z m -162.6875,0.2188 c 0.03111,0 0.1972,0 0.25,0 -0.05965,0.10267 -0.110571,0.22476 -0.15625,0.34375 0,0 -0.06131,0.19931 -0.09375,0.28125 0.01019,-0.20533 0.02323,-0.42655 0,-0.625 z m 8.53125,0 c 0.04452,0 0.21085,0 0.28125,0 -0.07174,0.12356 -0.137189,0.25986 -0.1875,0.40625 0,0 -0.06293,0.19425 -0.09375,0.28125 0.01634,-0.22839 0.0348,-0.46361 0,-0.6875 z m 8.5,0 c 0.045,0 0.185089,0 0.25,0 -0.07155,0.12918 -0.140183,0.28162 -0.1875,0.4375 0,0 -0.0258,0.10631 -0.03125,0.125 -0.0063,-0.19176 -0.0019,-0.37772 -0.03125,-0.5625 z m 8.5,0 c 0.05652,0 0.20065,0 0.28125,0 -0.07583,0.14054 -0.142124,0.29645 -0.1875,0.46875 0,0 -0.02648,0.1059 -0.03125,0.125 -0.0027,-0.1956 -0.02451,-0.40623 -0.0625,-0.59375 z m 8.53125,0 c 0.065,0 0.193525,0 0.28125,0 -0.07896,0.15072 -0.145729,0.31284 -0.1875,0.5 0,0 -0.02685,0.10581 -0.03125,0.125 -0.0029,-0.21507 -0.0132,-0.42414 -0.0625,-0.625 z m 8.5,0 c 0.0704,0 0.18903,0 0.28125,0 -0.0845,0.16147 -0.15032,0.32812 -0.1875,0.53125 -0.01,-0.17696 -0.0483,-0.36316 -0.0937,-0.53125 z m 8.5,0 c 0.084,0 0.20294,0 0.3125,0 -0.086,0.1689 -0.15765,0.35345 -0.1875,0.5625 -0.0154,-0.19411 -0.0688,-0.38097 -0.125,-0.5625 z m 8.53125,0 c 0.0923,0 0.19636,0 0.3125,0 -0.092,0.17883 -0.16128,0.37318 -0.1875,0.59375 -0.0125,-0.20883 -0.0632,-0.40138 -0.125,-0.59375 z m 8.5625,0 c 0.10247,0 0.18836,0 0.3125,0 -0.094,0.18828 -0.16705,0.39347 -0.1875,0.625 -0.0118,-0.21932 -0.0513,-0.43031 -0.125,-0.625 z m 8.5,0 c 0.11798,0 0.20124,0 0.34375,0 -0.0865,0.1796 -0.16704,0.37244 -0.1875,0.59375 -0.0191,-0.20908 -0.0763,-0.41113 -0.15625,-0.59375 z m 8.53125,0 c 0.114,0 0.17961,0 0.3125,0 -0.0845,0.19351 -0.13825,0.40554 -0.15625,0.625 -0.0206,-0.22708 -0.0664,-0.4325 -0.15625,-0.625 z m 8.5,0 c 0.11822,0 0.1765,0 0.3125,0 -0.0735,0.19525 -0.11114,0.40856 -0.125,0.625 -0.0177,-0.23522 -0.0942,-0.43579 -0.1875,-0.625 z m -59.78125,2.25 c -0.004,0.2312 0.0066,0.4681 0.0625,0.6875 -0.116166,0 -0.178413,0 -0.3125,0 0.07952,-0.14874 0.14523,-0.31789 0.1875,-0.5 0,0 0.05158,-0.14385 0.0625,-0.1875 z m -25.75,0.0312 c -0.01444,0.21617 -0.02925,0.44718 0,0.65625 -0.09044,0 -0.173095,0 -0.28125,0 0.06827,-0.11707 0.138386,-0.23571 0.1875,-0.375 0,0 0.06378,-0.19662 0.09375,-0.28125 z m 17.1875,0 c -0.0051,0.21211 -0.01184,0.44872 0.03125,0.65625 -0.100302,0 -0.165355,0 -0.28125,0 0.07853,-0.14169 0.139853,-0.29376 0.1875,-0.46875 0,0 0.05106,-0.14528 0.0625,-0.1875 z m 42.875,0 c 0.009,0.22119 0.0517,0.45572 0.125,0.65625 -0.13559,0 -0.16479,0 -0.3125,0 0.0991,-0.19477 0.17001,-0.41138 0.1875,-0.65625 z m 95.28125,0 c 0.0409,0.10334 0.125,0.3125 0.125,0.3125 0.23531,0.613 0.67015,0.98581 1.1875,1.1875 -0.10001,0.27331 -0.0614,0.60038 -0.0312,0.90625 -0.0472,-0.11917 -0.125,-0.34375 -0.125,-0.34375 -0.23797,-0.60818 -0.67176,-1.00632 -1.1875,-1.21875 0.0855,-0.25983 0.0546,-0.55609 0.0312,-0.84375 z m -163.90625,0.0312 c -0.0066,0.21022 -0.02078,0.41967 0,0.625 -0.03007,0 -0.242275,0 -0.28125,0 0.0617,-0.10371 0.108765,-0.22286 0.15625,-0.34375 0,0 0.09013,-0.19317 0.125,-0.28125 z m 77.1875,0 c 0.0174,0.21963 0.0466,0.43019 0.125,0.625 -0.14107,0 -0.16142,0 -0.3125,0 0.0944,-0.18856 0.16991,-0.39236 0.1875,-0.625 z m 8.5625,0 c 0.0156,0.23222 0.0908,0.43406 0.1875,0.625 -0.14308,0 -0.16031,0 -0.3125,0 0.0781,-0.19368 0.10919,-0.40313 0.125,-0.625 z m 8.59375,0 c 0.0195,0.2318 0.096,0.43936 0.1875,0.625 -0.0828,0 -0.2368,0 -0.3125,0 0.0776,-0.19368 0.10851,-0.40655 0.125,-0.625 z m 61,0 c 0.0249,0.0703 0.0937,0.25 0.0937,0.25 0.20621,0.60006 0.60808,0.9746 1.09375,1.1875 -0.10205,0.26379 -0.0738,0.5763 -0.0625,0.875 -0.0249,-0.0703 -0.0937,-0.25 -0.0937,-0.25 -0.21193,-0.60649 -0.62154,-0.998 -1.125,-1.21875 0.0974,-0.25403 0.0998,-0.54802 0.0937,-0.84375 z M 79.625,303.375 c 1.16e-4,0.19735 0.0022,0.40453 0.03125,0.59375 -0.09471,0 -0.16968,0 -0.28125,0 0.07077,-0.12486 0.140653,-0.25632 0.1875,-0.40625 0,0 0.04954,-0.14603 0.0625,-0.1875 z m 42.90625,0 c 0.0146,0.20111 0.0337,0.41104 0.0937,0.59375 -0.13205,0 -0.16718,0 -0.3125,0 0.10338,-0.17695 0.19301,-0.36309 0.21875,-0.59375 z m -8.59375,0.0312 c 0.0146,0.18699 0.0713,0.38527 0.125,0.5625 -0.12579,0 -0.17143,0 -0.3125,0 0.0892,-0.17019 0.15516,-0.3494 0.1875,-0.5625 z m -8.59375,0.0312 c 0.0122,0.18277 0.0432,0.35703 0.0937,0.53125 -0.10989,0 -0.15792,0 -0.28125,0 0.0852,-0.15954 0.14956,-0.33356 0.1875,-0.53125 z m 129.75,0.40625 c 0.1383,0.25978 0.30082,0.487 0.5,0.65625 -0.18041,-0.14876 -0.40725,-0.22818 -0.625,-0.3125 0.0556,-0.10812 0.0965,-0.22521 0.125,-0.34375 z m -43.5,0.125 c -0.48167,10e-6 -0.97091,0.1564 -1.34375,0.5 -0.37284,0.3436 -0.58813,0.9547 -0.46875,1.5 0,0 0.3125,1.5 0.3125,1.5 0.13454,0.61454 0.50983,1.00267 0.96875,1.25 -0.19447,0.31868 -0.26793,0.73391 -0.21875,1.125 -0.0234,-0.10195 -0.0625,-0.3125 -0.0625,-0.3125 -0.23834,-1.08893 -1.16359,-1.53125 -2.125,-1.53125 0,0 -4.90625,0 -4.90625,0 -0.4807,0 -0.93472,0.14757 -1.3125,0.46875 -0.37778,0.32118 -0.66752,0.90082 -0.5625,1.46875 0,0 0.28125,1.5 0.28125,1.5 0.10392,0.56188 0.4614,0.9417 0.84375,1.1875 0.38235,0.2458 0.83551,0.375 1.3125,0.375 0,0 5,0 5,0 0.47699,0 0.96234,-0.1324 1.34375,-0.46875 0.35019,-0.30882 0.49552,-0.86372 0.4375,-1.375 0.0234,0.10198 0.0625,0.3125 0.0625,0.3125 0.12617,0.55168 0.46107,0.91654 0.84375,1.15625 0.38268,0.23971 0.83551,0.375 1.3125,0.375 0,0 5,0 5,0 0.47699,0 0.96738,-0.13646 1.34375,-0.5 0.34517,-0.3334 0.45294,-0.88634 0.375,-1.375 0.0377,0.13925 0.0937,0.375 0.0937,0.375 0.29434,1.08024 1.23352,1.5 2.1875,1.5 0,0 5,0 5,0 0.47699,0 0.9676,-0.12175 1.34375,-0.5 0.37615,-0.37825 0.53048,-1.02409 0.375,-1.53125 0,0 -0.4375,-1.5 -0.4375,-1.5 -0.31942,-1.04196 -1.2261,-1.46875 -2.1875,-1.46875 0,0 -4.9375,0 -4.9375,0 -0.4807,0 -0.97092,0.1405 -1.34375,0.5 -0.32549,0.31386 -0.39796,0.83448 -0.34375,1.3125 -0.0261,-0.10438 -0.0937,-0.3125 -0.0937,-0.3125 -0.16114,-0.61323 -0.53109,-1.01741 -1,-1.25 0.24094,-0.35949 0.35631,-0.82739 0.25,-1.25 0,0 -0.375,-1.5 -0.375,-1.5 -0.26724,-1.06227 -1.19288,-1.53125 -2.15625,-1.53125 0,0 -4.8125,0 -4.8125,0 z m 44.0625,0.5625 c 0.20033,0.15912 0.41486,0.26271 0.65625,0.34375 -0.0526,0.1327 -0.0796,0.29324 -0.0937,0.4375 -0.14262,-0.32013 -0.33227,-0.57839 -0.5625,-0.78125 z M 64.875,305 c 0.09345,0 0.195825,0 0.3125,0 -0.0705,0.11664 -0.134533,0.23634 -0.1875,0.375 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0,0 -0.07975,0.22308 -0.125,0.34375 0.02837,-0.24846 0.04353,-0.51004 0,-0.75 z m 8.6875,0 c 0.110535,0 0.207386,0 0.34375,0 -0.083,0.13625 -0.162469,0.272 -0.21875,0.4375 0,0 -0.07008,0.17899 -0.09375,0.25 0.0078,-0.23111 0.01071,-0.46928 -0.03125,-0.6875 z m 8.6875,0 c 0.116301,0 0.202896,0 0.34375,0 -0.08265,0.14217 -0.136557,0.29788 -0.1875,0.46875 0,0 -0.07075,0.1764 -0.09375,0.25 C 82.3215,305.47708 82.29923,305.23177 82.25,305 Z m 8.71875,0 c 0.101211,0 0.164468,0 0.28125,0 -0.0825,0.14826 -0.140798,0.31772 -0.1875,0.5 0,0 -0.02648,0.1059 -0.03125,0.125 -0.0029,-0.20253 -0.01957,-0.42927 -0.0625,-0.625 z m 8.71875,0 c 0.118704,0 0.176441,0 0.3125,0 -0.08977,0.16242 -0.175047,0.32728 -0.21875,0.53125 0,0 -0.02519,0.12718 -0.03125,0.15625 -5.26e-4,-0.22666 -0.0068,-0.47432 -0.0625,-0.6875 z m 8.6875,0 c 0.12397,0 0.17272,0 0.3125,0 -0.0864,0.16653 -0.15147,0.35345 -0.1875,0.5625 0,0 -0.0276,0.10568 -0.0312,0.125 -0.005,-0.23102 -0.0243,-0.47488 -0.0937,-0.6875 z m 8.6875,0 c 0.14085,0 0.18545,0 0.34375,0 -0.0998,0.1878 -0.18748,0.38524 -0.21875,0.625 -0.007,-0.21127 -0.0551,-0.43335 -0.125,-0.625 z m 8.71875,0 c 0.13302,0 0.1664,0 0.3125,0 -0.10035,0.19545 -0.16535,0.40598 -0.1875,0.65625 -0.01,-0.22348 -0.0491,-0.45173 -0.125,-0.65625 z m 8.6875,0 c 0.13606,0 0.16443,0 0.3125,0 -0.0962,0.19908 -0.14446,0.43439 -0.15625,0.6875 -0.0118,-0.24264 -0.0683,-0.47892 -0.15625,-0.6875 z m 8.75,0 c 0.15654,0 0.17605,0 0.34375,0 -0.0948,0.1868 -0.1662,0.40235 -0.1875,0.625 -0.0198,-0.22604 -0.0661,-0.43224 -0.15625,-0.625 z m 8.6875,0 c 0.15953,0 0.17453,0 0.34375,0 -0.0947,0.20211 -0.17211,0.41863 -0.1875,0.65625 -0.017,-0.23597 -0.0621,-0.46391 -0.15625,-0.65625 z M 64.5,307.25 c -0.02827,0.24795 -0.04384,0.51246 0,0.75 -0.08513,0 -0.23601,0 -0.34375,0 0.07064,-0.11473 0.134744,-0.24018 0.1875,-0.375 0,0 0.100062,-0.23305 0.15625,-0.375 z m 8.75,0.0312 c -0.0183,0.23709 -0.01907,0.48953 0.03125,0.71875 -0.156161,0 -0.157913,0 -0.3125,0 0.07515,-0.12533 0.134585,-0.2548 0.1875,-0.40625 0,0 0.05841,-0.21273 0.09375,-0.3125 z m 26.28125,0 c -0.0051,0.23958 0.02395,0.49249 0.09375,0.71875 -0.147337,0 -0.166155,0 -0.3125,0 0.08695,-0.15716 0.144348,-0.33826 0.1875,-0.53125 0,0 0.02212,-0.14766 0.03125,-0.1875 z m 128.53125,0 c 0.0471,0.11886 0.125,0.34375 0.125,0.34375 0.26907,0.67165 0.75803,1.05738 1.34375,1.25 -0.099,0.292 -0.0854,0.62542 -0.0312,0.9375 -0.0758,-0.18199 -0.1875,-0.4375 -0.1875,-0.4375 -0.26058,-0.63751 -0.75003,-0.99263 -1.3125,-1.1875 0.0977,-0.273 0.088,-0.60113 0.0625,-0.90625 z m -146.03125,0.0312 c -0.0071,0.22601 -0.01023,0.47232 0.03125,0.6875 -0.01034,0 -0.306095,0 -0.3125,0 0.07227,-0.12899 0.139476,-0.2813 0.1875,-0.4375 0,0 0.07142,-0.17853 0.09375,-0.25 z m 26.28125,0 c 0.007,0.23642 0.0494,0.46765 0.125,0.6875 -0.18451,0 -0.1898,0 -0.375,0 0.0913,-0.16927 0.17966,-0.34736 0.21875,-0.5625 0,0 0.0276,-0.10556 0.0312,-0.125 z m 26.28125,0 c 0.007,0.24577 0.0613,0.48095 0.15625,0.6875 -0.10185,0 -0.29889,0 -0.375,0 0.10823,-0.20644 0.20411,-0.42559 0.21875,-0.6875 z m -43.8125,0.0312 c 0.0012,0.21448 0.01339,0.448 0.0625,0.65625 -0.09951,0 -0.21545,0 -0.3125,0 0.08382,-0.14934 0.138377,-0.315 0.1875,-0.5 0.01042,1.6e-4 0.02083,1.6e-4 0.03125,0 0,0 0.02412,-0.12773 0.03125,-0.15625 z m 35.03125,0 c 0.009,0.22467 0.0708,0.4571 0.15625,0.65625 -0.047,0 -0.29263,0 -0.34375,0 0.10226,-0.19454 0.16355,-0.41143 0.1875,-0.65625 z m 26.3125,0 c 0.0206,0.2368 0.0911,0.45713 0.1875,0.65625 -0.0299,-10e-4 -0.0639,0 -0.0937,0 0,0 -0.23256,0 -0.25,0 0.0915,-0.20058 0.13925,-0.42677 0.15625,-0.65625 z m 67.15625,0 c 0.0248,0.0701 0.0937,0.25 0.0937,0.25 0.0536,0.14926 0.11205,0.28196 0.1875,0.40625 -0.1549,0 -0.15924,0 -0.3125,0 0.0352,-0.21121 0.0363,-0.44026 0.0312,-0.65625 z m -75.9375,0.0312 c 0.043,0.45235 0.23518,0.88515 0.53125,1.15625 -0.29667,0.28409 -0.51399,0.70517 -0.53125,1.1875 -0.003,-0.49439 -0.24603,-0.90171 -0.5625,-1.1875 0.3006,-0.26481 0.50978,-0.69563 0.5625,-1.15625 z m -26.28125,0.0312 c 0.0125,0.20686 0.0533,0.40553 0.125,0.59375 -0.11894,0 -0.19161,0 -0.3125,0 0.0905,-0.17574 0.15617,-0.36955 0.1875,-0.59375 z m 119.90625,0.0312 c 0.22549,0.46215 0.30682,0.59714 0.59375,1.1875 -0.22129,-0.18962 -0.45412,-0.35991 -0.71875,-0.46875 0.10507,-0.22719 0.1312,-0.46594 0.125,-0.71875 z M 56.1875,309.03125 c 0.147435,0 0.168277,0 0.3125,0 -0.0574,0.0935 -0.109546,0.20465 -0.15625,0.3125 0,0 -0.108062,0.25593 -0.1875,0.4375 0.03623,-0.24719 0.06346,-0.5082 0.03125,-0.75 z m 10.875,0 c 0.122288,0 0.223126,0 0.375,0 -0.07767,0.11626 -0.164862,0.23303 -0.21875,0.375 0,0 -0.09577,0.24497 -0.15625,0.40625 0.03663,-0.25227 0.04604,-0.52819 0,-0.78125 z m 11.875,0 c 0.08681,0 0.254972,0 0.3125,0 -0.07239,0.12568 -0.138784,0.25456 -0.1875,0.40625 0,0 -0.06174,0.21005 -0.09375,0.3125 0.01879,-0.23481 0.01999,-0.49165 -0.03125,-0.71875 z m 52.34375,0 c 0.13472,0 0.23481,0 0.34375,0 -0.0933,0.19118 -0.17209,0.41259 -0.1875,0.65625 -0.005,-0.23357 -0.0669,-0.45584 -0.15625,-0.65625 z m 22.75,0 c 0.0214,6.3e-4 0.041,0 0.0625,0 0,0 0.27328,0 0.28125,0 -0.0939,0.2057 -0.14995,0.44481 -0.15625,0.6875 -0.0103,-0.26444 -0.0811,-0.48076 -0.1875,-0.6875 z m 10.875,0 c 0.16996,0 0.17527,0 0.34375,0 -0.0864,0.19297 -0.1491,0.39999 -0.15625,0.625 -0.0213,-0.23043 -0.0911,-0.44361 -0.1875,-0.625 z" - id="path3657" /> - </clipPath> - <filter - inkscape:collect="always" - id="filter3695" - x="-0.011979384" - width="1.0239588" - y="-0.10593307" - height="1.2118661" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.0151921" - id="feGaussianBlur3697" /> - </filter> - <linearGradient - id="linearGradient4264"> - <stop - id="stop4266" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - style="stop-color:#959793;stop-opacity:1;" - offset="0.5" - id="stop2689" /> - <stop - id="stop2691" - offset="0.75" - style="stop-color:#b5b7b3;stop-opacity:1;" /> - <stop - id="stop4268" - offset="1" - style="stop-color:#d6d7d3;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient2703"> - <stop - id="stop2705" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0.30842987" - id="stop6528" /> - <stop - id="stop6530" - offset="0.62499988" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - id="stop2711" - offset="1" - style="stop-color:#d6d7d3;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3675"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop3677" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="1" - id="stop3679" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3541"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop3543" /> - <stop - style="stop-color:#888a85;stop-opacity:0;" - offset="1" - id="stop3545" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5513" - id="linearGradient8775" - gradientUnits="userSpaceOnUse" - x1="141.5" - y1="250.75" - x2="141.5" - y2="201.40486" - gradientTransform="matrix(0.43678839,0,0,0.43678839,6.7525729,3.8505364)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="radialGradient8777" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.4968982,2.1470449e-7,0,0.6915626,-172.0323,81.837652)" - cx="111.15084" - cy="242.43991" - fx="111.15084" - fy="242.43991" - r="48" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5615" - id="linearGradient8779" - gradientUnits="userSpaceOnUse" - x1="142.25" - y1="203.9586" - x2="142.25" - y2="224.5" - gradientTransform="matrix(0.43678839,0,0,0.43678839,6.7525729,3.8505364)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5316" - id="linearGradient8781" - gradientUnits="userSpaceOnUse" - x1="176.42314" - y1="357.41705" - x2="176.42314" - y2="373.22336" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10629-2" - id="radialGradient8783" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.70636026,-0.23576099,0.5615853,1.7290985,-109.85309,-134.48335)" - cx="160.52614" - cy="145.72731" - fx="160.52614" - fy="145.72731" - r="111.99998" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3288" - id="linearGradient8785" - gradientUnits="userSpaceOnUse" - x1="44" - y1="71.25" - x2="125.5" - y2="207.5" - gradientTransform="matrix(0.43678839,0,0,0.43678839,6.7525729,3.8505364)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient12756-7" - id="radialGradient8787" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(6.3760225,0,0,2.7816419,-81.665785,-13.267156)" - cx="24.006104" - cy="37.921711" - fx="24.006104" - fy="37.921711" - r="19.00016" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5687" - id="linearGradient8789" - gradientUnits="userSpaceOnUse" - x1="88" - y1="44.5" - x2="178" - y2="202.5" - gradientTransform="matrix(0.43678839,0,0,0.43678839,6.7525729,3.8505364)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4788" - id="radialGradient8791" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-4.5773323,2.0113271e-6,-1.4332119e-6,-3.2616709,1560.2075,225.34913)" - cx="326.0206" - cy="58" - fx="326.0206" - fy="58" - r="12.5" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5316" - id="linearGradient8793" - gradientUnits="userSpaceOnUse" - x1="77.5" - y1="-121.5" - x2="70.5" - y2="-453.5" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5351" - id="radialGradient8795" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1119712,0.45344785,-0.26494671,0.65556779,-67.877263,-76.017614)" - cx="131.57802" - cy="71.691467" - fx="131.57802" - fy="71.691467" - r="111.8125" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5361" - id="radialGradient8797" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7951679,-0.79516798,0.20293355,0.20293355,-11.943442,93.635308)" - cx="158.95222" - cy="-282.6434" - fx="158.95222" - fy="-282.6434" - r="105.00002" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5371" - id="radialGradient8799" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(40.359357,-40.359357,123.56454,123.56452,-6441.5065,-26728.886)" - cx="-253.64368" - cy="134.02652" - fx="-253.64368" - fy="134.02652" - r="0.49997711" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5496" - id="linearGradient8801" - gradientUnits="userSpaceOnUse" - x1="99.998619" - y1="251.5" - x2="196.0014" - y2="251.5" - gradientTransform="matrix(0.43678839,0,0,0.43678839,6.7525729,3.8505364)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5496" - id="linearGradient8803" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.43678839,0,0,0.2723504,6.7525729,44.636295)" - x1="99.998619" - y1="251.5" - x2="196.0014" - y2="251.5" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5544" - id="radialGradient8805" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3227812,0.3928667,-0.07858802,0.26460553,-87.323733,-4.8386686)" - cx="130.45143" - cy="244.43008" - fx="130.45143" - fy="244.43008" - r="48" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4070" - id="radialGradient8807" - gradientUnits="userSpaceOnUse" - cx="103.875" - cy="250" - fx="103.875" - fy="250" - r="1.5" - gradientTransform="matrix(0.76437969,0,0,0.76437969,-27.275973,-78.047287)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5701" - id="radialGradient8809" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(24.673911,184.16858,-78.65515,42.151165,9708.585,-12332.21)" - cx="36.777901" - cy="134.5195" - fx="36.777901" - fy="134.5195" - r="1" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5701" - id="radialGradient8811" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(24.673911,184.16858,-78.65515,42.151165,9927.585,-12332.21)" - cx="36.80687" - cy="134.60487" - fx="36.80687" - fy="134.60487" - r="1" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5555" - id="radialGradient8813" - gradientUnits="userSpaceOnUse" - cx="103.875" - cy="250" - fx="103.875" - fy="250" - r="1.5" - gradientTransform="matrix(0.45552364,0,0,0.45552364,43.193107,-0.91049164)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5361" - id="radialGradient8815" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.83131371,-0.79516798,0.21215826,0.20293355,-15.731849,90.141001)" - cx="176.81648" - cy="-212.64468" - fx="176.81648" - fy="-212.64468" - r="105.00002" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4090" - id="linearGradient8817" - gradientUnits="userSpaceOnUse" - x1="241.38858" - y1="204" - x2="242" - y2="206.97127" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4134" - id="linearGradient8819" - gradientUnits="userSpaceOnUse" - x1="242.00729" - y1="206.01898" - x2="242.00729" - y2="207.75003" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4249" - id="radialGradient8821" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.6126938,0,0,0.95,-146.39552,11.1625)" - cx="238.9375" - cy="200.75" - fx="238.9375" - fy="200.75" - r="5" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4453" - id="linearGradient8823" - gradientUnits="userSpaceOnUse" - x1="241.47696" - y1="205" - x2="241.47696" - y2="207" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4383" - id="linearGradient8825" - gradientUnits="userSpaceOnUse" - x1="236.60001" - y1="212.5311" - x2="237.52275" - y2="220.51111" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4788" - id="radialGradient8827" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-4.5773323,2.0113271e-6,-1.4332119e-6,-3.2616709,1541.4256,225.34913)" - cx="326.0206" - cy="58" - fx="326.0206" - fy="58" - r="12.5" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="linearGradient3758" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-14,4)" - x1="213.42291" - y1="231.53627" - x2="209.17815" - y2="217.16422" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="linearGradient3760" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-14,4)" - x1="210.42291" - y1="227.53627" - x2="208.92815" - y2="221.03627" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2748" - id="radialGradient3762" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.9950172,-1.7234204,1.1254929,-0.6498033,7.41235,817.82855)" - cx="139.85194" - cy="260.93466" - fx="139.85194" - fy="260.93466" - r="112.59389" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2740" - id="linearGradient3764" - gradientUnits="userSpaceOnUse" - x1="147.5" - y1="353.40439" - x2="145.43736" - y2="404.6619" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3942" - id="linearGradient3766" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-4,80)" - x1="104.72572" - y1="314.39676" - x2="104.72572" - y2="289.55798" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3715" - id="linearGradient3768" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.9803676,2.25)" - x1="94.5" - y1="259.75" - x2="94.5" - y2="235.96713" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3861" - id="radialGradient3770" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.1774688,-1.1613176e-8,0,0.3560831,-177.83044,141.19514)" - cx="149.3125" - cy="348.38739" - fx="149.3125" - fy="348.38739" - r="105.3125" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4386" - id="radialGradient3772" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,-1.836066,1.6124238,0.8781949,-409.36596,115.94962)" - cx="45.125" - cy="253.25" - fx="45.125" - fy="253.25" - r="7.625" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4394" - id="radialGradient3774" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9435027,1.6341946,-1.4749495,0.8515625,384.2803,-374.48218)" - cx="253.5" - cy="252.875" - fx="253.5" - fy="252.875" - r="8" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3647" - id="linearGradient3776" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(3.9803676,72.25)" - x1="213.10431" - y1="170.25215" - x2="213.10431" - y2="168" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4264" - id="linearGradient3778" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.7499999,-346.69272,215.00002)" - x1="448.4375" - y1="235.99219" - x2="448.4375" - y2="240" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4264" - id="linearGradient3780" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.007664,0,0,0.7541425,-350.43832,216.04722)" - x1="440.875" - y1="227.9863" - x2="440.875" - y2="232.00002" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4264" - id="linearGradient3782" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.7398648,-346.93271,216.99327)" - x1="451.6875" - y1="241.94521" - x2="451.6875" - y2="246" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4264" - id="linearGradient3784" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.7499999,-346.62812,214.00002)" - x1="452.625" - y1="247.99777" - x2="452.625" - y2="252" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4264" - id="linearGradient3786" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.7636349,-346.70319,209.9822)" - x1="454" - y1="254.07143" - x2="454" - y2="258.00198" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4264" - id="linearGradient3788" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.5999993,-346.69272,252.0002)" - x1="451.25" - y1="260" - x2="451.25" - y2="265" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2703" - id="linearGradient3790" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.6363633,-346.69272,242.36374)" - x1="592.78613" - y1="253.99997" - x2="592.78613" - y2="264.99997" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2703" - id="linearGradient3792" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.6999999,-346.69272,226.60002)" - x1="591.43353" - y1="241.99364" - x2="591.43353" - y2="252.00058" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3675" - id="linearGradient3794" - gradientUnits="userSpaceOnUse" - x1="117.125" - y1="261" - x2="117.125" - y2="240.76007" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3796" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3798" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3800" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3802" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3804" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3806" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3808" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3810" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3812" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.979899" - inkscape:cx="206.03662" - inkscape:cy="-11.488279" - inkscape:document-units="px" - inkscape:current-layer="g2770" - showgrid="true" - inkscape:window-width="1200" - inkscape:window-height="798" - inkscape:window-x="366" - inkscape:window-y="70" - inkscape:window-maximized="0" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0"> - <inkscape:grid - type="xygrid" - id="grid5677" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" - originx="8.9073951" - originy="-140.94662" /> - </sodipodi:namedview> - <metadata - id="metadata4723"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(8.9073951,-771.41555)"> - <g - transform="matrix(0.43678839,0,0,0.43678839,-13.24745,760.22213)" - style="display:inline;enable-background:new" - id="g5060"> - <g - transform="matrix(0.8684452,0,0,0.8684452,42.04991,29.871449)" - id="g3573" - style="display:inline;enable-background:new"> - <path - style="display:inline;opacity:0.7;fill:none;stroke:url(#linearGradient3758);stroke-width:1.15148318;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4363);enable-background:new" - d="m 208.5,255 c -36.93504,-41.26382 27.92124,-15.92911 34,-28 6.60097,-13.10785 -120.39475,18.15576 -119.63782,-47.67157" - id="path4357" - sodipodi:nodetypes="css" - inkscape:connector-curvature="0" /> - <path - style="display:inline;opacity:0.7;fill:none;stroke:url(#linearGradient3760);stroke-width:0.57574159;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4353);enable-background:new" - d="m 208.5,255 c -36.93504,-41.26382 27.92124,-15.92911 34,-28 6.60097,-13.10785 -120.39475,18.15576 -119.63782,-47.67157" - id="path4323" - sodipodi:nodetypes="css" - inkscape:connector-curvature="0" /> - <g - id="g3569"> - <path - id="path4291" - d="m 150.5,175.375 c -1.80944,16.18787 3.57797,26.96266 12.53125,33.84375 8.95328,6.88109 21.33929,9.97794 33.65625,11.5 12.31696,1.52206 24.61016,1.44261 33.34375,1.8125 4.36679,0.18494 7.85588,0.49346 9.875,1.09375 1.00956,0.30014 1.60095,0.69442 1.78125,0.9375 0.1803,0.24308 0.21449,0.38792 -0.0937,1 -0.5676,1.12711 -1.88943,1.92802 -4.03125,2.4375 -2.14182,0.50948 -4.98306,0.67251 -8.125,0.65625 -6.28389,-0.0325 -13.813,-0.76309 -20.09375,-0.59375 -3.14038,0.0847 -5.97092,0.38298 -8.25,1.1875 -2.27908,0.80452 -4.09475,2.22183 -4.6875,4.40625 -0.59275,2.18442 0.001,4.85419 1.8125,8.25 1.81134,3.39581 4.88283,7.55678 9.53125,12.75 l 1.5,-1.3125 c -4.58534,-5.12274 -7.56231,-9.211 -9.25,-12.375 -1.68769,-3.164 -2.04477,-5.34946 -1.65625,-6.78125 0.38852,-1.43179 1.47822,-2.3819 3.40625,-3.0625 1.92803,-0.6806 4.61811,-0.98059 7.65625,-1.0625 6.07628,-0.16382 13.59915,0.56045 20.03125,0.59375 3.21605,0.0166 6.13826,-0.14209 8.5625,-0.71875 2.42424,-0.57666 4.45416,-1.60938 5.40625,-3.5 0.51688,-1.0264 0.50003,-2.21986 -0.125,-3.0625 -0.62503,-0.84264 -1.60421,-1.29702 -2.8125,-1.65625 -2.41658,-0.71845 -5.96364,-1.00067 -10.375,-1.1875 -8.82271,-0.37366 -21.00798,-0.31129 -33.15625,-1.8125 -12.14827,-1.50121 -24.21446,-4.58175 -32.6875,-11.09375 -8.47304,-6.512 -13.50101,-16.33486 -11.75,-32 l -2,-0.25 z" - style="display:inline;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - transform="translate(-14,4)" - sodipodi:nodetypes="cssssssssssssccsssssssssssscc" - clip-path="url(#clipPath4287)" - id="path4276" - d="m 164.25,169.375 c -1.80944,16.18787 3.57797,26.96266 12.53125,33.84375 8.95328,6.88109 21.33929,9.97794 33.65625,11.5 12.31696,1.52206 24.61016,1.44261 33.34375,1.8125 4.36679,0.18494 7.85588,0.49346 9.875,1.09375 1.00956,0.30014 1.60095,0.69442 1.78125,0.9375 0.1803,0.24308 0.21449,0.38792 -0.0937,1 -0.5676,1.12711 -1.88943,1.92802 -4.03125,2.4375 -2.14182,0.50948 -4.98306,0.67251 -8.125,0.65625 -6.28389,-0.0325 -13.813,-0.76309 -20.09375,-0.59375 -3.14038,0.0847 -5.97092,0.38298 -8.25,1.1875 -2.27908,0.80452 -4.09475,2.22183 -4.6875,4.40625 -0.59275,2.18442 0.001,4.85419 1.8125,8.25 1.81134,3.39581 2.13283,7.55678 6.78125,12.75 l 1.5,-1.3125 c -4.58534,-5.12274 -4.81231,-9.211 -6.5,-12.375 -1.68769,-3.164 -2.04477,-5.34946 -1.65625,-6.78125 0.38852,-1.43179 1.47822,-2.3819 3.40625,-3.0625 1.92803,-0.6806 4.61811,-0.98059 7.65625,-1.0625 6.07628,-0.16382 13.59915,0.56045 20.03125,0.59375 3.21605,0.0166 6.13826,-0.14209 8.5625,-0.71875 2.42424,-0.57666 4.45416,-1.60938 5.40625,-3.5 0.51688,-1.0264 0.50003,-2.21986 -0.125,-3.0625 -0.62503,-0.84264 -1.60421,-1.29702 -2.8125,-1.65625 -2.41658,-0.71845 -5.96364,-1.00067 -10.375,-1.1875 -8.82271,-0.37366 -21.00798,-0.31129 -33.15625,-1.8125 C 198.53923,211.21754 186.47304,208.137 178,201.625 c -8.47304,-6.512 -13.50101,-16.33486 -11.75,-32 l -2,-0.25 z" - style="display:inline;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter4293);enable-background:new" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(1,0,0,0.8539685,-2.0196324,-39.91456)" - d="m 52.84375,337.83008 a 2.1709114,2.1709114 0 0 0 -1.908203,1.13672 l -14.34375,26.5 A 2.1709114,2.1709114 0 0 0 38.5,368.66992 l 221.84375,0 a 2.1709114,2.1709114 0 0 0 1.89258,-3.23437 l -14.90625,-26.5 a 2.1709114,2.1709114 0 0 0 -1.89258,-1.10547 l -192.59375,0 z" - id="path3727" - style="display:inline;opacity:0.3;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3761);enable-background:new" - inkscape:original="M 52.84375 340 L 38.5 366.5 L 260.34375 366.5 L 245.4375 340 L 52.84375 340 z " - inkscape:radius="2.1706944" - sodipodi:type="inkscape:offset" /> - <path - transform="matrix(1.0044213,0,0,1,-2.6803063,-93.75)" - d="m 52.84375,337.83008 a 2.1709114,2.1709114 0 0 0 -1.908203,1.13672 l -14.34375,26.5 A 2.1709114,2.1709114 0 0 0 38.5,368.66992 l 221.84375,0 a 2.1709114,2.1709114 0 0 0 1.89258,-3.23437 l -14.90625,-26.5 a 2.1709114,2.1709114 0 0 0 -1.89258,-1.10547 l -192.59375,0 z" - id="path3091" - style="display:inline;opacity:0.72146116;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3865);enable-background:new" - inkscape:original="M 52.84375 340 L 38.5 366.5 L 260.34375 366.5 L 245.4375 340 L 52.84375 340 z " - inkscape:radius="2.1706944" - sodipodi:type="inkscape:offset" /> - <g - transform="translate(1.9803676,-137.75)" - clip-path="url(#clipPath3519)" - id="g3514" - style="display:inline;enable-background:new"> - <path - style="display:inline;fill:url(#radialGradient3762);fill-opacity:1;stroke:none;enable-background:new" - d="m 49.053018,377.91849 c -0.710706,0.0727 -1.339556,0.49196 -1.68004,1.12002 l -14.280335,26.38285 c -0.171895,0.32432 -0.254644,0.67287 -0.248894,1.02669 1.72e-4,0.0106 -3.28e-4,0.0205 0,0.0311 l 0,2.98673 0,0.31112 0.06222,0 c 0.04534,0.25962 0.109053,0.51286 0.248895,0.74669 0.388063,0.64889 1.079535,1.05365 1.835599,1.0578 l 220.862957,0 c 0.76537,0.002 1.4767,-0.39926 1.86671,-1.0578 0.13743,-0.23204 0.20572,-0.48851 0.2489,-0.74669 0.0487,-0.29136 0.0622,-0.87113 0.0622,-0.87113 l 0,-2.08449 c 0,-0.49198 -0.0355,-0.98746 -0.28001,-1.43115 L 242.9109,379.0074 c -0.38858,-0.68003 -1.11464,-1.09662 -1.89783,-1.08891 l -191.742269,0 c -0.07255,-0.004 -0.145236,-0.004 -0.217783,0 z" - id="path3928" - sodipodi:nodetypes="cccsccccsccsscsccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3523);enable-background:new" - d="m 32.84375,407.84375 0,1.625 0,0.3125 0.0625,0 c 0.04533,0.25962 0.11016,0.51617 0.25,0.75 0.38805,0.64888 1.08768,1.05835 1.84375,1.0625 l 220.84375,0 c 0.7654,0.002 1.48499,-0.40396 1.875,-1.0625 0.13741,-0.23205 0.20682,-0.49182 0.25,-0.75 0.0487,-0.29136 0.0625,-0.875 0.0625,-0.875 l 0,-1.0625 c -0.40966,0.50416 -1.02665,0.81401 -1.6875,0.8125 l -221.84375,0 c -0.65281,-0.004 -1.25015,-0.31528 -1.65625,-0.8125 z" - id="path3968" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3764);fill-opacity:1;stroke:none;enable-background:new" - d="m 49.053018,377.91849 c -0.710706,0.0727 -1.339556,0.49196 -1.68004,1.12002 l -14.280335,26.38285 c -0.171895,0.32432 -0.254644,0.67287 -0.248894,1.02669 1.72e-4,0.0106 -3.28e-4,0.0205 0,0.0311 l 0,2.98673 0,0.31112 0.06222,0 c 0.04534,0.25962 0.109053,0.51286 0.248895,0.74669 0.388063,0.64889 1.079535,1.05365 1.835599,1.0578 l 220.862957,0 c 0.76537,0.002 1.4767,-0.39926 1.86671,-1.0578 0.13743,-0.23204 0.20572,-0.48851 0.2489,-0.74669 0.0487,-0.29136 0.0622,-0.87113 0.0622,-0.87113 l 0,-2.08449 c 0,-0.49198 -0.0355,-0.98746 -0.28001,-1.43115 L 242.9109,379.0074 c -0.38858,-0.68003 -1.11464,-1.09662 -1.89783,-1.08891 l -191.742269,0 c -0.07255,-0.004 -0.145236,-0.004 -0.217783,0 z" - id="path2729" - sodipodi:nodetypes="cccsccccsccsscsccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:none;stroke:url(#linearGradient3766);stroke-width:2.5;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.3612;stroke-opacity:1;filter:url(#filter3952);enable-background:new" - d="m 48.625,376.63664 c -0.713862,0.0731 -1.345504,0.49415 -1.6875,1.125 l -14.34375,27.70711 c -0.172659,0.32577 -0.255775,0.67586 -0.25,1.03125 1.73e-4,0.0106 -3.29e-4,0.0206 0,0.0312 l 0,3 0,0.3125 0.0625,0 c 0.04554,0.26077 0.109537,0.51513 0.25,0.75 0.389786,0.65177 1.084329,1.05833 1.84375,1.0625 l 221.84375,0 c 0.76877,0.002 1.48326,-0.40103 1.875,-1.0625 0.13804,-0.23307 0.20663,-0.49068 0.25,-0.75 0.0489,-0.29266 0.0625,-0.875 0.0625,-0.875 l 0,-2.09375 c 0,-0.49416 -0.0356,-0.99184 -0.28125,-1.4375 l -14.90625,-27.70711 c -0.3903,-0.68305 -1.11959,-1.10149 -1.90625,-1.09375 l -192.59375,0 c -0.07287,-0.004 -0.14588,-0.004 -0.21875,0 z" - id="path3926" - sodipodi:nodetypes="cccsccccsccsscsccccc" - clip-path="none" - inkscape:connector-curvature="0" /> - </g> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc" - id="path3125" - d="m 56.105368,241.25 -12.5,24.3125 134.875002,-0.0303 -3.53125,-24.28215 -32.21875,0 -0.0312,3.88515 -3.28125,0 0.1875,-3.88515 -32.21875,0 -0.75,3.88515 -3.28125,0.0303 0.71875,-3.9155 -32.093752,0 -1.40625,3.9155 -7.6875,-0.0303 1.40625,-3.88515 -8.1875,0 z m 123.718752,0 1.9375,12.31422 26.125,0 -3.65625,-12.31422 -24.40625,0 z m 27.46875,3.88515 7,20.397 36.6875,0 -10.75,-20.397 -32.9375,0 z m -15.875,11.65542 0.6875,3.88515 -8.59375,0 0.875,4.85643 27.46875,0 -1.71875,-4.85643 -8.8125,0 -1.09375,-3.88515 -8.8125,0 z" - style="display:inline;opacity:0.93150689;fill:url(#linearGradient3768);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccc" - id="path3929" - d="m 41.980368,266.25 137.500002,-0.0312 -4.53125,-24.96875 3.53125,24.28125 -134.875002,0.0312 12.5,-24.3125 -14.125,25 z m 27.65625,-21.09375 0.9375,0 1.40625,-3.90625 -2.34375,3.90625 z m 36.500002,-0.0312 0.5,0 0.75,-3.875 -1.25,3.875 z m 36.53125,-3.1875 -0.0312,3.1875 0.0625,0 0.0312,-3.1875 -0.0625,0 z m 61.5625,-0.6875 3.65625,12.3125 -26.125,0.002 0.53125,0.68578 26.53125,0 -4.59375,-13 z m 36,3.88515 10.75,20.3961 -36.6875,9e-4 1.0625,0.6866 37.25,0 -12.375,-21.0836 z m -40,11.65542 1.09375,3.89693 0.65625,0 -1.75,-3.89693 z m 9.90625,3.88515 1.71875,4.85553 -27.46875,9e-4 0.59375,0.6866 27.875,0 -2.71875,-5.54303 z" - style="display:inline;fill:url(#radialGradient3770);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3964);enable-background:new" - inkscape:connector-curvature="0" /> - <path - id="path4382" - d="m 51.230368,242 -14.25,27" - style="display:inline;fill:none;stroke:url(#radialGradient3772);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4506);enable-background:new" - inkscape:connector-curvature="0" /> - <path - id="path4384" - d="m 242.98037,242 15,26.25" - style="display:inline;fill:none;stroke:url(#radialGradient3774);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4450);enable-background:new" - inkscape:connector-curvature="0" /> - <g - style="display:inline;opacity:0.36529679;enable-background:new" - transform="translate(3.9803676,82.25)" - clip-path="url(#clipPath3599)" - id="g3595"> - <path - style="display:inline;fill:#888a85;fill-opacity:1;stroke:none;enable-background:new" - d="m 208.28125,157.9375 c -0.008,0.10327 -0.005,0.2131 0.0312,0.3125 l 1.09375,3.0625 c 0.10951,0.28392 0.3832,0.47053 0.6875,0.46875 l 2,0 c 0.23532,-0.002 0.45756,-0.12059 0.59375,-0.3125 0.1362,-0.19191 0.16975,-0.43353 0.0937,-0.65625 l -1.03125,-2.875 -3.46875,0 z m 7.96875,0 c -0.0101,0.11643 0.0164,0.23327 0.0625,0.34375 l 1.28125,3.0625 c 0.11937,0.27165 0.39086,0.44442 0.6875,0.4375 l 2,0 c 0.24322,0.002 0.45595,-0.11207 0.59375,-0.3125 0.1378,-0.20044 0.18268,-0.46111 0.0937,-0.6875 l -1.1875,-2.84375 -3.53125,0 z m 8.03125,0 c -0.0114,0.12934 0.005,0.25506 0.0625,0.375 l 1.53125,3.0625 c 0.12384,0.24906 0.3781,0.40646 0.65625,0.40625 l 2,0 c 0.24601,-0.004 0.46165,-0.13617 0.59375,-0.34375 0.13209,-0.20758 0.16299,-0.46291 0.0625,-0.6875 l -1.40625,-2.8125 -3.5,0 z" - id="path3593" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3643);enable-background:new" - d="m 209.84375,158.46875 1.09375,3.0625 2,0 -1.09375,-3.0625 -2,0 z m 8,0 1.28125,3.0625 2,0 -1.28125,-3.0625 -2,0 z m 8,0 1.53125,3.0625 2,0 -1.53125,-3.0625 -2,0 z" - id="path3591" - inkscape:connector-curvature="0" /> - </g> - <path - id="rect3568" - d="m 212.79287,240.25 1.09375,3.0625 2,0 -1.09375,-3.0625 -2,0 z m 8,0 1.28125,3.0625 2,0 -1.28125,-3.0625 -2,0 z m 8,0 1.53125,3.0625 2,0 -1.53125,-3.0625 -2,0 z" - style="display:inline;fill:url(#linearGradient3776);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <g - transform="translate(-2.0196324,-97.75)" - style="display:inline;fill:#555753;enable-background:new" - id="g4538"> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="1.0054175" - inkscape:original="M 34.8125 272 C 34.310552 272 33.76639 272.33807 33.59375 272.75 C 33.593751 272.75 32.9375 274.25 32.9375 274.25 C 32.761851 274.66909 33.05377 275 33.5625 275 C 33.562501 275 38.15625 275 38.15625 275 C 38.66503 275 39.18016 274.66909 39.34375 274.25 C 39.343749 274.25 39.9375 272.75 39.9375 272.75 C 40.098291 272.33807 39.81445 272 39.3125 272 C 39.312501 272 34.8125 272 34.8125 272 z M 42.9375 272 C 42.43556 272 41.9074 272.33807 41.75 272.75 C 41.750001 272.75 41.1875 274.25 41.1875 274.25 C 41.027361 274.66909 41.30373 275 41.8125 275 C 41.8125 275 46.40625 275 46.40625 275 C 46.915022 275 47.44567 274.66909 47.59375 274.25 C 47.593751 274.25 48.125 272.75 48.125 272.75 C 48.270551 272.33807 47.9707 272 47.46875 272 C 47.468749 272 42.9375 272 42.9375 272 z M 51.09375 272 C 50.591808 272 50.07967 272.33807 49.9375 272.75 C 49.937501 272.75 49.4375 274.25 49.4375 274.25 C 49.29285 274.66909 49.58497 275 50.09375 275 C 50.093748 275 54.6875 275 54.6875 275 C 55.196281 275 55.71115 274.66909 55.84375 274.25 C 55.84375 274.25 56.3125 272.75 56.3125 272.75 C 56.442821 272.33807 56.12694 272 55.625 272 C 55.625 272 51.09375 272 51.09375 272 z M 59.25 272 C 58.748049 272 58.25193 272.33807 58.125 272.75 C 58.125001 272.75 57.65625 274.25 57.65625 274.25 C 57.527101 274.66909 57.83498 275 58.34375 275 C 58.343751 275 62.9375 275 62.9375 275 C 63.446279 275 63.9454 274.66909 64.0625 274.25 C 64.062497 274.25 64.5 272.75 64.5 272.75 C 64.615089 272.33807 64.28319 272 63.78125 272 C 63.781252 272 59.25 272 59.25 272 z M 67.40625 272 C 66.904301 272 66.4242 272.33807 66.3125 272.75 C 66.312497 272.75 65.90625 274.25 65.90625 274.25 C 65.792599 274.66909 66.11622 275 66.625 275 C 66.625003 275 71.21875 275 71.21875 275 C 71.72752 275 72.21091 274.66909 72.3125 274.25 C 72.312502 274.25 72.65625 272.75 72.65625 272.75 C 72.756153 272.33807 72.43945 272 71.9375 272 C 71.937496 272 67.40625 272 67.40625 272 z M 75.5625 272 C 75.060553 272 74.59647 272.33807 74.5 272.75 C 74.499999 272.75 74.125 274.25 74.125 274.25 C 74.026799 274.66909 74.36622 275 74.875 275 C 74.875001 275 79.46875 275 79.46875 275 C 79.977541 275 80.44515 274.66909 80.53125 274.25 C 80.531253 274.25 80.84375 272.75 80.84375 272.75 C 80.928349 272.33807 80.59571 271.99999 80.09375 272 C 80.093754 272.00001 75.5625 272 75.5625 272 z M 83.71875 272 C 83.216808 272 82.7375 272.33807 82.65625 272.75 C 82.65625 272.75 82.375 274.25 82.375 274.25 C 82.292298 274.66909 82.64747 275 83.15625 275 C 83.156254 275 87.75 275 87.75 275 C 88.258771 275 88.71065 274.66909 88.78125 274.25 C 88.781254 274.25 89.03125 272.75 89.03125 272.75 C 89.100653 272.33807 88.75195 272 88.25 272 C 88.25 272 83.71875 272 83.71875 272 z M 91.875 272 C 91.37307 272 90.90976 272.33807 90.84375 272.75 C 90.843749 272.75 90.625 274.25 90.625 274.25 C 90.557801 274.66909 90.89747 275 91.40625 275 C 91.406252 275 96 275 96 275 C 96.508777 275 96.97614 274.66909 97.03125 274.25 C 97.031246 274.25 97.21875 272.75 97.21875 272.75 C 97.272949 272.33807 96.90819 272 96.40625 272 C 96.406247 272 91.875 272 91.875 272 z M 100.03125 272 C 99.529314 272 99.08203 272.33807 99.03125 272.75 C 99.031253 272.75 98.84375 274.25 98.84375 274.25 C 98.792051 274.66909 99.17874 275 99.6875 275 C 99.687497 275 104.28125 275 104.28125 275 C 104.79002 275 105.21039 274.66909 105.25 274.25 C 105.25 274.25 105.40625 272.75 105.40625 272.75 C 105.44515 272.33806 105.06444 272 104.5625 272 C 104.5625 272 100.03125 272 100.03125 272 z M 108.1875 272 C 107.68555 272.00001 107.25429 272.33807 107.21875 272.75 C 107.21875 272.75 107.09375 274.25 107.09375 274.25 C 107.05755 274.66909 107.42872 275 107.9375 275 C 107.9375 275 112.53125 275 112.53125 275 C 113.04003 275 113.47589 274.66909 113.5 274.25 C 113.5 274.25 113.59375 272.75 113.59375 272.75 C 113.61745 272.33807 113.22071 272 112.71875 272 C 112.71875 272 108.1875 272 108.1875 272 z M 116.34375 272 C 115.84181 272 115.42657 272.33806 115.40625 272.75 C 115.40625 272.75 115.3125 274.25 115.3125 274.25 C 115.2918 274.66909 115.70998 275 116.21875 275 C 116.21875 275 120.8125 275 120.8125 275 C 121.32129 275 121.71014 274.66909 121.71875 274.25 C 121.71875 274.25 121.75 272.75 121.75 272.75 C 121.758 272.33807 121.37696 272 120.875 272 C 120.875 272 116.34375 272 116.34375 272 z M 124.5 272 C 123.99806 272 123.59883 272.33807 123.59375 272.75 C 123.59375 272.75 123.5625 274.25 123.5625 274.25 C 123.5575 274.66909 123.95997 275 124.46875 275 C 124.46875 275 129.0625 275 129.0625 275 C 129.57126 275 129.97564 274.66909 129.96875 274.25 C 129.96875 274.25 129.9375 272.75 129.9375 272.75 C 129.9305 272.33807 129.53319 272.00001 129.03125 272 C 129.03126 272 124.5 272 124.5 272 z M 132.65625 272 C 132.15431 272 131.73984 272.33807 131.75 272.75 C 131.75001 272.75 131.8125 274.25 131.8125 274.25 C 131.8228 274.66909 132.24122 275 132.75 275 C 132.75 275 137.3125 275 137.3125 275 C 137.82128 275 138.24114 274.66909 138.21875 274.25 C 138.21875 274.25 138.125 272.75 138.125 272.75 C 138.10299 272.33807 137.68944 271.99999 137.1875 272 C 137.1875 272.00001 132.65625 272 132.65625 272 z M 140.8125 272 C 140.31054 272 139.91211 272.33807 139.9375 272.75 C 139.9375 272.75 140.03125 274.25 140.03125 274.25 C 140.05705 274.66909 140.49123 275 141 275 C 141 275 152.9375 275 152.9375 275 C 153.44627 275 153.80166 274.66909 153.75 274.25 C 153.75 274.25 153.59375 272.75 153.59375 272.75 C 153.54294 272.33807 153.09569 272.00001 152.59375 272 C 152.59375 272 140.8125 272 140.8125 272 z M 161.65625 272 C 161.15431 272 160.77943 272.33806 160.84375 272.75 C 160.84375 272.75 161.09375 274.25 161.09375 274.25 C 161.15915 274.66909 161.61622 275 162.125 275 C 162.125 275 166.71875 275 166.71875 275 C 167.22753 275 167.5775 274.66909 167.5 274.25 C 167.50001 274.25 167.21875 272.75 167.21875 272.75 C 167.14255 272.33807 166.68945 272 166.1875 272 C 166.1875 272 161.65625 272 161.65625 272 z M 169.8125 272 C 169.31054 272 168.95169 272.33807 169.03125 272.75 C 169.03125 272.75 169.3125 274.25 169.3125 274.25 C 169.3934 274.66909 169.86622 275 170.375 275 C 170.375 275 174.96875 275 174.96875 275 C 175.47752 275 175.81174 274.66909 175.71875 274.25 C 175.71874 274.25 175.40625 272.75 175.40625 272.75 C 175.31485 272.33807 174.81444 272.00001 174.3125 272 C 174.31251 272 169.8125 272 169.8125 272 z M 177.9375 272 C 177.43555 272 177.12397 272.33807 177.21875 272.75 C 177.21875 272.75 177.5625 274.25 177.5625 274.25 C 177.6589 274.66909 178.14748 275 178.65625 275 C 178.65625 275 183.25 275 183.25 275 C 183.75877 275 184.07724 274.66909 183.96875 274.25 C 183.96874 274.25 183.59375 272.75 183.59375 272.75 C 183.48711 272.33807 182.97069 272 182.46875 272 C 182.46874 272 177.9375 272 177.9375 272 z M 188.8125 272 C 188.31055 272.00001 188.00991 272.33807 188.125 272.75 C 188.125 272.75 188.53125 274.25 188.53125 274.25 C 188.64835 274.66909 189.17872 275 189.6875 275 C 189.68749 275 194.28125 275 194.28125 275 C 194.79003 275 195.06665 274.66909 194.9375 274.25 C 194.9375 274.25 194.5 272.75 194.5 272.75 C 194.37305 272.33806 193.8457 272 193.34375 272 C 193.34375 272 188.8125 272 188.8125 272 z M 196.96875 272 C 196.46681 272 196.18217 272.33806 196.3125 272.75 C 196.3125 272.75 196.78125 274.25 196.78125 274.25 C 196.91385 274.66909 197.42872 275 197.9375 275 C 197.9375 275 202.53125 275 202.53125 275 C 203.04003 275 203.33215 274.66909 203.1875 274.25 C 203.1875 274.25 202.65625 272.75 202.65625 272.75 C 202.51408 272.33807 202.00195 272 201.5 272 C 201.49999 272 196.96875 272 196.96875 272 z M 205.125 272 C 204.62304 272 204.35443 272.33807 204.5 272.75 C 204.5 272.75 205.03125 274.25 205.03125 274.25 C 205.17934 274.66909 205.70998 275 206.21875 275 C 206.21874 275 210.8125 275 210.8125 275 C 211.32129 275 211.59765 274.66909 211.4375 274.25 C 211.4375 274.25 210.84375 272.75 210.84375 272.75 C 210.68634 272.33807 210.15819 272 209.65625 272 C 209.65626 272 205.125 272 205.125 272 z M 213.28125 272 C 212.7793 272 212.49545 272.33807 212.65625 272.75 C 212.65626 272.75 213.25 274.25 213.25 274.25 C 213.41361 274.66909 213.95997 275 214.46875 275 C 214.46875 275 219.0625 275 219.0625 275 C 219.57127 275 219.8319 274.66909 219.65625 274.25 C 219.65625 274.25 219.03125 272.75 219.03125 272.75 C 218.8586 272.33807 218.31444 272.00001 217.8125 272 C 217.81249 272 213.28125 272 213.28125 272 z M 31.03125 280 C 30.508242 280 29.93747 280.33823 29.75 280.75 C 29.750001 280.75 29.0625 282.25 29.0625 282.25 C 28.871622 282.66924 29.15705 283 29.6875 283 C 29.687502 283 41.15625 283 41.15625 283 C 41.686679 283 42.24157 282.66924 42.40625 282.25 C 42.406248 282.25 43 280.75 43 280.75 C 43.161739 280.33823 42.86675 280 42.34375 280 C 42.34375 280 31.03125 280 31.03125 280 z M 46.125 280 C 45.601991 280 45.06432 280.33823 44.90625 280.75 C 44.906249 280.75 44.3125 282.25 44.3125 282.25 C 44.151558 282.66924 44.46957 283 45 283 C 44.999995 283 49.78125 283 49.78125 283 C 50.311682 283 50.85217 282.66924 51 282.25 C 50.999998 282.25 51.53125 280.75 51.53125 280.75 C 51.676452 280.33823 51.36676 280 50.84375 280 C 50.843748 280 46.125 280 46.125 280 z M 54.625 280 C 54.101996 280 53.57902 280.33823 53.4375 280.75 C 53.437497 280.75 52.90625 282.25 52.90625 282.25 C 52.762161 282.66924 53.06332 283 53.59375 283 C 53.593751 283 58.40625 283 58.40625 283 C 58.93668 283 59.46276 282.66924 59.59375 282.25 C 59.593747 282.25 60.0625 280.75 60.0625 280.75 C 60.191161 280.33823 59.86676 280 59.34375 280 C 59.34375 280 54.625 280 54.625 280 z M 63.125 280 C 62.60199 280 62.06249 280.33823 61.9375 280.75 C 61.937501 280.75 61.5 282.25 61.5 282.25 C 61.37275 282.66924 61.68832 283 62.21875 283 C 62.218746 283 67 283 67 283 C 67.530425 283 68.07335 282.66924 68.1875 282.25 C 68.187502 282.25 68.59375 280.75 68.59375 280.75 C 68.70587 280.33823 68.36675 280 67.84375 280 C 67.843749 280 63.125 280 63.125 280 z M 71.625 280 C 71.101995 280 70.57719 280.33823 70.46875 280.75 C 70.468753 280.75 70.09375 282.25 70.09375 282.25 C 69.983342 282.66924 70.31333 283 70.84375 283 C 70.843749 283 75.625 283 75.625 283 C 76.15542 283 76.65269 282.66924 76.75 282.25 C 76.750001 282.25 77.125 280.75 77.125 280.75 C 77.220599 280.33823 76.86676 280 76.34375 280 C 76.343751 280 71.625 280 71.625 280 z M 80.125 280 C 79.601999 280 79.0919 280.33823 79 280.75 C 78.999999 280.75 78.65625 282.25 78.65625 282.25 C 78.562654 282.66924 78.93833 283 79.46875 283 C 79.46875 283 84.25 283 84.25 283 C 84.780422 283 85.26329 282.66924 85.34375 282.25 C 85.343752 282.25 85.625 280.75 85.625 280.75 C 85.704002 280.33823 85.36676 280 84.84375 280 C 84.843752 280 80.125 280 80.125 280 z M 88.625 280 C 88.101992 280 87.60661 280.33823 87.53125 280.75 C 87.531252 280.75 87.25 282.25 87.25 282.25 C 87.173302 282.66924 87.53208 283 88.0625 283 C 88.062502 283 92.875 283 92.875 283 C 93.405422 283 93.87388 282.66924 93.9375 282.25 C 93.937502 282.25 94.15625 280.75 94.15625 280.75 C 94.218752 280.33823 93.86675 280 93.34375 280 C 93.343752 280 88.625 280 88.625 280 z M 97.09375 280 C 96.570742 280 96.1213 280.33823 96.0625 280.75 C 96.062502 280.75 95.84375 282.25 95.84375 282.25 C 95.783852 282.66924 96.15708 283 96.6875 283 C 96.687502 283 101.46875 283 101.46875 283 C 101.99917 283 102.48446 282.66925 102.53125 282.25 C 102.53125 282.25 102.6875 280.75 102.6875 280.75 C 102.7334 280.33821 102.36676 280 101.84375 280 C 101.84375 280 97.09375 280 97.09375 280 z M 105.59375 280 C 105.07075 280 104.63602 280.33823 104.59375 280.75 C 104.59375 280.75 104.4375 282.25 104.4375 282.25 C 104.3945 282.66924 104.78207 283 105.3125 283 C 105.3125 283 110.09375 283 110.09375 283 C 110.62419 283 111.06381 282.66925 111.09375 282.25 C 111.09376 282.25 111.21875 280.75 111.21875 280.75 C 111.24814 280.33823 110.83551 280 110.3125 280 C 110.3125 280 105.59375 280 105.59375 280 z M 114.09375 280 C 113.57074 280 113.15073 280.33822 113.125 280.75 C 113.125 280.74999 113.03125 282.25 113.03125 282.25 C 113.00504 282.66925 113.40707 283 113.9375 283 C 113.9375 283 118.71875 283 118.71875 283 C 119.24918 283 119.6744 282.66924 119.6875 282.25 C 119.68751 282.25 119.75 280.75 119.75 280.75 C 119.7629 280.33823 119.3355 280 118.8125 280 C 118.8125 280 114.09375 280 114.09375 280 z M 122.59375 280 C 122.07074 280 121.63419 280.33823 121.625 280.75 C 121.625 280.75 121.59375 282.25 121.59375 282.25 C 121.58474 282.66925 122.00082 283 122.53125 283 C 122.53125 283 127.34375 283 127.34375 283 C 127.87418 283 128.28499 282.66924 128.28125 282.25 C 128.28124 282.25 128.28125 280.75 128.28125 280.75 C 128.27724 280.33823 127.83551 280 127.3125 280 C 127.3125 280 122.59375 280 122.59375 280 z M 131.09375 280 C 130.57074 280 130.1489 280.33823 130.15625 280.75 C 130.15625 280.75 130.1875 282.25 130.1875 282.25 C 130.19449 282.66924 130.62582 283 131.15625 283 C 131.15624 283 135.9375 283 135.9375 283 C 136.46792 283 136.89559 282.66924 136.875 282.25 C 136.87499 282.25 136.78125 280.75 136.78125 280.75 C 136.76103 280.33823 136.33551 280 135.8125 280 C 135.81248 280 131.09375 280 131.09375 280 z M 139.59375 280 C 139.07072 280 138.66361 280.33823 138.6875 280.75 C 138.68748 280.75 138.78125 282.25 138.78125 282.25 C 138.80554 282.66924 139.25082 283 139.78125 283 L 154.125 283 C 154.65542 283 155.05614 282.66924 155 282.25 C 154.99999 282.25 154.78125 280.75 154.78125 280.75 C 154.72614 280.33823 154.273 280 153.75 280 L 139.59375 280 z M 191.5 280 C 190.97699 280 190.65626 280.33823 190.78125 280.75 C 190.78124 280.75 191.25 282.25 191.25 282.25 C 191.37724 282.66924 191.90708 283 192.4375 283 C 192.43748 283 197.21875 283 197.21875 283 C 197.74916 283 198.07785 282.66924 197.9375 282.25 C 197.9375 282.25 197.4375 280.75 197.4375 280.75 C 197.29964 280.33823 196.74176 280 196.21875 280 C 196.21875 280 191.5 280 191.5 280 z M 200 280 C 199.47697 280 199.17098 280.33823 199.3125 280.75 C 199.31249 280.75 199.84375 282.25 199.84375 282.25 C 199.98782 282.66924 200.53208 283 201.0625 283 C 201.06248 283 205.84375 283 205.84375 283 C 206.37416 283 206.6572 282.66925 206.5 282.25 C 206.49999 282.25 205.9375 280.75 205.9375 280.75 C 205.78311 280.33823 205.24175 280 204.71875 280 C 204.71874 280 200 280 200 280 z M 208.5 280 C 207.97698 280 207.68568 280.33822 207.84375 280.75 C 207.84374 280.74999 208.4375 282.25 208.4375 282.25 C 208.59844 282.66925 209.15708 283 209.6875 283 C 209.68748 283 214.46875 283 214.46875 283 C 214.99916 283 215.26778 282.66925 215.09375 282.25 C 215.09374 282.25 214.46875 280.75 214.46875 280.75 C 214.29781 280.33823 213.74176 280 213.21875 280 C 213.21875 280 208.5 280 208.5 280 z M 218.875 284 C 218.34079 284 218.0678 284.31161 218.25 284.6875 C 218.25 284.68749 220.96875 290.28125 220.96875 290.28125 C 221.16347 290.68127 221.7585 291 222.3125 291 C 222.3125 291 227.3125 291 227.3125 291 C 227.86648 291 228.14567 290.68128 227.9375 290.28125 C 227.93751 290.28124 225.03125 284.6875 225.03125 284.6875 C 224.83564 284.3116 224.22172 284 223.6875 284 C 223.6875 284 218.875 284 218.875 284 z M 26.78125 288 C 26.235341 288 25.64179 288.3384 25.4375 288.75 C 25.4375 288.75 24.6875 290.25 24.6875 290.25 C 24.479329 290.66941 24.75848 291 25.3125 291 C 25.3125 291 34.3125 291 34.3125 291 C 34.866502 291 35.47053 290.66941 35.65625 290.25 C 35.656249 290.25 36.3125 288.75 36.3125 288.75 C 36.494762 288.3384 36.20217 288 35.65625 288 C 35.656249 288 26.78125 288 26.78125 288 z M 39.59375 288 C 39.04784 288 38.4595 288.3384 38.28125 288.75 C 38.281248 288.75 37.625 290.25 37.625 290.25 C 37.443361 290.66941 37.7585 291 38.3125 291 C 38.312502 291 45.3125 291 45.3125 291 C 45.866502 291 46.43048 290.66941 46.59375 290.25 C 46.593752 290.25 47.1875 288.75 47.1875 288.75 C 47.347728 288.3384 47.04591 288 46.5 288 C 46.499998 288 39.59375 288 39.59375 288 z M 50.4375 288 C 49.89158 288 49.31248 288.3384 49.15625 288.75 C 49.156248 288.75 48.59375 290.25 48.59375 290.25 C 48.434559 290.66941 48.7585 291 49.3125 291 C 49.312502 291 57.3125 291 57.3125 291 C 57.866502 291 58.42372 290.66941 58.5625 290.25 C 58.562499 290.25 59.0625 288.75 59.0625 288.75 C 59.198698 288.3384 58.85841 288 58.3125 288 C 58.312501 288 50.4375 288 50.4375 288 z M 62.25 288 C 61.70409 288 61.16344 288.3384 61.03125 288.75 C 61.031249 288.75 60.5625 290.25 60.5625 290.25 C 60.427812 290.66941 60.7585 291 61.3125 291 C 61.312502 291 110.3125 291 110.3125 291 C 110.8665 291 111.34438 290.66941 111.375 290.25 C 111.375 290.25 111.46875 288.75 111.46875 288.75 C 111.49875 288.3384 111.07716 287.99999 110.53125 288 C 110.53125 288.00001 62.25 288 62.25 288 z M 114.46875 288 C 113.92284 288 113.46354 288.3384 113.4375 288.75 C 113.4375 288.75 113.34375 290.25 113.34375 290.25 C 113.31725 290.66941 113.75849 291 114.3125 291 C 114.3125 291 122.3125 291 122.3125 291 C 122.86651 291 123.30637 290.66941 123.3125 290.25 C 123.3125 290.25 123.34375 288.75 123.34375 288.75 C 123.34975 288.3384 122.92092 288 122.375 288 C 122.375 288 114.46875 288 114.46875 288 z M 126.3125 288 C 125.76659 288 125.31451 288.3384 125.3125 288.75 C 125.3125 288.75 125.3125 290.25 125.3125 290.25 C 125.3105 290.66941 125.75851 291 126.3125 291 C 126.3125 291 133.3125 291 133.3125 291 C 133.86651 291 134.29758 290.66941 134.28125 290.25 C 134.28124 290.25 134.21875 288.75 134.21875 288.75 C 134.20275 288.3384 133.76468 288 133.21875 288 C 133.21876 288 126.3125 288 126.3125 288 z M 137.15625 288 C 136.61034 288 136.16747 288.3384 136.1875 288.75 C 136.1875 288.75 136.28125 290.25 136.28125 290.25 C 136.30138 290.66941 136.7585 291 137.3125 291 C 137.3125 291 144.3125 291 144.3125 291 C 144.86651 291 145.28878 290.66941 145.25 290.25 C 145.25 290.25 145.09375 288.75 145.09375 288.75 C 145.05574 288.3384 144.57716 288 144.03125 288 C 144.03124 288 137.15625 288 137.15625 288 z M 148 288 C 147.45409 288 147.02044 288.3384 147.0625 288.75 C 147.0625 288.75 147.21875 290.25 147.21875 290.25 C 147.2616 290.66941 147.7585 291 148.3125 291 C 148.3125 291 155.3125 291 155.3125 291 C 155.8665 291 156.24873 290.66941 156.1875 290.25 C 156.1875 290.25 155.96875 288.75 155.96875 288.75 C 155.90864 288.3384 155.4209 288.00001 154.875 288 C 154.875 288 148 288 148 288 z M 164.75 288 C 164.20408 288 163.79889 288.33839 163.875 288.75 C 163.87501 288.75 164.15625 290.25 164.15625 290.25 C 164.23382 290.66941 164.7585 291 165.3125 291 C 165.3125 291 170.3125 291 170.3125 291 C 170.86651 291 171.24809 290.66941 171.15625 290.25 C 171.15624 290.25 170.8125 288.75 170.8125 288.75 C 170.72241 288.3384 170.20217 288 169.65625 288 C 169.65625 288 164.75 288 164.75 288 z M 173.59375 288 C 173.04784 288 172.68711 288.3384 172.78125 288.75 C 172.78125 288.75 173.125 290.25 173.125 290.25 C 173.22092 290.66941 173.7585 291 174.3125 291 C 174.3125 291 179.3125 291 179.3125 291 C 179.86648 291 180.20396 290.66941 180.09375 290.25 C 180.09375 290.25 179.71875 288.75 179.71875 288.75 C 179.61059 288.3384 179.07715 288.00001 178.53125 288 C 178.53125 288 173.59375 288 173.59375 288 z M 182.46875 288 C 181.92283 288 181.57533 288.3384 181.6875 288.75 C 181.68751 288.75 182.09375 290.25 182.09375 290.25 C 182.20803 290.66941 182.7585 291 183.3125 291 C 183.3125 291 188.3125 291 188.3125 291 C 188.86648 291 189.19108 290.66941 189.0625 290.25 C 189.0625 290.25 188.625 288.75 188.625 288.75 C 188.49882 288.3384 187.95216 288 187.40625 288 C 187.40625 288 182.46875 288 182.46875 288 z M 194.3125 288 C 193.7666 288.00001 193.4263 288.3384 193.5625 288.75 C 193.5625 288.75 194.0625 290.25 194.0625 290.25 C 194.20127 290.66941 194.7585 291 195.3125 291 C 195.3125 291 209.3125 291 209.3125 291 C 209.86651 291 210.17143 290.66941 210 290.25 C 210.00001 290.25 209.375 288.75 209.375 288.75 C 209.20676 288.3384 208.63967 288 208.09375 288 C 208.09375 288 194.3125 288 194.3125 288 z M 212.03125 288 C 211.48533 288 211.20274 288.3384 211.375 288.75 C 211.375 288.75 212 290.25 212 290.25 C 212.17552 290.66941 212.7585 291 213.3125 291 C 213.3125 291 218.3125 291 218.3125 291 C 218.86651 291 219.15855 290.66941 218.96875 290.25 C 218.96875 290.25 218.28125 288.75 218.28125 288.75 C 218.09499 288.3384 217.51466 288 216.96875 288 C 216.96875 288 212.03125 288 212.03125 288 z " - style="display:inline;fill:#555753;fill-opacity:1;stroke:none;enable-background:new" - id="path4059" - d="m 34.8125,270.99414 c -0.953391,0 -1.758528,0.4415 -2.146484,1.36719 l -0.650391,1.48633 a 1.005518,1.005518 0 0 0 -0.0059,0.0137 c -0.201043,0.47968 -0.1404,1.14923 0.216796,1.57031 0.357197,0.42108 0.863577,0.57422 1.335938,0.57422 l 4.59375,0 c 0.943224,0 1.763774,-0.47151 2.123047,-1.38672 l 0.002,-0.002 0.05469,-0.14063 c 0.0059,0.33678 -0.07652,0.68882 0.140624,0.94922 0.351227,0.42119 0.863575,0.58008 1.335938,0.58008 l 4.59375,0 c 0.944195,0 1.790335,-0.44732 2.134766,-1.41992 l 0,-0.002 0.04492,-0.12304 c 0.01031,0.3509 -0.04935,0.72333 0.179687,0.98437 0.354513,0.40406 0.855761,0.56055 1.328125,0.56055 l 4.59375,0 c 0.944728,0 1.80275,-0.4655 2.115234,-1.45313 a 1.005518,1.005518 0 0 0 0,-0.002 l 0.01367,-0.041 c 0.02792,0.34185 -0.02035,0.70832 0.205078,0.95312 0.357149,0.38784 0.849903,0.54297 1.322266,0.54297 l 4.59375,0 c 0.94379,0 1.811454,-0.48431 2.091797,-1.48242 l 0.02148,-0.0742 c 0.0231,0.37253 0.0098,0.7741 0.257813,1.03125 0.35926,0.37254 0.844042,0.52539 1.316406,0.52539 l 4.59375,0 c 0.939894,0 1.812226,-0.50712 2.0625,-1.50781 0.04074,0.36333 0.03888,0.75562 0.283203,0.99804 0.360964,0.35815 0.838183,0.50977 1.310547,0.50977 l 4.59375,0 c 0.944168,0 1.836673,-0.53216 2.046875,-1.55078 0.03923,0.38842 0.07329,0.80486 0.335937,1.05469 0.36232,0.34462 0.832324,0.49609 1.304688,0.49609 l 4.59375,0 c 0.931211,0 1.810977,-0.5559 2.001953,-1.55469 0.03834,0.3864 0.08332,0.79791 0.349609,1.05469 0.35747,0.34471 0.832324,0.5 1.304688,0.5 l 4.59375,0 c 0.911293,0 1.785982,-0.53406 1.976562,-1.53906 0.05572,0.40383 0.139397,0.82731 0.416016,1.07031 0.364343,0.32007 0.822559,0.46875 1.294922,0.46875 l 4.59375,0 c 0.90995,0 1.76809,-0.6062 1.91992,-1.57227 0.0478,0.41524 0.15249,0.84257 0.44141,1.09961 0.35984,0.32015 0.82256,0.47266 1.29492,0.47266 l 4.59375,0 c 0.88874,0 1.73829,-0.58311 1.89453,-1.54883 0.0664,0.43151 0.20884,0.86111 0.50586,1.10352 0.36587,0.2986 0.81475,0.44531 1.28711,0.44531 l 4.59375,0 c 0.88428,0 1.70699,-0.65072 1.83398,-1.57422 0.12089,0.9353 0.9486,1.57422 1.82227,1.57422 l 4.59375,0 c 0.87226,0 1.70033,-0.63743 1.82031,-1.57422 0.13037,0.9595 0.98052,1.57422 1.86719,1.57422 l 4.5625,0 c 0.47236,0 0.92078,-0.14672 1.28711,-0.44531 0.29648,-0.24167 0.43745,-0.67191 0.50391,-1.10352 0.15717,0.96413 1.00642,1.54883 1.89648,1.54883 l 11.9375,0 c 0.47236,0 0.94009,-0.15431 1.29883,-0.48633 0.35874,-0.33202 0.57573,-0.8733 0.51172,-1.39258 l -0.1543,-1.48047 a 1.005518,1.005518 0 0 0 -0.002,-0.0195 c -0.13039,-1.05705 -1.04468,-1.63279 -1.99805,-1.63281 l -11.78125,0 c -0.4767,0 -0.93038,0.15642 -1.28906,0.46289 -0.28737,0.24554 -0.41093,0.66722 -0.47266,1.08594 -0.15129,-0.9399 -0.96882,-1.54885 -1.86328,-1.54883 l -4.53125,0 c -0.86681,0 -1.67001,0.61653 -1.80469,1.54492 -0.14185,-0.91606 -0.93985,-1.5449 -1.82031,-1.54492 l -4.53125,0 c -0.89109,0 -1.71165,0.63844 -1.83398,1.57813 -0.11393,-0.9153 -0.91127,-1.57813 -1.79102,-1.57813 l -4.53125,0 c -0.89215,0 -1.70764,0.60696 -1.85937,1.54688 -0.12575,-0.90641 -0.90922,-1.54688 -1.76563,-1.54688 l -4.53125,0 c -0.90514,2e-5 -1.73937,0.58304 -1.9043,1.54492 -0.0558,-0.40526 -0.14982,-0.82336 -0.42773,-1.07031 -0.35714,-0.31735 -0.81628,-0.47461 -1.29297,-0.47461 l -4.53125,0 c -0.915754,0 -1.759857,0.55837 -1.943359,1.53711 -0.05072,-0.39109 -0.117721,-0.80201 -0.384766,-1.04883 -0.355953,-0.32898 -0.82018,-0.48828 -1.296875,-0.48828 l -4.53125,0 c -0.926091,0 -1.778301,0.53498 -1.982422,1.5293 -0.04561,-0.37736 -0.08369,-0.78068 -0.339844,-1.02735 -0.354555,-0.34141 -0.826038,-0.50195 -1.302734,-0.50195 l -4.53125,0 c -0.935901,0 -1.794566,0.50991 -2.021484,1.51758 -0.04076,-0.36332 -0.05013,-0.75398 -0.294922,-1 -0.352891,-0.35467 -0.831887,-0.51759 -1.308594,-0.51758 l -4.53125,0 c -0.953391,0 -1.809159,0.53731 -2.041016,1.52734 l -0.0059,0.0215 c -0.02666,-0.36645 -0.0214,-0.75899 -0.265625,-1.01563 -0.350916,-0.36874 -0.835804,-0.5332 -1.3125,-0.5332 l -4.53125,0 c -0.953391,0 -1.798671,0.51203 -2.064453,1.49219 l -0.0039,0.0117 c -0.03615,-0.3531 -0.01042,-0.73655 -0.242188,-0.97657 -0.356045,-0.36872 -0.837758,-0.52734 -1.314453,-0.52734 l -4.53125,0 c -0.951873,0 -1.784309,0.48958 -2.083984,1.45508 l 0,0.002 c -3.03e-4,9.8e-4 -0.0017,9.8e-4 -0.002,0.002 l -0.01172,0.043 c -0.02865,-0.34448 0.01673,-0.71438 -0.207032,-0.95703 -0.35385,-0.38371 -0.843617,-0.54492 -1.320312,-0.54492 l -4.53125,0 c -0.953391,0 -1.777664,0.47228 -2.107422,1.42774 a 1.005518,1.005518 0 0 0 -0.002,0.01 l -0.01953,0.0586 c -0.02198,-0.3342 0.04473,-0.68931 -0.169922,-0.93359 -0.351142,-0.39961 -0.849476,-0.5625 -1.326172,-0.5625 l -4.53125,0 c -0.95339,0 -1.76735,0.45537 -2.126953,1.39648 a 1.005518,1.005518 0 0 0 -0.002,0.006 l -0.0293,0.0781 c -0.01731,-0.32013 0.06828,-0.65535 -0.134766,-0.89844 -0.347808,-0.4164 -0.855335,-0.58203 -1.332031,-0.58203 l -4.5,0 z m 126.84375,0 c -0.47669,0 -0.93983,0.1554 -1.29883,0.48438 -0.359,0.32897 -0.59237,0.88422 -0.50781,1.42578 a 1.005518,1.005518 0 0 0 0.002,0.0117 l 0.24805,1.48828 c 0.163,1.04453 1.08066,1.60156 2.02539,1.60156 l 4.59375,0 c 0.47236,0 0.94398,-0.15143 1.30469,-0.49609 0.25624,-0.24485 0.28454,-0.64956 0.33008,-1.02539 0.22187,1.00073 1.09408,1.52148 2.02148,1.52148 l 4.59375,0 c 0.47236,0 0.95127,-0.15354 1.31055,-0.51172 0.25469,-0.25391 0.26642,-0.65999 0.29882,-1.03711 l 0.004,0.0176 c 0.23685,1.02967 1.12949,1.53125 2.07422,1.53125 l 4.59375,0 c 0.47236,0 0.95889,-0.15477 1.31641,-0.52734 0.35751,-0.37258 0.50515,-0.97771 0.375,-1.48047 l -0.37305,-1.49219 a 1.005518,1.005518 0 0 0 -0.002,-0.008 c -0.27056,-1.04512 -1.14427,-1.50391 -2.09766,-1.50391 l -4.53125,0 c -0.4767,0 -0.96334,0.16643 -1.3125,0.53516 -0.23363,0.24672 -0.22383,0.6189 -0.25977,0.96679 -0.2501,-1.02289 -1.1138,-1.50193 -2.05273,-1.50195 l -4.5,0 c -0.4767,0 -0.94501,0.1586 -1.30273,0.5 -0.25395,0.24235 -0.28389,0.64874 -0.33008,1.02734 -0.21012,-0.97936 -1.05707,-1.52734 -1.99219,-1.52734 l -4.53125,0 z m 27.15625,0 c -0.47669,10e-6 -0.97184,0.16708 -1.32031,0.55078 -0.34847,0.38371 -0.47372,0.98343 -0.33594,1.47656 l 0.4043,1.49219 a 1.005518,1.005518 0 0 0 0.002,0.008 c 0.29193,1.04478 1.18027,1.48438 2.125,1.48438 l 4.59375,0 c 0.47236,0 0.9794,-0.16235 1.32813,-0.56641 0.2268,-0.2628 0.17455,-0.6247 0.1875,-0.96679 l 0.0254,0.0781 a 1.005518,1.005518 0 0 0 0,0.002 c 0.31248,0.98763 1.1705,1.45313 2.11523,1.45313 l 4.59375,0 c 0.47236,0 0.97361,-0.15649 1.32813,-0.56055 0.22903,-0.26104 0.16937,-0.63347 0.17968,-0.98437 l 0.0449,0.125 c 0.34407,0.9737 1.19004,1.41992 2.13477,1.41992 l 4.59375,0 c 0.47236,0 0.98471,-0.15888 1.33594,-0.58008 0.20377,-0.24437 0.11578,-0.57401 0.13281,-0.89062 l 0.0332,0.084 c 0.37502,0.95529 1.21105,1.38672 2.1543,1.38672 l 4.59375,0 c 0.47236,0 0.99462,-0.16038 1.3418,-0.59961 0.34674,-0.43868 0.37172,-1.08303 0.17968,-1.54297 l -0.625,-1.5 a 1.005518,1.005518 0 0 0 0,-0.002 c -0.38797,-0.92567 -1.19312,-1.36717 -2.14648,-1.36719 l -4.53125,0 c -0.4767,0 -0.98422,0.16563 -1.33203,0.58203 -0.20218,0.24205 -0.11677,0.57576 -0.13477,0.89453 l -0.0312,-0.0801 c -0.35961,-0.94107 -1.17356,-1.39648 -2.12695,-1.39648 l -4.53125,0 c -0.4767,0 -0.99015,0.17161 -1.33203,0.58789 -0.21401,0.26058 -0.14216,0.60905 -0.15039,0.94141 l -0.0352,-0.10156 -0.002,-0.002 c -0.33042,-0.9535 -1.15305,-1.42578 -2.10547,-1.42578 l -4.53125,0 c -0.47669,0 -0.98067,0.16881 -1.32617,0.56836 -0.21098,0.24398 -0.15062,0.58663 -0.17578,0.91016 l -0.002,-0.004 a 1.005518,1.005518 0 0 0 -0.004,-0.0156 c -0.31215,-1.01287 -1.16381,-1.45898 -2.11719,-1.45898 l -4.53125,0 z m -58.00586,3.28125 c 3e-5,9.9e-4 0.002,9.6e-4 0.002,0.002 l 0,0.0137 -0.002,-0.0156 z m -99.77539,4.71875 c -0.956478,0 -1.776945,0.41663 -2.197266,1.33984 l -0.685546,1.49805 a 1.005518,1.005518 0 0 0 -0.002,0.002 c -0.21507,0.47238 -0.175477,1.1625 0.189454,1.59571 0.36493,0.4332 0.877362,0.57617 1.351562,0.57617 l 11.46875,0 c 0.947877,0 1.80535,-0.42074 2.185547,-1.38672 l 0,-0.002 0.111328,-0.28125 c -0.01816,0.40499 -0.05888,0.84504 0.207031,1.13086 0.370569,0.3983 0.865646,0.53906 1.339844,0.53906 l 4.78125,0 c 0.94787,0 1.817368,-0.43343 2.166016,-1.41992 l 0,-0.002 0.08789,-0.24804 c -0.01714,0.39952 -0.04625,0.83318 0.220703,1.125 0.364707,0.39868 0.863693,0.54492 1.337891,0.54492 l 4.8125,0 c 0.948395,0 1.831859,-0.4481 2.146484,-1.45508 l 0.07031,-0.22266 c -0.01165,0.41085 -0.01313,0.85921 0.263672,1.14844 0.366289,0.38274 0.857833,0.5293 1.332031,0.5293 l 4.78125,0 c 0.948394,0 1.866966,-0.42256 2.158203,-1.49219 l 0.05078,-0.1875 c -0.0057,0.42162 0.02258,0.8798 0.308594,1.16602 0.367458,0.36772 0.851975,0.51367 1.326172,0.51367 l 4.78125,0 c 0.948393,0 1.861972,-0.48866 2.103516,-1.5293 l 0.03906,-0.15625 c 0.0041,0.44941 0.08318,0.93076 0.384766,1.20508 0.373886,0.34009 0.842209,0.48047 1.316406,0.48047 l 4.78125,0 c 0.948393,0 1.879682,-0.51206 2.082031,-1.56641 a 1.005518,1.005518 0 0 0 0,-0.004 l 0.01953,-0.0996 c 0.0101,0.43935 0.09361,0.90788 0.394532,1.18554 0.368904,0.3404 0.842209,0.48438 1.316406,0.48438 l 4.8125,0 c 0.948393,0 1.894949,-0.53996 2.056641,-1.60547 a 1.005518,1.005518 0 0 0 0,-0.006 l 0.0059,-0.043 c 0.0207,0.44533 0.133282,0.90974 0.439453,1.18164 0.369349,0.32801 0.83635,0.47266 1.310547,0.47266 l 4.78125,0 c 0.47419,0 0.91491,-0.13719 1.28906,-0.39844 0.37236,-0.25999 0.70456,-0.6828 0.76953,-1.24023 0.0316,0.45115 0.16715,0.91315 0.47852,1.17969 0.36965,0.31642 0.83244,0.45898 1.30664,0.45898 l 4.78125,0 c 0.94546,0 1.91569,-0.60275 1.99805,-1.67578 0.0246,0.48176 0.21169,0.9529 0.54297,1.22656 0.36992,0.30559 0.82854,0.44922 1.30273,0.44922 l 4.78125,0 c 0.91839,0 1.84316,-0.62427 1.93359,-1.64453 0.0408,0.48279 0.24677,0.9409 0.58008,1.20703 0.37006,0.29547 0.82464,0.4375 1.29883,0.4375 l 4.8125,0 c 0.4742,0 0.93017,-0.14395 1.29883,-0.43945 0.33547,-0.2689 0.54493,-0.72469 0.58594,-1.20703 0.0452,0.50129 0.28816,0.9527 0.63281,1.21874 0.37052,0.28602 0.82072,0.42774 1.29492,0.42774 l 4.78125,0 c 0.4742,0 0.92574,-0.14019 1.29883,-0.43555 0.32998,-0.26123 0.52943,-0.72536 0.56836,-1.21093 0.0986,1.0552 1.04733,1.64648 1.97656,1.64648 l 14.34375,0 c 0.4742,0 0.93336,-0.14079 1.30664,-0.45703 0.37328,-0.31624 0.63891,-0.87564 0.56445,-1.43164 a 1.005518,1.005518 0 0 0 -0.002,-0.0117 l -0.2168,-1.48828 c -0.14163,-1.05826 -1.07086,-1.62305 -2.02734,-1.62305 l -14.15625,0 c -0.47824,0 -0.93312,0.15011 -1.29883,0.45313 -0.32221,0.26698 -0.50532,0.72458 -0.53906,1.19921 -0.0903,-1.03223 -1.00788,-1.65234 -1.94336,-1.65234 l -4.71875,0 c -0.47824,0 -0.93076,0.14831 -1.29687,0.44141 -0.32486,0.26007 -0.52545,0.70524 -0.57422,1.18164 -0.0544,-0.49334 -0.28379,-0.93613 -0.61719,-1.19336 -0.36787,-0.28382 -0.81473,-0.42969 -1.29297,-0.42969 l -4.71875,0 c -0.91422,0 -1.81443,0.60186 -1.91797,1.62109 -0.0491,-0.47576 -0.24416,-0.92471 -0.5664,-1.18164 -0.36758,-0.29306 -0.81864,-0.43945 -1.29688,-0.43945 l -4.71875,0 c -0.94068,0 -1.85775,0.62627 -1.95117,1.65234 -0.0335,-0.4751 -0.20904,-0.93691 -0.5293,-1.20117 -0.36719,-0.30298 -0.82254,-0.45117 -1.30078,-0.45117 l -4.71875,0 c -0.952,0 -1.87888,0.59703 -1.99414,1.64063 -0.0268,-0.43933 -0.14667,-0.89011 -0.44922,-1.16211 -0.36156,-0.32506 -0.82841,-0.47852 -1.30664,-0.47852 l -4.75,0 c -0.955559,0 -1.87479,0.56798 -2.025391,1.61133 l -0.0059,0.043 c -0.01655,-0.43266 -0.109695,-0.88498 -0.40625,-1.16211 -0.360836,-0.3372 -0.834262,-0.49219 -1.3125,-0.49219 l -4.71875,0 c -0.956478,0 -1.883759,0.49085 -2.082031,1.57422 l -0.01758,0.0898 c -0.0076,-0.42458 -0.07368,-0.87643 -0.363282,-1.1582 -0.359906,-0.35017 -0.84012,-0.50586 -1.318359,-0.50586 l -4.71875,0 c -0.956477,0 -1.866779,0.46763 -2.105469,1.53711 l 0,-0.006 -0.02148,0.0957 c -0.01731,-0.41537 -0.05838,-0.86085 -0.335938,-1.12695 -0.36507,-0.35 -0.84012,-0.5 -1.318359,-0.5 l -4.71875,0 c -0.956477,0 -1.85155,0.44682 -2.128906,1.5 a 1.005518,1.005518 0 0 0 -0.002,0.0117 l -0.03125,0.12305 c -0.0086,-0.40811 -0.02398,-0.84843 -0.294922,-1.11914 -0.364097,-0.3638 -0.845981,-0.51563 -1.324219,-0.51563 l -4.71875,0 c -0.956478,0 -1.836288,0.42811 -2.150391,1.46289 a 1.005518,1.005518 0 0 0 -0.002,0.0117 l -0.04687,0.16211 c -0.0013,-0.39899 0.01099,-0.83117 -0.251953,-1.10547 -0.36282,-0.3785 -0.851839,-0.53125 -1.330078,-0.53125 l -4.71875,0 c -0.955936,0 -1.804301,0.45711 -2.138672,1.42774 -1.89e-4,5.4e-4 1.89e-4,0.001 0,0.002 l -0.08789,0.24805 c 0.01739,-0.4035 0.04592,-0.84203 -0.21875,-1.13086 -0.361141,-0.39412 -0.857699,-0.54688 -1.335938,-0.54688 l -4.71875,0 c -0.956478,0 -1.792773,0.44455 -2.158203,1.39648 l -0.105469,0.26563 c 0.02048,-0.3893 0.07701,-0.80846 -0.175781,-1.09766 -0.358958,-0.41065 -0.863559,-0.56445 -1.341797,-0.56445 l -11.3125,0 z m 160.46875,0 c -0.47824,0 -0.96849,0.1527 -1.33008,0.53125 -0.36159,0.37855 -0.5057,1.00977 -0.35156,1.51758 a 1.005518,1.005518 0 0 0 0.004,0.008 l 0.46679,1.4961 c 0.31114,1.01748 1.20151,1.45898 2.14844,1.45898 l 4.78125,0 c 0.4742,0 0.96138,-0.141 1.33203,-0.52344 0.27638,-0.28517 0.26736,-0.74018 0.25391,-1.15625 l 0.0879,0.25 c 1.9e-4,5.6e-4 -1.9e-4,0.001 0,0.002 0.34457,1.00036 1.22205,1.42774 2.16992,1.42774 l 4.78125,0 c 0.47419,0 0.98447,-0.14882 1.3457,-0.56445 0.26668,-0.30685 0.21913,-0.74165 0.18555,-1.14063 l 0.12305,0.3086 c 0.3765,0.98079 1.24107,1.39648 2.18945,1.39648 l 4.78125,0 c 0.47419,0 0.99314,-0.14855 1.35156,-0.58203 0.35843,-0.43348 0.3943,-1.09333 0.20117,-1.5586 a 1.005518,1.005518 0 0 0 0,-0.002 l -0.625,-1.49805 0,-0.002 c -0.39247,-0.94369 -1.22178,-1.36914 -2.17773,-1.36914 l -4.71875,0 c -0.47823,0 -0.98418,0.1557 -1.3418,0.56641 -0.25387,0.29156 -0.20104,0.71026 -0.17968,1.09961 l -0.0996,-0.26368 c -0.3621,-0.96573 -1.20368,-1.40234 -2.16016,-1.40234 l -4.71875,0 c -0.47824,0 -0.97608,0.15466 -1.33594,0.54883 -0.25207,0.27611 -0.21358,0.68967 -0.21094,1.07422 l -0.0625,-0.18555 c -0.17224,-0.51447 -0.51897,-0.83952 -0.89257,-1.06836 -0.3736,-0.22884 -0.80106,-0.36914 -1.2793,-0.36914 l -4.71875,0 z m 27.375,4 c -0.46259,0 -0.95435,0.12125 -1.32812,0.53711 -0.37378,0.41586 -0.42581,1.13228 -0.20118,1.5957 l 1.20899,2.48828 c -0.44174,-0.37414 -0.96311,-0.62109 -1.58594,-0.62109 l -4.9375,0 c -0.4807,0 -0.9945,0.14731 -1.35937,0.57031 -0.29111,0.33748 -0.25379,0.82632 -0.17969,1.25586 l -0.1875,-0.45508 c -0.39542,-0.96221 -1.25101,-1.37109 -2.21094,-1.37109 l -13.78125,0 c -0.48069,10e-6 -0.96743,0.14191 -1.3418,0.51563 -0.37437,0.37371 -0.53565,1.03573 -0.36328,1.55664 a 1.005518,1.005518 0 0 0 0.002,0.002 l 0.5,1.5 c 0.34218,1.02964 1.25007,1.4375 2.20312,1.4375 l 14,0 c 0.47699,0 0.97864,-0.13266 1.35547,-0.54297 0.30388,-0.33088 0.28488,-0.84183 0.21289,-1.28516 l 0.19141,0.45899 a 1.005518,1.005518 0 0 0 0,0.002 c 0.40895,0.97722 1.28625,1.36719 2.24023,1.36719 l 5,0 c 0.47699,0 0.98775,-0.13263 1.36328,-0.56055 0.28074,-0.3199 0.21446,-0.78458 0.15625,-1.20312 l 0.23242,0.47851 c 0.45552,0.93579 1.30842,1.28516 2.24805,1.28516 l 5,0 c 0.4698,0 0.97448,-0.11754 1.35547,-0.55469 0.38056,-0.43665 0.40077,-1.17242 0.16211,-1.63281 l 0,-0.002 c -0.002,-0.003 -2.90625,-5.5918 -2.90625,-5.5918 a 1.005518,1.005518 0 0 0 0,-0.002 c -0.24412,-0.46912 -0.603,-0.72338 -0.98047,-0.91602 -0.37747,-0.19264 -0.79327,-0.3125 -1.25586,-0.3125 l -4.8125,0 z m -192.09375,4 c -0.961403,0 -1.792628,0.39889 -2.244141,1.30859 l -0.748047,1.49805 a 1.005518,1.005518 0 0 0 -0.002,0.002 c -0.230425,0.46425 -0.217386,1.17845 0.15625,1.625 0.373637,0.44655 0.89215,0.57813 1.369141,0.57813 l 9,0 c 0.953978,0 1.830371,-0.37109 2.263672,-1.34961 a 1.005518,1.005518 0 0 0 0.002,-0.004 l 0.183594,-0.42187 c -0.05543,0.43385 -0.09743,0.92293 0.193359,1.23633 0.380339,0.40991 0.880433,0.53906 1.357422,0.53906 l 7,0 c 0.952519,0 1.83344,-0.40761 2.216797,-1.38672 l 0.002,-0.004 0.175781,-0.44726 c -0.0701,0.45762 -0.058,0.98723 0.25586,1.3125 0.379673,0.39347 0.87262,0.52539 1.349609,0.52539 l 8,0 c 0.953049,0 1.860931,-0.4079 2.203125,-1.4375 l 0.002,-0.002 0.136719,-0.41407 c -0.07028,0.47044 -0.0127,1.01468 0.314453,1.3418 0.378095,0.37806 0.866761,0.51172 1.34375,0.51172 l 49,0 c 0.47699,0 0.92436,-0.13359 1.30469,-0.40039 0.38033,-0.26681 0.71819,-0.7138 0.75976,-1.2832 a 1.005518,1.005518 0 0 0 0.002,-0.01 l 0.002,-0.0371 c 0.006,0.53361 0.25953,1.03058 0.61719,1.30469 0.38169,0.29252 0.83746,0.42578 1.31445,0.42578 l 8,0 c 0.47699,0 0.93078,-0.13638 1.30859,-0.41992 0.37738,-0.28321 0.68844,-0.76197 0.69727,-1.31836 1e-5,6.5e-4 -1e-5,0.001 0,0.002 l 0,0.002 c 0.009,0.55554 0.31081,1.03822 0.68359,1.31641 0.37981,0.28343 0.83356,0.41797 1.31055,0.41797 l 7,0 c 0.47699,0 0.93334,-0.13505 1.3125,-0.42774 0.37217,-0.28729 0.65829,-0.79049 0.64844,-1.34179 l 0.004,0.0625 c 0.0269,0.56108 0.34989,1.02198 0.72852,1.29687 0.37863,0.2749 0.82965,0.41016 1.30664,0.41016 l 7,0 c 0.47699,0 0.9358,-0.13309 1.31641,-0.43555 0.35429,-0.28155 0.58546,-0.79078 0.58007,-1.31445 l 0.01,0.0977 c 0.0592,0.57309 0.40976,1.00076 0.79102,1.25976 0.38167,0.25929 0.82574,0.39258 1.30273,0.39258 l 7,0 c 0.47699,0 0.94658,-0.13635 1.32422,-0.46094 0.37764,-0.32458 0.62419,-0.89646 0.54492,-1.43945 l -0.21875,-1.5 c -0.1611,-1.10315 -1.12651,-1.61131 -2.08789,-1.61133 l -6.875,0 c -0.4807,0 -0.93676,0.13964 -1.31445,0.43945 -0.35168,0.27916 -0.58991,0.78558 -0.58008,1.32032 l -0.01,-0.0957 0,-0.002 c -0.0528,-0.56447 -0.38887,-0.99311 -0.76367,-1.25781 -0.37522,-0.26501 -0.82008,-0.4043 -1.30078,-0.4043 l -6.875,0 c -0.4807,0 -0.93412,0.13945 -1.31055,0.42969 -0.35402,0.27296 -0.61212,0.75755 -0.62304,1.29297 l 0,-0.006 0,-0.002 c -0.044,-1.10073 -1.04308,-1.71484 -2.00391,-1.71484 l -6.90625,0 c -0.4807,0 -0.93138,0.1406 -1.30664,0.42188 -0.36653,0.27473 -0.66657,0.74213 -0.68359,1.29687 -0.0154,-0.53106 -0.28061,-1.0063 -0.63868,-1.28516 -0.37288,-0.29039 -0.82789,-0.43359 -1.30859,-0.43359 l -7.90625,0 c -0.9614,0 -1.96427,0.57097 -2.03516,1.69141 a 1.005518,1.005518 0 0 0 0,0.002 l -0.002,0.0469 c -5e-5,-0.52447 -0.23697,-1.0178 -0.58789,-1.29883 -0.37459,-0.29999 -0.83179,-0.44142 -1.3125,-0.44141 l -48.28125,0 c -0.961404,0 -1.848604,0.43049 -2.175781,1.44922 a 1.005518,1.005518 0 0 0 -0.002,0.006 l -0.113282,0.36328 c 0.05587,-0.46497 0.0087,-0.98994 -0.304687,-1.30273 -0.37437,-0.37373 -0.861095,-0.51563 -1.341797,-0.51563 l -7.875,0 c -0.480703,0 -0.914197,0.13663 -1.294922,0.35938 -0.380725,0.22274 -0.73385,0.5334 -0.925781,1.03906 a 1.005518,1.005518 0 0 0 -0.002,0.004 l -0.146485,0.39063 c 0.05726,-0.43335 0.07681,-0.92132 -0.214843,-1.24219 C 47.484822,287.1393 46.980702,286.99414 46.5,286.99414 l -6.90625,0 c -0.961404,0 -1.81537,0.38794 -2.234375,1.35547 l -0.181641,0.41016 c 0.05618,-0.41839 0.114839,-0.88154 -0.162109,-1.19922 -0.368546,-0.42276 -0.878672,-0.56641 -1.359375,-0.56641 l -8.875,0 z m 137.96875,0 c -0.4807,0 -0.94449,0.13976 -1.32227,0.46094 -0.37777,0.32117 -0.64603,0.91058 -0.54101,1.47851 a 1.005518,1.005518 0 0 0 0,0.002 l 0.28125,1.5 c 0.10436,0.56089 0.46181,0.94783 0.84375,1.19336 0.38235,0.24579 0.82379,0.37695 1.30078,0.37695 l 5,0 c 0.47699,0 0.94672,-0.1324 1.32812,-0.46875 0.33824,-0.29828 0.47884,-0.83625 0.44141,-1.33203 l 0.0625,0.26953 c 0.12617,0.55168 0.48646,0.92045 0.86914,1.16016 0.38268,0.23971 0.82184,0.37109 1.29883,0.37109 l 5,0 c 0.47699,0 0.96152,-0.13646 1.33789,-0.5 0.33792,-0.3264 0.43896,-0.87629 0.37305,-1.35742 l 0.0996,0.36523 c 0.29434,1.08024 1.23547,1.49219 2.18945,1.49219 l 5,0 c 0.47699,0 0.9676,-0.13543 1.34375,-0.51367 0.37615,-0.37825 0.52267,-1.02995 0.36719,-1.53711 l -0.4336,-1.48633 a 1.005518,1.005518 0 0 0 -0.004,-0.0137 c -0.31943,-1.04197 -1.21829,-1.46094 -2.17969,-1.46094 l -4.9375,0 c -0.4807,0 -0.96311,0.14245 -1.33594,0.50195 -0.32433,0.31274 -0.41365,0.84371 -0.36133,1.32032 l -0.0781,-0.31055 a 1.005518,1.005518 0 0 0 -0.002,-0.0117 c -0.28026,-1.06649 -1.19878,-1.49998 -2.16016,-1.5 l -4.9375,0 c -0.4807,0 -0.95711,0.14423 -1.33008,0.49024 -0.32897,0.30518 -0.44883,0.83055 -0.4082,1.31445 l -0.0606,-0.26367 c -0.23834,-1.08893 -1.17726,-1.54102 -2.13867,-1.54102 l -4.90625,0 z" - transform="translate(23,71)" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="1.016466" - inkscape:original="M 36.5625 268 C 36.069934 267.99999 35.539974 268.33572 35.375 268.75 C 35.375001 268.75001 34.78125 270.25 34.78125 270.25 C 34.613485 270.67132 34.875944 271 35.375 271 C 35.375002 270.99999 39.875 271 39.875 271 C 40.374094 270.99999 40.906251 270.67132 41.0625 270.25 C 41.062498 270.25 41.625 268.75 41.625 268.75 C 41.778636 268.33573 41.492567 268 41 268 C 41.000001 267.99999 36.5625 268 36.5625 268 z M 52.5625 268 C 52.069936 267.99999 51.573354 268.33572 51.4375 268.75 C 51.437499 268.75001 50.9375 270.25 50.9375 270.25 C 50.799337 270.67132 51.094654 271 51.59375 271 C 51.59375 270.99999 56.09375 271 56.09375 271 C 56.592846 270.99999 57.092107 270.67132 57.21875 270.25 C 57.21875 270.25 57.6875 268.75 57.6875 268.75 C 57.812038 268.33573 57.492566 268 57 268 C 56.999999 267.99999 52.5625 268 52.5625 268 z M 60.5625 268 C 60.069936 267.99999 59.590053 268.33572 59.46875 268.75 C 59.468749 268.75001 59.03125 270.25 59.03125 270.25 C 58.907893 270.67132 59.188404 271 59.6875 271 C 59.687498 270.99999 64.1875 271 64.1875 271 C 64.686593 270.99999 65.200648 270.67132 65.3125 270.25 C 65.312498 270.25 65.71875 268.75 65.71875 268.75 C 65.828734 268.33573 65.492576 268 65 268 C 64.999998 267.99999 60.5625 268 60.5625 268 z M 68.5625 268 C 68.069936 267.99999 67.606742 268.33572 67.5 268.75 C 67.500002 268.75001 67.09375 270.25 67.09375 270.25 C 66.985201 270.67132 67.313413 271 67.8125 271 C 67.812503 270.99999 72.3125 271 72.3125 271 C 72.811587 271.00002 73.277962 270.67132 73.375 270.25 C 73.375001 270.25 73.71875 268.75 73.71875 268.75 C 73.814179 268.33573 73.523806 268 73.03125 268 C 73.031247 267.99999 68.5625 268 68.5625 268 z M 76.5625 268 C 76.069932 267.99999 75.623432 268.33572 75.53125 268.75 C 75.531247 268.75001 75.1875 270.25 75.1875 270.25 C 75.093789 270.67132 75.407144 271.00001 75.90625 271 C 75.90625 271.00001 80.40625 271 80.40625 271 C 80.905348 270.99999 81.386514 270.67132 81.46875 270.25 C 81.468746 270.25 81.75 268.75 81.75 268.75 C 81.830815 268.33573 81.523817 268 81.03125 268 C 81.031248 267.99999 76.5625 268 76.5625 268 z M 88.125 268 C 87.632431 267.99999 87.196161 268.33572 87.125 268.75 C 87.125 268.75001 86.84375 270.25 86.84375 270.25 C 86.771398 270.67132 87.125904 271.00001 87.625 271 C 87.625002 271.00001 92.125 271 92.125 271 C 92.624092 270.99999 93.064148 270.67132 93.125 270.25 C 93.125002 270.25 93.34375 268.75 93.34375 268.75 C 93.403607 268.33573 93.055076 268 92.5625 268 C 92.562497 267.99999 88.125 268 88.125 268 z M 96.125 268 C 95.632434 267.99999 95.212851 268.33572 95.15625 268.75 C 95.156253 268.75001 94.9375 270.25 94.9375 270.25 C 94.879966 270.67132 95.219654 271 95.71875 271 C 95.718747 271.00001 100.25 271 100.25 271 C 100.7491 270.99999 101.1727 270.67132 101.21875 270.25 C 101.21875 270.25 101.375 268.75 101.375 268.75 C 101.42024 268.33573 101.08632 268 100.59375 268 C 100.59375 267.99999 96.125 268 96.125 268 z M 104.125 268 C 103.63243 267.99999 103.1983 268.33572 103.15625 268.75 C 103.15625 268.75001 103.03125 270.25 103.03125 270.25 C 102.98853 270.67132 103.34466 270.99999 103.84375 271 C 103.84375 270.99999 108.34375 271 108.34375 271 C 108.84284 270.99999 109.28126 270.67132 109.3125 270.25 C 109.3125 270.25 109.40625 268.75 109.40625 268.75 C 109.43699 268.33573 109.08632 268 108.59375 268 C 108.59375 267.99999 104.125 268 104.125 268 z M 112.125 268 C 111.63243 267.99998 111.215 268.33572 111.1875 268.75 C 111.1875 268.75001 111.09375 270.25 111.09375 270.25 C 111.06574 270.67132 111.4384 270.99999 111.9375 271 C 111.9375 270.99999 116.46875 271 116.46875 271 C 116.96785 270.99999 117.35856 270.67132 117.375 270.25 C 117.375 270.25 117.4375 268.75 117.4375 268.75 C 117.45373 268.33573 117.08632 268 116.59375 268 C 116.59375 267.99999 112.125 268 112.125 268 z M 123.6875 268 C 123.19492 267.99999 122.78773 268.33572 122.78125 268.75 C 122.78125 268.75001 122.78125 270.25 122.78125 270.25 C 122.7742 270.67132 123.15715 270.99999 123.65625 271 C 123.65625 270.99999 128.15625 271 128.15625 271 C 128.65535 270.99999 129.06744 270.67132 129.0625 270.25 C 129.0625 270.25 129.03125 268.75 129.03125 268.75 C 129.02621 268.33573 128.64882 268 128.15625 268 C 128.15625 267.99999 123.6875 268 123.6875 268 z M 131.6875 268 C 131.19493 267.99999 130.80442 268.33572 130.8125 268.75 C 130.8125 268.75001 130.84375 270.25 130.84375 270.25 C 130.85183 270.67132 131.28215 271 131.78125 271 C 131.78124 270.99999 136.28125 271 136.28125 271 C 136.78035 270.99998 137.14474 270.67132 137.125 270.25 C 137.12499 270.25 137.0625 268.75 137.0625 268.75 C 137.04305 268.33573 136.64882 268 136.15625 268 C 136.15625 267.99999 131.6875 268 131.6875 268 z M 139.6875 268 C 139.19493 267.99999 138.82109 268.33572 138.84375 268.75 C 138.84374 268.75001 138.9375 270.25 138.9375 270.25 C 138.96057 270.67132 139.37591 271 139.875 271 C 139.87501 270.99999 144.375 271 144.375 271 C 144.8741 271.00001 145.25328 270.67132 145.21875 270.25 C 145.21875 270.25 145.09375 268.75 145.09375 268.75 C 145.05978 268.33573 144.64882 268 144.15625 268 C 144.15625 267.99999 139.6875 268 139.6875 268 z M 147.6875 268 C 147.19494 267.99999 146.8378 268.33572 146.875 268.75 C 146.875 268.75001 147 270.25 147 270.25 C 147.03787 270.67132 147.5009 271 148 271 C 148 270.99999 152.5 271 152.5 271 C 152.99908 271.00002 153.36184 270.67132 153.3125 270.25 C 153.31249 270.25 153.125 268.75 153.125 268.75 C 153.07654 268.33573 152.64881 268 152.15625 268 C 152.15626 267.99999 147.6875 268 147.6875 268 z M 161.03125 268 C 160.53869 267.99999 160.18853 268.33572 160.25 268.75 C 160.25 268.75001 160.46875 270.25 160.46875 270.25 C 160.53123 270.67132 161.00092 271 161.5 271 C 161.49999 270.99999 166 271 166 271 C 166.4991 271.00001 166.85525 270.67132 166.78125 270.25 C 166.78126 270.25 166.5 268.75 166.5 268.75 C 166.42725 268.33573 165.96132 268 165.46875 268 C 165.46874 267.99999 161.03125 268 161.03125 268 z M 169.03125 268 C 168.53868 267.99999 168.20524 268.33572 168.28125 268.75 C 168.28124 268.75001 168.5625 270.25 168.5625 270.25 C 168.63979 270.67132 169.09465 271 169.59375 271 C 169.59376 270.99999 174.125 271 174.125 271 C 174.62407 271.00002 174.93256 270.67132 174.84375 270.25 C 174.84374 270.25 174.53125 268.75 174.53125 268.75 C 174.44388 268.33573 173.99257 268 173.5 268 C 173.50001 267.99999 169.03125 268 169.03125 268 z M 177.03125 268 C 176.53867 267.99999 176.22193 268.33572 176.3125 268.75 C 176.3125 268.75001 176.65625 270.25 176.65625 270.25 C 176.74834 270.67132 177.21965 271.00001 177.71875 271 C 177.71874 271.00001 182.21875 271 182.21875 271 C 182.71784 271.00002 183.04112 270.67132 182.9375 270.25 C 182.9375 270.25 182.5625 268.75 182.5625 268.75 C 182.4606 268.33573 181.99258 268.00001 181.5 268 C 181.50001 268.00001 177.03125 268 177.03125 268 z M 32.6875 276 C 32.175241 276 31.61734 276.33815 31.4375 276.75 C 31.4375 276.74999 30.78125 278.25 30.78125 278.25 C 30.59823 278.66915 30.85557 279 31.375 279 C 31.375 279 39.8125 279 39.8125 279 C 40.33187 279 40.89921 278.66915 41.0625 278.25 C 41.062501 278.25 41.625 276.75 41.625 276.75 C 41.785438 276.33814 41.51226 276 41 276 C 41 276 32.6875 276 32.6875 276 z M 44.6875 276 C 44.175239 276 43.65692 276.33815 43.5 276.75 C 43.500001 276.74999 42.90625 278.25 42.90625 278.25 C 42.74655 278.66915 43.04312 279 43.5625 279 C 43.5625 279 48.25 279 48.25 279 C 48.76937 279 49.32161 278.66915 49.46875 278.25 C 49.468748 278.25 50 276.75 50 276.75 C 50.144579 276.33814 49.82476 276 49.3125 276 C 49.312502 276 44.6875 276 44.6875 276 z M 53.03125 276 C 52.51899 276 51.98481 276.33815 51.84375 276.75 C 51.843752 276.74999 51.3125 278.25 51.3125 278.25 C 51.168961 278.66915 51.48062 279 52 279 C 52 279 56.6875 279 56.6875 279 C 57.20687 279 57.74403 278.66915 57.875 278.25 C 57.875 278.25 58.34375 276.75 58.34375 276.75 C 58.472461 276.33814 58.16851 276 57.65625 276 C 57.656249 276 53.03125 276 53.03125 276 z M 61.34375 276 C 60.831492 276 60.31268 276.33815 60.1875 276.75 C 60.1875 276.74999 59.75 278.25 59.75 278.25 C 59.622601 278.66915 59.91812 279 60.4375 279 C 60.4375 279 65.125 279 65.125 279 C 65.64437 279 66.16641 278.66915 66.28125 278.25 C 66.281254 278.25 66.6875 276.75 66.6875 276.75 C 66.800352 276.33814 66.48101 276 65.96875 276 C 65.968747 276 61.34375 276 61.34375 276 z M 69.65625 276 C 69.143993 276 68.64057 276.33815 68.53125 276.75 C 68.531247 276.74999 68.15625 278.25 68.15625 278.25 C 68.044999 278.66915 68.35562 279 68.875 279 C 68.875 279 73.5625 279 73.5625 279 C 74.08187 279 74.58882 278.66915 74.6875 278.25 C 74.687501 278.25 75.03125 276.75 75.03125 276.75 C 75.128247 276.33814 74.79351 276 74.28125 276 C 74.28125 276 69.65625 276 69.65625 276 z M 78 276 C 77.487739 276 76.9997 276.33816 76.90625 276.75 C 76.90625 276.74999 76.5625 278.25 76.5625 278.25 C 76.467399 278.66915 76.79312 279 77.3125 279 C 77.3125 279 82 279 82 279 C 82.51936 279 83.01121 278.66915 83.09375 278.25 C 83.093752 278.25 83.375 276.75 83.375 276.75 C 83.456097 276.33814 83.106 276 82.59375 276 C 82.593748 276 78 276 78 276 z M 86.3125 276 C 85.800236 276 85.32758 276.33815 85.25 276.75 C 85.250002 276.74999 84.96875 278.25 84.96875 278.25 C 84.889749 278.66915 85.23062 279 85.75 279 C 85.75 279 90.4375 279 90.4375 279 C 90.95687 279 91.43361 278.66915 91.5 278.25 C 91.500002 278.25 91.75 276.75 91.75 276.75 C 91.815202 276.33814 91.44976 276 90.9375 276 C 90.937503 276 86.3125 276 86.3125 276 z M 94.625 276 C 94.112742 276 93.65546 276.33815 93.59375 276.75 C 93.593748 276.74999 93.375 278.25 93.375 278.25 C 93.312197 278.66915 93.66812 279 94.1875 279 C 94.1875 279 98.875 279 98.875 279 C 99.39437 279 99.856 278.66916 99.90625 278.25 C 99.906251 278.24999 100.09375 276.75 100.09375 276.75 C 100.14315 276.33814 99.762259 276 99.25 276 C 99.250001 276 94.625 276 94.625 276 z M 102.9375 276 C 102.42524 276 101.98334 276.33815 101.9375 276.75 C 101.9375 276.74999 101.78125 278.25 101.78125 278.25 C 101.73455 278.66915 102.10562 279 102.625 279 C 102.625 279 107.3125 279 107.3125 279 C 107.83187 279 108.27841 278.66916 108.3125 278.25 C 108.3125 278.24999 108.4375 276.75 108.4375 276.75 C 108.471 276.33814 108.07476 276 107.5625 276 C 107.5625 276 102.9375 276 102.9375 276 z M 111.28125 276 C 110.769 276 110.31122 276.33815 110.28125 276.75 C 110.28125 276.74999 110.1875 278.25 110.1875 278.25 C 110.157 278.66915 110.54312 279 111.0625 279 C 111.0625 279 115.75 279 115.75 279 C 116.26937 279 116.70081 278.66916 116.71875 278.25 C 116.71875 278.24999 116.78125 276.75 116.78125 276.75 C 116.79885 276.33817 116.41851 276 115.90625 276 C 115.90625 276 111.28125 276 111.28125 276 z M 119.59375 276 C 119.08149 276 118.67037 276.33816 118.65625 276.75 C 118.65625 276.75001 118.59375 278.25 118.59375 278.25 C 118.57935 278.66915 118.98063 279 119.5 279 C 119.5 279 124.1875 279 124.1875 279 C 124.70688 279 125.12321 278.66915 125.125 278.25 C 125.125 278.25 125.125 276.75 125.125 276.75 C 125.127 276.33815 124.73101 276 124.21875 276 C 124.21875 276 119.59375 276 119.59375 276 z M 127.90625 276 C 127.39399 276 126.99825 276.33816 127 276.75 C 127 276.75001 127 278.25 127 278.25 C 127.002 278.66915 127.41813 279 127.9375 279 C 127.9375 279 132.625 279 132.625 279 C 133.14437 279 133.54561 278.66915 133.53125 278.25 C 133.53125 278.25 133.5 276.75 133.5 276.75 C 133.48591 276.33814 133.04352 276 132.53125 276 C 132.53124 276 127.90625 276 127.90625 276 z M 136.25 276 C 135.73774 276 135.32612 276.33816 135.34375 276.75 C 135.34374 276.74999 135.40625 278.25 135.40625 278.25 C 135.42425 278.66915 135.85563 279 136.375 279 C 136.375 279 141.0625 279 141.0625 279 C 141.58188 279 141.968 278.66915 141.9375 278.25 C 141.93751 278.25 141.84375 276.75 141.84375 276.75 C 141.81376 276.33814 141.38727 276 140.875 276 C 140.87499 276 136.25 276 136.25 276 z M 144.5625 276 C 144.05024 276 143.654 276.33815 143.6875 276.75 C 143.68749 276.74999 143.8125 278.25 143.8125 278.25 C 143.8466 278.66915 144.29313 279 144.8125 279 C 144.8125 279 153.25 279 153.25 279 C 153.76938 279 154.14758 278.66915 154.09375 278.25 C 154.09375 278.25 153.90625 276.75 153.90625 276.75 C 153.85336 276.33814 153.38726 276 152.875 276 C 152.87501 276 144.5625 276 144.5625 276 z M 162.125 276 C 161.61274 276 161.24552 276.33816 161.3125 276.75 C 161.31249 276.75001 161.5625 278.25 161.5625 278.25 C 161.63071 278.66915 162.10563 279 162.625 279 C 162.625 279 167.3125 279 167.3125 279 C 167.83188 279 168.17449 278.66915 168.09375 278.25 C 168.09375 278.25 167.8125 276.75 167.8125 276.75 C 167.7332 276.33814 167.26227 276 166.75 276 C 166.74999 276 162.125 276 162.125 276 z M 170.4375 276 C 169.92522 276 169.60464 276.33816 169.6875 276.75 C 169.6875 276.74999 169.96875 278.25 169.96875 278.25 C 170.05305 278.66915 170.54313 279 171.0625 279 C 171.0625 279 175.75 279 175.75 279 C 176.26938 279 176.62815 278.66915 176.53125 278.25 C 176.53125 278.25 176.15625 276.75 176.15625 276.75 C 176.06105 276.33814 175.57476 276 175.0625 276 C 175.0625 276 170.4375 276 170.4375 276 z M 178.78125 276 C 178.269 276 177.93252 276.33815 178.03125 276.75 C 178.03125 276.74999 178.375 278.25 178.375 278.25 C 178.47549 278.66915 178.98063 279 179.5 279 C 179.5 279 184.1875 279 184.1875 279 C 184.70686 279 185.05055 278.66915 184.9375 278.25 C 184.93751 278.25 184.53125 276.75 184.53125 276.75 C 184.42018 276.33814 183.9185 276 183.40625 276 C 183.40625 276 178.78125 276 178.78125 276 z M 189.875 276 C 189.36273 276 189.03637 276.33815 189.15625 276.75 C 189.15625 276.74999 189.59375 278.25 189.59375 278.25 C 189.71578 278.66915 190.23063 279 190.75 279 C 190.75 279 195.4375 279 195.4375 279 C 195.95688 279 196.25958 278.66916 196.125 278.25 C 196.125 278.24999 195.65625 276.75 195.65625 276.75 C 195.52403 276.33817 195.01226 276 194.5 276 C 194.49999 276 189.875 276 189.875 276 z M 198.1875 276 C 197.67524 276 197.36426 276.33816 197.5 276.75 C 197.5 276.75001 198 278.25 198 278.25 C 198.13817 278.66915 198.66813 279 199.1875 279 C 199.1875 279 203.875 279 203.875 279 C 204.39438 279 204.68198 278.66915 204.53125 278.25 C 204.53125 278.25 204 276.75 204 276.75 C 203.85189 276.33815 203.32476 276 202.8125 276 C 202.8125 276 198.1875 276 198.1875 276 z M 206.5 276 C 205.98774 276 205.72339 276.33816 205.875 276.75 C 205.875 276.74999 206.40625 278.25 206.40625 278.25 C 206.56058 278.66915 207.10563 279 207.625 279 C 207.625 279 212.3125 279 212.3125 279 C 212.83188 279 213.10437 278.66915 212.9375 278.25 C 212.9375 278.25 212.34375 276.75 212.34375 276.75 C 212.17978 276.33814 211.63726 276 211.125 276 C 211.125 276 206.5 276 206.5 276 z M 215.0625 276 C 214.55023 276 214.27002 276.31114 214.4375 276.6875 C 214.4375 276.6875 216.9375 282.28125 216.9375 282.28125 C 217.11527 282.68076 217.68833 283 218.21875 283 C 218.21875 283 223 283 223 283 C 223.53042 283 223.81588 282.68075 223.625 282.28125 C 223.62501 282.28125 220.9375 276.6875 220.9375 276.6875 C 220.75767 276.31113 220.19975 276 219.6875 276 C 219.68749 276 215.0625 276 215.0625 276 z M 28.90625 284 C 28.372039 284.00001 27.78937 284.33831 27.59375 284.75 C 27.59375 284.75001 26.875 286.25 26.875 286.25 C 26.67575 286.66932 26.95808 287 27.5 287 C 27.500001 287 43.15625 287 43.15625 287 C 43.698201 287 44.24217 286.66932 44.40625 286.25 C 44.406249 286.25 45 284.75 45 284.75 C 45.161089 284.33832 44.87797 284 44.34375 284 C 44.343749 284.00001 28.90625 284 28.90625 284 z M 48.1875 284 C 47.653278 284.00001 47.09476 284.33831 46.9375 284.75 C 46.9375 284.75001 46.375 286.25 46.375 286.25 C 46.21483 286.66932 46.52054 287 47.0625 287 C 47.062501 287 51.9375 287 51.9375 287 C 52.47946 287 53.04099 286.66932 53.1875 286.25 C 53.187502 286.25 53.71875 284.75 53.71875 284.75 C 53.862591 284.33832 53.53422 284 53 284 C 53 284.00001 48.1875 284 48.1875 284 z M 56.875 284 C 56.340779 284.00001 55.79625 284.33831 55.65625 284.75 C 55.656252 284.75001 55.15625 286.25 55.15625 286.25 C 55.01366 286.66932 55.33304 287 55.875 287 C 55.874999 287 60.75 287 60.75 287 C 61.291959 287 61.83983 286.66932 61.96875 286.25 C 61.968752 286.25 62.4375 284.75 62.4375 284.75 C 62.564069 284.33832 62.22172 284 61.6875 284 C 61.6875 284.00001 56.875 284 56.875 284 z M 65.53125 284 C 64.997033 284.00001 64.49774 284.33831 64.375 284.75 C 64.375001 284.75001 63.90625 286.25 63.90625 286.25 C 63.781229 286.66932 64.1143 287 64.65625 287 C 64.656252 287 69.5625 287 69.5625 287 C 70.104451 287 70.63866 286.66932 70.75 286.25 C 70.749998 286.25 71.125 284.75 71.125 284.75 C 71.23431 284.33832 70.90921 284 70.375 284 C 70.374999 284.00001 65.53125 284 65.53125 284 z M 74.21875 284 C 73.684529 284.00001 73.16798 284.33831 73.0625 284.75 C 73.062502 284.75001 72.6875 286.25 72.6875 286.25 C 72.580062 286.66932 72.92679 287 73.46875 287 C 73.468751 287 78.375 287 78.375 287 C 78.916949 287 79.40624 286.66932 79.5 286.25 C 79.499997 286.25 79.84375 284.75 79.84375 284.75 C 79.935849 284.33832 79.56546 284 79.03125 284 C 79.031253 284.00001 74.21875 284 74.21875 284 z M 82.90625 284 C 82.372038 284.00001 81.86946 284.33831 81.78125 284.75 C 81.781253 284.75001 81.46875 286.25 81.46875 286.25 C 81.378952 286.66932 81.73929 287 82.28125 287 C 82.281251 287 87.15625 287 87.15625 287 C 87.698222 287 88.20506 286.66932 88.28125 286.25 C 88.28125 286.25 88.5625 284.75 88.5625 284.75 C 88.637301 284.33832 88.25296 284 87.71875 284 C 87.718751 284.00001 82.90625 284 82.90625 284 z M 91.59375 284 C 91.059542 284.00001 90.57096 284.33831 90.5 284.75 C 90.500002 284.75001 90.21875 286.25 90.21875 286.25 C 90.146452 286.66932 90.55179 287 91.09375 287 C 91.093749 287 95.96875 287 95.96875 287 C 96.510713 287 97.0039 286.66932 97.0625 286.25 C 97.0625 286.25 97.25 284.75 97.25 284.75 C 97.307502 284.33832 96.94046 284 96.40625 284 C 96.406248 284.00001 91.59375 284 91.59375 284 z M 100.25 284 C 99.715788 284 99.2412 284.33831 99.1875 284.75 C 99.187504 284.75001 99 286.25 99 286.25 C 98.945297 286.66932 99.33306 287 99.875 287 C 99.875 287 104.78125 287 104.78125 287 C 105.3232 287 105.77148 286.66932 105.8125 286.25 C 105.8125 286.25 105.96875 284.75 105.96875 284.75 C 106.00905 284.33832 105.62796 284 105.09375 284 C 105.09375 284.00001 100.25 284 100.25 284 z M 108.9375 284 C 108.40329 284.00001 107.94269 284.33831 107.90625 284.75 C 107.90625 284.75001 107.78125 286.25 107.78125 286.25 C 107.74415 286.66932 108.14553 287 108.6875 287 C 108.6875 287 113.59375 287 113.59375 287 C 114.13571 287 114.57031 286.66932 114.59375 286.25 C 114.59375 286.25 114.6875 284.75 114.6875 284.75 C 114.7105 284.33832 114.28422 284 113.75 284 C 113.75 284.00001 108.9375 284 108.9375 284 z M 117.625 284 C 117.09079 284.00001 116.64417 284.33831 116.625 284.75 C 116.625 284.75001 116.5625 286.25 116.5625 286.25 C 116.543 286.66932 116.95804 287 117.5 287 C 117.5 287 122.375 287 122.375 287 C 122.91696 287 123.36914 286.66932 123.375 286.25 C 123.375 286.25 123.40625 284.75 123.40625 284.75 C 123.41225 284.33832 122.97172 284 122.4375 284 C 122.4375 284.00001 117.625 284 117.625 284 z M 126.28125 284 C 125.74704 284.00001 125.34567 284.33831 125.34375 284.75 C 125.34375 284.75001 125.3125 286.25 125.3125 286.25 C 125.3105 286.66932 125.7393 287 126.28125 287 C 126.28125 287 131.1875 287 131.1875 287 C 131.72946 287 132.16797 286.66932 132.15625 286.25 C 132.15625 286.25 132.09375 284.75 132.09375 284.75 C 132.08225 284.33832 131.65922 283.99999 131.125 284 C 131.125 284.00001 126.28125 284 126.28125 284 z M 134.96875 284 C 134.43453 284.00001 134.01591 284.33831 134.03125 284.75 C 134.03126 284.75001 134.09375 286.25 134.09375 286.25 C 134.10935 286.66932 134.5518 287 135.09375 287 C 135.09374 287 154.65625 287 154.65625 287 C 155.1982 287 155.58985 286.66932 155.53125 286.25 C 155.53124 286.25 155.34375 284.75 155.34375 284.75 C 155.28625 284.33832 154.7842 284 154.25 284 C 154.25001 284.00001 134.96875 284 134.96875 284 z M 172.59375 284 C 172.05952 284.00001 171.69112 284.33831 171.78125 284.75 C 171.78124 284.75001 172.09375 286.25 172.09375 286.25 C 172.18555 286.66932 172.70805 287 173.25 287 C 173.25 287 178.15625 287 178.15625 287 C 178.6982 287 179.04298 286.66932 178.9375 286.25 C 178.9375 286.25 178.5625 284.75 178.5625 284.75 C 178.45893 284.33832 177.94046 284 177.40625 284 C 177.40625 284.00001 172.59375 284 172.59375 284 z M 192.84375 284 C 192.30951 284.00001 191.96334 284.33831 192.09375 284.75 C 192.09375 284.75001 192.5625 286.25 192.5625 286.25 C 192.69533 286.66932 193.23929 287 193.78125 287 C 193.78125 287 198.6875 287 198.6875 287 C 199.22944 287 199.55276 286.66932 199.40625 286.25 C 199.40625 286.25 198.875 284.75 198.875 284.75 C 198.73115 284.33832 198.19047 284 197.65625 284 C 197.65625 284.00001 192.84375 284 192.84375 284 z M 201.5 284 C 200.96579 284.00001 200.66483 284.33831 200.8125 284.75 C 200.8125 284.75001 201.34375 286.25 201.34375 286.25 C 201.49418 286.66932 202.05179 287 202.59375 287 C 202.59374 287 207.5 287 207.5 287 C 208.04196 287 208.35158 286.66932 208.1875 286.25 C 208.1875 286.25 207.59375 284.75 207.59375 284.75 C 207.43266 284.33832 206.87796 284 206.34375 284 C 206.34374 284.00001 201.5 284 201.5 284 z M 210.1875 284 C 209.65328 284.00001 209.36632 284.33831 209.53125 284.75 C 209.53126 284.75001 210.125 286.25 210.125 286.25 C 210.29298 286.66932 210.86429 287 211.40625 287 C 211.40626 287 216.28125 287 216.28125 287 C 216.8232 287 217.11916 286.66932 216.9375 286.25 C 216.9375 286.25 216.28125 284.75 216.28125 284.75 C 216.1029 284.33832 215.53421 283.99999 215 284 C 215.00001 284.00001 210.1875 284 210.1875 284 z " - style="display:inline;fill:#555753;fill-opacity:1;stroke:none;enable-background:new" - id="path4072" - d="m 36.5625,266.98438 c -0.954459,-2e-5 -1.760859,0.45462 -2.132812,1.38867 a 1.0165677,1.0165677 0 0 0 0,0.002 l -0.59375,1.49805 c -0.184887,0.46431 -0.151617,1.10394 0.195312,1.54101 0.346929,0.43708 0.871073,0.60156 1.34375,0.60156 l 4.5,0 c 0.943851,-1e-5 1.779782,-0.44612 2.138672,-1.4082 l 0.002,-0.002 0.560547,-1.49805 a 1.0165677,1.0165677 0 0 0 0.002,-0.004 C 42.75759,268.6196 42.68184,267.98095 42.333984,267.56641 41.986129,267.15186 41.477222,266.98438 41,266.98438 l -4.4375,0 z m 16,0 c -0.954458,-2e-5 -1.778081,0.49255 -2.091797,1.44921 l -0.498047,1.49414 a 1.0165677,1.0165677 0 0 0 -0.002,0.006 c -0.160286,0.48879 -0.06178,1.11935 0.292969,1.52149 0.354746,0.40213 0.857399,0.56054 1.330078,0.56054 l 4.5,0 c 0.937647,-1e-5 1.780708,-0.48412 2.083984,-1.45507 0.03054,0.31538 -0.02743,0.64793 0.181641,0.88867 0.349178,0.40208 0.855446,0.5664 1.328125,0.5664 l 4.5,0 c 0.922963,-1e-5 1.772607,-0.45932 2.070312,-1.44921 0.04752,0.33287 0.0158,0.69461 0.238282,0.92382 0.359899,0.37081 0.843727,0.52539 1.316406,0.52539 l 4.5,0 c 0.924146,4e-5 1.763702,-0.52667 2.017578,-1.48632 0.04068,0.34382 0.02666,0.71341 0.259766,0.95703 0.354826,0.37084 0.843715,0.5293 1.316406,0.52929 l 4.5,0 c 0.945332,-1e-5 1.854536,-0.51485 2.060547,-1.57031 a 1.0165677,1.0165677 0 0 0 0.002,-0.008 l 0.279297,-1.49219 c 0.0966,-0.49519 -0.05758,-1.05684 -0.404297,-1.42383 -0.346716,-0.36699 -0.835278,-0.5371 -1.3125,-0.5371 l -4.46875,0 c -0.92723,-2e-5 -1.733987,0.55158 -1.980469,1.48046 -0.03572,-0.32918 -0.0093,-0.68018 -0.230469,-0.92578 -0.343882,-0.38181 -0.84309,-0.55468 -1.320312,-0.55468 l -4.46875,0 c -0.930212,-2e-5 -1.734338,0.52759 -2.007812,1.45507 -0.04851,-0.33484 -0.01954,-0.70059 -0.240235,-0.92773 C 65.957728,267.14457 65.477222,266.98438 65,266.98438 l -4.4375,0 c -0.937628,-2e-5 -1.744265,0.5081 -2.041016,1.4414 -0.04292,-0.32159 0.0087,-0.67022 -0.201172,-0.89648 C 57.965978,267.14725 57.477222,266.98438 57,266.98438 l -4.4375,0 z m 35.5625,0 c -0.954456,-2e-5 -1.828958,0.58661 -2.001953,1.59374 l -0.279297,1.48438 a 1.0165677,1.0165677 0 0 0 -0.002,0.0156 c -0.09051,0.52705 0.117268,1.09831 0.478515,1.44141 0.361248,0.3431 0.831997,0.4961 1.304688,0.49609 l 4.5,0 c 0.90129,-1e-5 1.730938,-0.56432 1.939453,-1.50976 0.05133,0.3696 0.09281,0.76264 0.349609,1.00976 0.356551,0.34311 0.832009,0.5 1.304688,0.5 l 4.53125,0 c 0.89216,-1e-5 1.71227,-0.58623 1.90234,-1.51757 0.0575,0.38202 0.12548,0.7847 0.39258,1.03125 0.35808,0.33051 0.82616,0.48632 1.29883,0.48632 l 4.5,0 c 0.87077,-1e-5 1.68078,-0.56706 1.87695,-1.49414 0.0694,0.38227 0.15411,0.78231 0.42383,1.02149 0.35942,0.31872 0.8203,0.47265 1.29297,0.47265 l 4.53125,0 c 0.94534,-1e-5 1.88177,-0.69884 1.92187,-1.72656 l 0.0625,-1.49609 a 1.0165677,1.0165677 0 0 0 0,-0.004 c 0.0406,-1.03534 -0.90493,-1.80468 -1.85937,-1.80468 l -4.46875,0 c -0.87603,-4e-5 -1.65719,0.5884 -1.8457,1.49414 -0.15497,-0.83031 -0.85828,-1.49414 -1.68555,-1.49414 l -4.46875,0 c -0.88385,-2e-5 -1.67421,0.56301 -1.88086,1.48046 -0.0582,-0.35519 -0.10123,-0.73083 -0.34961,-0.97265 -0.34903,-0.33982 -0.82356,-0.50782 -1.30078,-0.50781 l -4.46875,0 c -0.909198,-2e-5 -1.714887,0.59023 -1.912109,1.51562 -0.05198,-0.3725 -0.09311,-0.76905 -0.347657,-1.01367 -0.353724,-0.33993 -0.825512,-0.50196 -1.302734,-0.50195 l -4.4375,0 z m 35.5625,0 c -0.95446,-2e-5 -1.90512,0.6785 -1.92188,1.75 a 1.0165677,1.0165677 0 0 0 0,0.0156 l 0,1.48242 c -0.0175,1.04584 0.94529,1.78319 1.89063,1.7832 l 4.5,0 c 0.84363,-1e-5 1.62263,-0.6053 1.79297,-1.49804 0.17888,0.91521 0.97775,1.49804 1.83203,1.49804 l 4.5,0 c 0.84043,-3e-5 1.59117,-0.664 1.73633,-1.52539 0.17141,0.92239 0.98214,1.52539 1.85742,1.52539 l 4.5,0 c 0.47269,10e-6 0.93357,-0.15197 1.29492,-0.4707 0.26824,-0.2366 0.34853,-0.64003 0.41797,-1.02344 0.20403,0.95767 1.03466,1.49414 1.91211,1.49414 l 4.5,0 c 0.4727,2e-5 0.93872,-0.15385 1.29883,-0.48437 0.3601,-0.33052 0.58513,-0.87357 0.52344,-1.40039 a 1.0165677,1.0165677 0 0 0 -0.002,-0.008 l -0.18554,-1.49024 0,-0.002 c -0.12218,-1.03571 -1.02466,-1.64648 -1.97852,-1.64648 l -4.46875,0 c -0.82234,-2e-5 -1.52559,0.65897 -1.67969,1.49218 -0.19151,-0.89906 -0.9706,-1.49219 -1.85156,-1.49218 l -4.46875,0 c -0.83502,-2e-5 -1.56195,0.64175 -1.7207,1.49414 -0.1805,-0.8796 -0.94203,-1.49414 -1.81055,-1.49414 l -4.46875,0 c -0.84774,-2e-5 -1.59673,0.62347 -1.76172,1.49609 -0.17028,-0.86177 -0.91262,-1.49609 -1.76953,-1.49609 l -4.46875,0 z m 37.34375,0 c -0.47723,-10e-6 -0.94849,0.16201 -1.30273,0.50195 -0.35381,0.33952 -0.56129,0.88699 -0.48438,1.41015 l 0.21875,1.5 a 1.0165677,1.0165677 0 0 0 0,0.002 c 0.15966,1.07663 1.09175,1.61718 2.03711,1.61718 l 4.5,0 c 0.47269,10e-6 0.94292,-0.15104 1.30469,-0.49414 0.24508,-0.23243 0.26587,-0.62178 0.32422,-0.98046 0.23992,0.93761 1.06257,1.4746 1.96484,1.4746 l 4.53125,0 c 0.4727,2e-5 0.96328,-0.16043 1.31641,-0.53124 0.23407,-0.2458 0.22146,-0.61375 0.26171,-0.95704 0.25052,0.96885 1.09487,1.4883 2.01563,1.48828 l 4.5,0 c 0.4727,2e-5 0.95818,-0.15651 1.31641,-0.52734 0.35822,-0.37083 0.51367,-0.97222 0.38867,-1.48047 a 1.0165677,1.0165677 0 0 0 0,-0.004 l -0.375,-1.4961 c -0.24391,-0.99158 -1.09441,-1.52342 -2.04883,-1.52343 l -4.46875,0 c -0.47723,-10e-6 -0.96434,0.1661 -1.31445,0.5332 -0.2237,0.23454 -0.20684,0.59341 -0.25391,0.92578 -0.25333,-0.91924 -1.04894,-1.45898 -1.96289,-1.45898 l -4.46875,0 c -0.47723,-10e-6 -0.95624,0.16448 -1.30859,0.51757 -0.23452,0.23502 -0.24003,0.60798 -0.29297,0.95313 -0.241,-0.94939 -1.05417,-1.47071 -1.96094,-1.4707 l -4.4375,0 z m -128.34375,8 c -0.959582,0 -1.774939,0.42799 -2.181641,1.35937 l -0.65625,1.49805 a 1.0165677,1.0165677 0 0 0 0,0.002 c -0.20067,0.45957 -0.18757,1.11737 0.166016,1.56641 0.353586,0.44904 0.883848,0.60547 1.359375,0.60546 l 8.4375,0 c 0.951044,0 1.81057,-0.40387 2.197266,-1.39648 a 1.0165677,1.0165677 0 0 0 0.0039,-0.0117 l 0.04297,-0.11523 c 0.01417,0.34483 -0.06345,0.70923 0.160156,0.96289 0.363731,0.4126 0.87018,0.56054 1.345703,0.56054 l 4.6875,0 c 0.951044,0 1.822686,-0.41827 2.177734,-1.42968 l 0,0.004 0.03711,-0.10351 c 0.0211,0.3546 -0.03519,0.73487 0.197265,0.98633 0.36594,0.39585 0.862368,0.54296 1.337891,0.54296 l 4.6875,0 c 0.951044,0 1.836679,-0.4339 2.158203,-1.46289 l 0.03516,-0.11328 c 0.0111,0.36657 -0.02603,0.75821 0.21875,1.02735 0.360209,0.39605 0.862368,0.54882 1.337891,0.54882 l 4.6875,0 c 0.951044,0 1.850453,-0.45126 2.136719,-1.49609 a 1.0165677,1.0165677 0 0 0 0,-0.004 l 0.02148,-0.082 c 0.01771,0.37698 0.0055,0.78186 0.259766,1.04883 0.362164,0.38028 0.856508,0.5332 1.332031,0.5332 l 4.6875,0 c 0.951044,0 1.86594,-0.4743 2.115234,-1.5332 a 1.0165677,1.0165677 0 0 0 0,-0.006 l 0.0098,-0.0391 c 0.02582,0.38499 0.03684,0.79927 0.298828,1.0625 0.363682,0.36542 0.850649,0.51562 1.326172,0.51562 l 4.6875,0 c 0.951042,0 1.880946,-0.49762 2.091797,-1.56835 0.03523,0.39085 0.06972,0.80809 0.337891,1.0664 0.364871,0.35145 0.844789,0.50195 1.320312,0.50195 l 4.6875,0 c 0.940485,0 1.864708,-0.52405 2.050781,-1.58007 0.0396,0.40511 0.105001,0.83495 0.384766,1.09375 0.365769,0.33835 0.83893,0.48633 1.314453,0.48632 l 4.6875,0 c 0.929077,0 1.84357,-0.54992 2.00781,-1.58789 0.0445,0.41888 0.14098,0.85468 0.43164,1.11329 0.36651,0.32608 0.83503,0.4746 1.31055,0.4746 l 4.6875,0 c 0.91694,0 1.81928,-0.57647 1.96484,-1.59374 0.0494,0.43331 0.17884,0.87429 0.48047,1.13281 0.36709,0.31461 0.82917,0.46093 1.30469,0.46093 l 4.6875,0 c 0.90481,0 1.79075,-0.60375 1.91992,-1.5996 0.0541,0.44911 0.21634,0.89168 0.5293,1.15039 0.36761,0.30388 0.82526,0.44921 1.30078,0.44921 l 4.6875,0 c 0.89132,0 1.75752,-0.62824 1.875,-1.5996 0.11787,0.97088 0.98369,1.5996 1.875,1.5996 l 4.6875,0 c 0.47552,0 0.93318,-0.14533 1.30078,-0.44921 0.31295,-0.25871 0.47519,-0.70132 0.5293,-1.15039 0.12929,0.9957 1.0151,1.5996 1.91992,1.5996 l 4.6875,0 c 0.47552,0 0.9376,-0.14632 1.30469,-0.46093 0.30163,-0.25852 0.43105,-0.6995 0.48047,-1.13281 0.14558,1.01724 1.04788,1.59374 1.96484,1.59374 l 8.4375,0 c 0.47552,0 0.94196,-0.14663 1.31055,-0.47265 0.36814,-0.32563 0.60971,-0.87914 0.54101,-1.41992 l 0,-0.002 -0.1875,-1.49804 a 1.0165677,1.0165677 0 0 0 0,-0.002 c -0.14003,-1.09044 -1.07949,-1.63671 -2.03906,-1.63671 l -8.3125,0 c -0.47979,-10e-6 -0.93839,0.15297 -1.30273,0.46484 -0.29068,0.24881 -0.40936,0.67936 -0.4668,1.10351 -0.1532,-0.97333 -1.00566,-1.56835 -1.91797,-1.56835 l -4.625,0 c -0.4798,0 -0.93384,0.15175 -1.29883,0.45312 -0.30147,0.24892 -0.45304,0.67987 -0.51562,1.11914 -0.14216,-0.99143 -1.00387,-1.57226 -1.9043,-1.57226 l -4.625,0 c -0.89752,0 -1.73418,0.65199 -1.84375,1.60351 -0.10997,-0.95117 -0.94676,-1.60351 -1.84375,-1.60351 l -4.625,0 c -0.9101,0 -1.7662,0.62685 -1.88867,1.5996 -0.10307,-0.92625 -0.91628,-1.59961 -1.79883,-1.5996 l -4.625,0 c -0.91285,0 -1.78926,0.55447 -1.94727,1.56835 -0.0573,-0.42447 -0.17788,-0.85454 -0.46875,-1.10351 -0.36434,-0.31187 -0.82295,-0.46484 -1.30273,-0.46484 l -4.625,0 c -0.92435,0 -1.78828,0.57055 -1.95898,1.5625 -0.0523,-0.41001 -0.13987,-0.8371 -0.41993,-1.08594 -0.36364,-0.32311 -0.828806,-0.47656 -1.30859,-0.47656 l -4.625,0 c -0.935301,0 -1.808325,0.54731 -2,1.55468 -0.04719,-0.39638 -0.105569,-0.81556 -0.375,-1.06445 -0.362776,-0.33512 -0.832715,-0.49023 -1.3125,-0.49023 l -4.625,0 c -0.959583,0 -1.862674,0.52767 -2.060547,1.57812 -0.03501,-0.39536 -0.07346,-0.81801 -0.339844,-1.07422 -0.361755,-0.34794 -0.838575,-0.5039 -1.318359,-0.5039 l -4.59375,0 c -0.958663,0 -1.847071,0.5016 -2.083984,1.53906 l -0.0098,0.0469 c -0.02571,-0.38922 -0.04061,-0.80737 -0.300781,-1.06836 -0.360485,-0.36161 -0.844434,-0.51757 -1.324219,-0.51757 l -4.625,0 c -0.959582,0 -1.834977,0.4775 -2.107422,1.5039 a 1.0165677,1.0165677 0 0 0 -0.0039,0.0156 l -0.002,0.008 c -0.03141,-0.35787 -0.0068,-0.74337 -0.244141,-0.99219 -0.358866,-0.37617 -0.850293,-0.53515 -1.330078,-0.53515 l -4.625,0 c -0.959582,0 -1.821495,0.45929 -2.128906,1.4707 a 1.0165677,1.0165677 0 0 0 -0.0039,0.01 l -0.01172,0.043 c -0.02421,-0.34863 0.02169,-0.72163 -0.207031,-0.97265 -0.356825,-0.39163 -0.856153,-0.55078 -1.335938,-0.55078 l -4.625,0 c -0.959582,0 -1.80775,0.44084 -2.148438,1.43554 l 0.002,-0.01 -0.03906,0.10937 c -0.0219,-0.35721 0.03327,-0.7412 -0.197265,-0.99023 -0.362418,-0.3915 -0.856153,-0.54492 -1.335938,-0.54492 l -4.625,0 c -0.959582,0 -1.780557,0.46951 -2.136719,1.40429 l 0.0039,-0.0137 -0.06641,0.16602 c -0.0023,-0.34272 0.08099,-0.70069 -0.138672,-0.9668 C 41.998568,275.14893 41.479785,274.98438 41,274.98438 l -8.3125,0 z m 129.4375,0 c -0.4798,0 -0.9492,0.15317 -1.3125,0.48828 -0.3633,0.3351 -0.59172,0.90146 -0.50391,1.4414 a 1.0165677,1.0165677 0 0 0 0.002,0.004 c 0,0 0.24937,1.49425 0.25,1.49805 0,0 0,0.002 0,0.002 0.17681,1.07041 1.11487,1.59765 2.06445,1.59765 l 4.6875,0 c 0.47552,0 0.95489,-0.14856 1.32031,-0.5 0.26893,-0.25863 0.30363,-0.67938 0.33789,-1.07226 a 1.0165677,1.0165677 0 0 0 0.002,0.008 c 0.21406,1.06435 1.1388,1.56445 2.08984,1.56445 l 4.6875,0 c 0.47552,0 0.94986,-0.14487 1.32031,-0.49609 0.25794,-0.24455 0.27241,-0.65942 0.31446,-1.04297 a 1.0165677,1.0165677 0 0 0 0.002,0.01 c 0.25226,1.05222 1.16224,1.52929 2.11328,1.52929 l 4.6875,0 c 0.47552,0 0.95667,-0.1446 1.32617,-0.50976 0.3695,-0.36517 0.54578,-0.99694 0.4043,-1.52148 l -0.40625,-1.5 c -0.27501,-1.01975 -1.1459,-1.5 -2.10547,-1.5 l -4.625,0 c -0.47979,-10e-6 -0.96317,0.15597 -1.32422,0.51757 -0.25991,0.26031 -0.2731,0.67873 -0.29883,1.06836 l -0.0117,-0.0488 c -0.23875,-1.03293 -1.12441,-1.5371 -2.08398,-1.5371 l -4.625,0 c -0.4798,0 -0.96644,0.16177 -1.32227,0.52343 -0.25803,0.26227 -0.27693,0.66776 -0.30664,1.04688 -0.20289,-1.04087 -1.10051,-1.57031 -2.05859,-1.57031 l -4.625,0 z m 27.75,0 c -0.47979,-10e-6 -0.96883,0.15512 -1.33008,0.53124 -0.36124,0.37613 -0.51521,1.00233 -0.36523,1.51758 a 1.0165677,1.0165677 0 0 0 0,0.002 l 0.4375,1.5 c 0.29689,1.01684 1.18231,1.48046 2.13281,1.48046 l 4.6875,0 c 0.47552,0 0.97511,-0.15088 1.33789,-0.54687 0.24464,-0.26703 0.20418,-0.66201 0.21484,-1.03125 l 0.0449,0.13086 c 0.33032,1.00207 1.2013,1.44726 2.15234,1.44726 l 4.6875,0 c 0.47552,0 0.9853,-0.15173 1.3457,-0.56445 0.23508,-0.2692 0.16964,-0.6492 0.17383,-1.00781 l 0.0527,0.14648 a 1.0165677,1.0165677 0 0 0 0.006,0.0117 c 0.36253,0.9846 1.22084,1.41406 2.17188,1.41406 l 4.6875,0 c 0.47552,0 0.99418,-0.15358 1.35156,-0.58398 0.34664,-0.41746 0.38121,-1.04196 0.21289,-1.50976 l 2.13282,4.77343 c 0.42585,0.95705 1.27071,1.32031 2.20898,1.32031 l 4.78125,0 c 0.46914,0 0.9731,-0.12766 1.34766,-0.55468 0.37455,-0.42703 0.42113,-1.14456 0.19531,-1.61719 a 1.0165677,1.0165677 0 0 0 -0.002,-0.002 l -2.68555,-5.5918 -0.002,-0.002 c -0.43877,-0.91554 -1.24314,-1.26367 -2.16602,-1.26367 l -4.625,0 c -0.46193,0 -0.95176,0.12856 -1.32031,0.53515 -0.33991,0.37499 -0.36874,0.99124 -0.21485,1.45899 l -0.23828,-0.60352 c -0.37824,-0.95008 -1.20449,-1.39062 -2.16406,-1.39062 l -4.625,0 c -0.4798,0 -1.00011,0.16851 -1.34766,0.59374 -0.22013,0.26934 -0.14442,0.62433 -0.14648,0.96485 l -0.0469,-0.13281 a 1.0165677,1.0165677 0 0 0 -0.002,-0.004 c -0.34805,-0.96782 -1.18495,-1.42187 -2.14453,-1.42187 l -4.625,0 c -0.4798,0 -0.97663,0.15724 -1.33594,0.54882 -0.2304,0.2511 -0.18069,0.63054 -0.20312,0.98438 l -0.0215,-0.0703 a 1.0165677,1.0165677 0 0 0 -0.002,-0.008 c -0.31607,-0.98448 -1.16539,-1.45508 -2.125,-1.45507 l -4.625,0 z m -160.96875,8 c -0.961846,1e-5 -1.789217,0.40575 -2.228516,1.32617 l -0.71875,1.5 a 1.0165677,1.0165677 0 0 0 -0.002,0.004 c -0.223954,0.47131 -0.198129,1.17808 0.173828,1.6211 0.371958,0.44302 0.891432,0.58007 1.369141,0.58007 l 15.65625,0 c 0.95395,0 1.818585,-0.43334 2.195312,-1.39062 l 0.002,-0.004 0.140625,-0.35351 c -0.03959,0.42344 -0.07138,0.89381 0.21289,1.20312 0.374303,0.40727 0.877755,0.54492 1.355469,0.54492 l 4.875,0 c 0.955428,0 1.850605,-0.40398 2.208984,-1.42968 l 0,0.004 0.117188,-0.33398 c -0.03631,0.43632 -0.03359,0.92306 0.261719,1.23047 0.375423,0.39081 0.871895,0.52929 1.349609,0.52929 l 4.875,0 c 0.955428,0 1.866924,-0.41775 2.189453,-1.46679 l 0.07813,-0.24414 c -0.0144,0.43138 0.0031,0.90607 0.294922,1.19726 0.37615,0.37532 0.866037,0.51368 1.34375,0.51367 l 4.90625,0 c 0.955426,0 1.885637,-0.43325 2.169922,-1.5039 a 1.0165677,1.0165677 0 0 0 0.0039,-0.0156 l 0.05078,-0.20117 c -0.01128,0.44491 0.04087,0.93052 0.34375,1.2207 0.376566,0.36078 0.860177,0.5 1.337891,0.5 l 4.90625,0 c 0.953952,0 1.880199,-0.49915 2.115234,-1.53906 l 0,-0.002 0.05273,-0.22461 c -0.02106,0.47132 0.08331,0.98173 0.40625,1.2793 0.376735,0.34713 0.854317,0.48632 1.332031,0.48632 l 4.875,0 c 0.955431,0 1.923866,-0.47701 2.125,-1.58398 l 0.02344,-0.11914 c 0.01023,0.47785 0.143741,0.97507 0.464843,1.24609 0.381536,0.32204 0.846505,0.45703 1.324219,0.45703 l 4.875,0 c 0.955429,0 1.94295,-0.504 2.099609,-1.625 a 1.0165677,1.0165677 0 0 0 0.002,-0.0137 l 0.0059,-0.043 c 0.01848,0.46595 0.156247,0.94658 0.476562,1.22071 0.376701,0.32238 0.844554,0.46093 1.322266,0.46093 l 4.90625,0 c 0.95543,0 1.93713,-0.58406 2.04297,-1.66601 l 0.006,-0.0488 c 0.0121,0.49384 0.20021,0.98558 0.53906,1.26563 0.37657,0.31121 0.84064,0.44921 1.31836,0.44921 l 4.90625,0 c 0.95017,0 1.93707,-0.61777 2.00781,-1.69531 0.0239,0.50142 0.23971,0.98079 0.58399,1.25586 0.37641,0.30076 0.83674,0.43945 1.31445,0.43945 l 4.875,0 c 0.47771,0 0.92993,-0.13617 1.30859,-0.41796 0.35545,-0.26452 0.62134,-0.72662 0.66407,-1.25196 0.0383,0.50623 0.27478,0.97094 0.62304,1.24024 0.37632,0.29099 0.83284,0.42968 1.31055,0.42968 l 4.90625,0 c 0.47771,0 0.93175,-0.13684 1.31055,-0.42773 0.34406,-0.26422 0.57336,-0.73565 0.61133,-1.24219 0.0442,0.52408 0.31827,0.9807 0.67773,1.25 0.37624,0.28188 0.82893,0.41992 1.30664,0.41992 l 19.5625,0 c 0.47771,0 0.94448,-0.13862 1.32227,-0.46093 0.37778,-0.32232 0.63592,-0.89197 0.55859,-1.44531 l -0.18555,-1.48633 a 1.0165677,1.0165677 0 0 0 -0.002,-0.0137 c -0.0795,-0.56946 -0.42488,-0.97216 -0.80078,-1.22852 -0.3759,-0.25636 -0.81715,-0.39648 -1.29883,-0.39648 l -19.28125,0 c -0.48167,0 -0.9389,0.1451 -1.31055,0.44335 -0.3358,0.26949 -0.54645,0.7339 -0.58008,1.22852 -0.076,-1.04245 -1.01386,-1.67189 -1.95312,-1.67187 l -4.84375,0 c -0.93112,1e-5 -1.84499,0.66657 -1.91211,1.67578 -0.0369,-0.5148 -0.27849,-0.97806 -0.62305,-1.24414 -0.37376,-0.28864 -0.8269,-0.43165 -1.30859,-0.43164 l -4.8125,0 c -0.94583,1e-5 -1.90755,0.5921 -1.99219,1.67187 -0.0332,-0.49526 -0.2374,-0.9648 -0.57031,-1.23047 -0.37366,-0.29819 -0.83081,-0.4414 -1.3125,-0.4414 l -4.8125,0 c -0.95952,1e-5 -1.93209,0.56244 -2.03711,1.66601 -0.0258,-0.45945 -0.17198,-0.92321 -0.48828,-1.19727 -0.36882,-0.31955 -0.83668,-0.46875 -1.31836,-0.46874 l -4.84375,0 c -0.963356,0 -1.926502,0.53224 -2.070312,1.63476 a 1.0165677,1.0165677 0 0 0 0,0.004 l -0.0059,0.0449 c -0.01446,-0.45353 -0.132338,-0.92356 -0.443359,-1.20313 -0.368579,-0.33129 -0.842535,-0.48046 -1.324219,-0.48046 l -4.8125,0 c -0.963331,1e-5 -1.907915,0.50425 -2.095703,1.59374 l -0.02148,0.10938 c -0.0069,-0.46509 -0.121936,-0.95233 -0.433593,-1.22852 -0.373574,-0.33105 -0.842535,-0.47461 -1.324219,-0.4746 l -4.8125,0 c -0.963331,1e-5 -1.889123,0.4792 -2.119141,1.55273 a 1.0165677,1.0165677 0 0 0 0,0.006 l -0.03516,0.16601 c 0.0054,-0.46037 -0.08289,-0.95319 -0.390625,-1.23632 -0.373418,-0.34357 -0.848394,-0.48828 -1.330078,-0.48828 l -4.8125,0 c -0.963333,1e-5 -1.870347,0.45877 -2.140625,1.51367 a 1.0165677,1.0165677 0 0 0 -0.002,0.006 l -0.04883,0.19726 c 0.01372,-0.43061 -0.02116,-0.90038 -0.3125,-1.19531 -0.36697,-0.37148 -0.85816,-0.52148 -1.339844,-0.52148 l -4.84375,0 c -0.963332,1e-5 -1.83604,0.48573 -2.130859,1.4746 l -0.07617,0.2461 c 0.01615,-0.43709 -0.007,-0.91627 -0.296875,-1.20508 -0.372534,-0.37116 -0.858159,-0.51563 -1.339844,-0.51562 l -4.8125,0 c -0.963332,1e-5 -1.837631,0.42589 -2.181641,1.4375 a 1.0165677,1.0165677 0 0 0 -0.002,0.006 l -0.09375,0.28125 c 0.02374,-0.42817 0.0305,-0.89979 -0.251953,-1.19336 C 53.97401,283.12931 53.481685,282.98437 53,282.98438 l -4.8125,0 c -0.963332,1e-5 -1.821917,0.4146 -2.199219,1.40234 a 1.0165677,1.0165677 0 0 0 -0.002,0.006 l -0.107422,0.28906 c 0.02906,-0.39544 0.08288,-0.82306 -0.177734,-1.125 -0.362376,-0.41984 -0.875737,-0.57226 -1.357422,-0.57226 l -15.4375,0 z m 143.6875,0 c -0.48167,0 -0.95724,0.14467 -1.33008,0.48828 -0.37284,0.3436 -0.59399,0.94884 -0.47461,1.49414 0.004,0.0192 0.31055,1.49023 0.31055,1.49023 a 1.0165677,1.0165677 0 0 0 0.002,0.01 c 0.24025,1.09738 1.19301,1.54882 2.14844,1.54882 l 4.90625,0 c 0.47771,0 0.96193,-0.13918 1.33789,-0.5 0.37551,-0.36038 0.56085,-0.98704 0.42969,-1.51171 l 0,-0.002 -0.375,-1.49804 a 1.0165677,1.0165677 0 0 0 0,-0.002 c -0.26725,-1.06227 -1.17921,-1.51757 -2.14258,-1.51757 l -4.8125,0 z m 20.25,0 c -0.48167,0 -0.96608,0.14454 -1.33984,0.51562 -0.37376,0.37108 -0.54651,1.02755 -0.37891,1.55664 l 0.4668,1.49609 a 1.0165677,1.0165677 0 0 0 0.002,0.004 c 0.32763,1.03426 1.23207,1.45898 2.1875,1.45898 l 4.90625,0 c 0.47771,0 0.97288,-0.13665 1.34961,-0.52734 0.28322,-0.29371 0.26763,-0.76043 0.24609,-1.18359 l 0.10157,0.28515 a 1.0165677,1.0165677 0 0 0 0.002,0.004 c 0.36267,1.01093 1.2516,1.42187 2.20703,1.42187 l 4.90625,0 c 0.47771,0 0.9798,-0.13777 1.35547,-0.54492 0.27244,-0.29527 0.22857,-0.74372 0.20312,-1.15429 l 0.1211,0.30859 a 1.0165677,1.0165677 0 0 0 0.002,0.004 c 0.39524,0.98661 1.26918,1.38671 2.22461,1.38671 l 4.875,0 c 0.47771,0 0.98721,-0.13595 1.36133,-0.56054 0.37411,-0.42459 0.43813,-1.12552 0.22851,-1.60938 a 1.0165677,1.0165677 0 0 0 -0.002,-0.004 l -0.6543,-1.4961 c -0.41091,-0.94849 -1.25145,-1.36134 -2.21484,-1.36132 l -4.8125,0 c -0.48167,0 -0.99557,0.15053 -1.35938,0.57031 -0.2586,0.29839 -0.19705,0.72475 -0.16992,1.11914 l -0.11718,-0.29492 c -0.38077,-0.97308 -1.2339,-1.39453 -2.19727,-1.39453 l -4.84375,0 c -0.48167,0 -0.98581,0.15003 -1.35156,0.55273 -0.27032,0.29762 -0.2404,0.74258 -0.2168,1.15039 l -0.0977,-0.27734 0,0.004 c -0.34827,-0.99672 -1.21436,-1.42968 -2.17773,-1.42968 l -4.8125,0 z" - transform="translate(23,71)" /> - </g> - <path - transform="translate(1.9803676,-47.75)" - clip-path="url(#clipPath3655)" - id="path3589" - d="m 54.5625,289 c -0.492566,-10e-6 -1.022526,0.33572 -1.1875,0.75 10e-7,10e-6 -0.59375,1.5 -0.59375,1.5 -0.167765,0.42132 0.09469,0.75 0.59375,0.75 2e-6,-10e-6 4.5,0 4.5,0 0.499094,-10e-6 1.031251,-0.32868 1.1875,-0.75 -2e-6,0 0.5625,-1.5 0.5625,-1.5 C 59.778636,289.33573 59.492567,289 59,289 c 10e-7,-10e-6 -4.4375,0 -4.4375,0 z m 16,0 c -0.492564,-10e-6 -0.989146,0.33572 -1.125,0.75 -10e-7,10e-6 -0.5,1.5 -0.5,1.5 -0.138163,0.42132 0.157154,0.75 0.65625,0.75 0,-10e-6 4.5,0 4.5,0 0.499093,-10e-6 0.998357,-0.32868 1.125,-0.75 0,0 0.46875,-1.5 0.46875,-1.5 C 75.812038,289.33573 75.492566,289 75,289 c -10e-7,-10e-6 -4.4375,0 -4.4375,0 z m 8,0 c -0.492568,-10e-6 -0.972447,0.33572 -1.09375,0.75 3e-6,10e-6 -0.4375,1.5 -0.4375,1.5 -0.123357,0.42132 0.157154,0.75 0.65625,0.75 2e-6,-10e-6 4.5,0 4.5,0 0.499093,-10e-6 1.013148,-0.32868 1.125,-0.75 -2e-6,0 0.40625,-1.5 0.40625,-1.5 C 83.828734,289.33573 83.492576,289 83,289 c -2e-6,-10e-6 -4.4375,0 -4.4375,0 z m 8,0 c -0.492564,-10e-6 -0.955758,0.33572 -1.0625,0.75 2e-6,10e-6 -0.40625,1.5 -0.40625,1.5 -0.108549,0.42132 0.219663,0.75 0.71875,0.75 3e-6,-10e-6 4.5,0 4.5,0 0.499087,2e-5 0.965462,-0.32868 1.0625,-0.75 10e-7,0 0.34375,-1.5 0.34375,-1.5 0.09543,-0.41427 -0.194944,-0.75 -0.6875,-0.75 -3e-6,-10e-6 -4.46875,0 -4.46875,0 z m 8,0 c -0.492568,-10e-6 -0.939068,0.33572 -1.03125,0.75 -3e-6,10e-6 -0.34375,1.5 -0.34375,1.5 -0.09371,0.42132 0.219644,0.75001 0.71875,0.75 0,10e-6 4.5,0 4.5,0 0.499098,-10e-6 0.98026,-0.32868 1.0625,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.08081,-0.41427 -0.22618,-0.75 -0.71875,-0.75 0,-10e-6 -4.46875,0 -4.46875,0 z m 11.5625,0 c -0.49257,-10e-6 -0.92884,0.33572 -1,0.75 0,10e-6 -0.28125,1.5 -0.28125,1.5 -0.0724,0.42132 0.28215,0.75001 0.78125,0.75 0,10e-6 4.5,0 4.5,0 0.49909,-10e-6 0.93914,-0.32868 1,-0.75 0,0 0.21875,-1.5 0.21875,-1.5 0.0599,-0.41427 -0.28867,-0.75 -0.78125,-0.75 0,-10e-6 -4.4375,0 -4.4375,0 z m 8,0 c -0.49256,-10e-6 -0.91215,0.33572 -0.96875,0.75 0,10e-6 -0.21875,1.5 -0.21875,1.5 -0.0575,0.42132 0.28215,0.75 0.78125,0.75 0,10e-6 4.53125,0 4.53125,0 0.4991,-10e-6 0.9227,-0.32868 0.96875,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0452,-0.41427 -0.28868,-0.75 -0.78125,-0.75 0,-10e-6 -4.46875,0 -4.46875,0 z m 8,0 c -0.49257,-10e-6 -0.9267,0.33572 -0.96875,0.75 0,10e-6 -0.125,1.5 -0.125,1.5 -0.0427,0.42132 0.31341,0.74999 0.8125,0.75 0,-10e-6 4.5,0 4.5,0 0.49909,-10e-6 0.93751,-0.32868 0.96875,-0.75 0,0 0.0937,-1.5 0.0937,-1.5 0.0307,-0.41427 -0.31993,-0.75 -0.8125,-0.75 0,-10e-6 -4.46875,0 -4.46875,0 z m 8,0 c -0.49257,-2e-5 -0.91,0.33572 -0.9375,0.75 -1e-5,10e-6 -0.0937,1.5 -0.0937,1.5 -0.028,0.42132 0.34465,0.74999 0.84375,0.75 0,-10e-6 4.53125,0 4.53125,0 0.4991,-10e-6 0.88981,-0.32868 0.90625,-0.75 0,0 0.0625,-1.5 0.0625,-1.5 0.0162,-0.41427 -0.35118,-0.75 -0.84375,-0.75 0,-10e-6 -4.46875,0 -4.46875,0 z m 11.5625,0 c -0.49258,-10e-6 -0.89977,0.33572 -0.90625,0.75 0,10e-6 0,1.5 0,1.5 -0.007,0.42132 0.3759,0.74999 0.875,0.75 0,-10e-6 4.5,0 4.5,0 0.4991,-10e-6 0.91119,-0.32868 0.90625,-0.75 0,0 -0.0312,-1.5 -0.0312,-1.5 -0.005,-0.41427 -0.38243,-0.75 -0.875,-0.75 0,-10e-6 -4.46875,0 -4.46875,0 z m 8,0 c -0.49257,-10e-6 -0.88308,0.33572 -0.875,0.75 0,10e-6 0.0312,1.5 0.0312,1.5 0.008,0.42132 0.4384,0.75 0.9375,0.75 -1e-5,-10e-6 4.5,0 4.5,0 0.4991,-2e-5 0.86349,-0.32868 0.84375,-0.75 -1e-5,0 -0.0625,-1.5 -0.0625,-1.5 -0.0195,-0.41427 -0.41368,-0.75 -0.90625,-0.75 0,-10e-6 -4.46875,0 -4.46875,0 z m 8,0 c -0.49257,-10e-6 -0.86641,0.33572 -0.84375,0.75 -1e-5,10e-6 0.0937,1.5 0.0937,1.5 0.0231,0.42132 0.43841,0.75 0.9375,0.75 10e-6,-10e-6 4.5,0 4.5,0 0.4991,10e-6 0.87828,-0.32868 0.84375,-0.75 0,0 -0.125,-1.5 -0.125,-1.5 -0.034,-0.41427 -0.44493,-0.75 -0.9375,-0.75 0,-10e-6 -4.46875,0 -4.46875,0 z m 8,0 c -0.49256,-10e-6 -0.8497,0.33572 -0.8125,0.75 0,10e-6 0.125,1.5 0.125,1.5 0.0379,0.42132 0.5009,0.75 1,0.75 0,-10e-6 4.5,0 4.5,0 0.49908,2e-5 0.86184,-0.32868 0.8125,-0.75 -1e-5,0 -0.1875,-1.5 -0.1875,-1.5 -0.0485,-0.41427 -0.47619,-0.75 -0.96875,-0.75 1e-5,-10e-6 -4.46875,0 -4.46875,0 z m 13.34375,0 c -0.49256,-10e-6 -0.84272,0.33572 -0.78125,0.75 0,10e-6 0.21875,1.5 0.21875,1.5 0.0625,0.42132 0.53217,0.75 1.03125,0.75 -1e-5,-10e-6 4.5,0 4.5,0 0.4991,10e-6 0.85525,-0.32868 0.78125,-0.75 1e-5,0 -0.28125,-1.5 -0.28125,-1.5 -0.0728,-0.41427 -0.53868,-0.75 -1.03125,-0.75 -1e-5,-10e-6 -4.4375,0 -4.4375,0 z m 8,0 c -0.49257,-10e-6 -0.82601,0.33572 -0.75,0.75 -1e-5,10e-6 0.28125,1.5 0.28125,1.5 0.0773,0.42132 0.53215,0.75 1.03125,0.75 1e-5,-10e-6 4.53125,0 4.53125,0 0.49907,2e-5 0.80756,-0.32868 0.71875,-0.75 -1e-5,0 -0.3125,-1.5 -0.3125,-1.5 -0.0874,-0.41427 -0.53868,-0.75 -1.03125,-0.75 1e-5,-10e-6 -4.46875,0 -4.46875,0 z m 8,0 c -0.49258,-10e-6 -0.80932,0.33572 -0.71875,0.75 0,10e-6 0.34375,1.5 0.34375,1.5 0.0921,0.42132 0.5634,0.75001 1.0625,0.75 -1e-5,10e-6 4.5,0 4.5,0 0.49909,2e-5 0.82237,-0.32868 0.71875,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.1019,-0.41427 -0.56992,-0.74999 -1.0625,-0.75 1e-5,10e-6 -4.46875,0 -4.46875,0 z M 52.8125,293 c -0.501948,0 -1.04611,0.33807 -1.21875,0.75 10e-7,0 -0.65625,1.5 -0.65625,1.5 -0.175649,0.41909 0.11627,0.75 0.625,0.75 10e-7,0 4.59375,0 4.59375,0 0.50878,0 1.02391,-0.33091 1.1875,-0.75 -10e-7,0 0.59375,-1.5 0.59375,-1.5 0.160791,-0.41193 -0.12305,-0.75 -0.625,-0.75 10e-7,0 -4.5,0 -4.5,0 z m 8.125,0 c -0.50194,0 -1.0301,0.33807 -1.1875,0.75 10e-7,0 -0.5625,1.5 -0.5625,1.5 -0.160139,0.41909 0.11623,0.75 0.625,0.75 0,0 4.59375,0 4.59375,0 0.508772,0 1.03942,-0.33091 1.1875,-0.75 10e-7,0 0.53125,-1.5 0.53125,-1.5 0.145551,-0.41193 -0.1543,-0.75 -0.65625,-0.75 3e-6,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.501938,0 -1.01408,0.33807 -1.15625,0.75 -3e-6,0 -0.5,1.5 -0.5,1.5 -0.14465,0.41909 0.14747,0.75 0.65625,0.75 2e-6,0 4.59375,0 4.59375,0 0.508777,0 1.02365,-0.33091 1.15625,-0.75 4e-6,0 0.46875,-1.5 0.46875,-1.5 0.130317,-0.41193 -0.18556,-0.75 -0.6875,-0.75 0,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.501951,0 -0.99807,0.33807 -1.125,0.75 10e-7,0 -0.46875,1.5 -0.46875,1.5 -0.129149,0.41909 0.17873,0.75 0.6875,0.75 -2e-6,0 4.59375,0 4.59375,0 0.508782,0 1.0079,-0.33091 1.125,-0.75 -3e-6,0 0.4375,-1.5 0.4375,-1.5 0.115089,-0.41193 -0.21681,-0.75 -0.71875,-0.75 2e-6,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.501949,0 -0.98205,0.33807 -1.09375,0.75 -3e-6,0 -0.40625,1.5 -0.40625,1.5 -0.113651,0.41909 0.20997,0.75 0.71875,0.75 3e-6,0 4.59375,0 4.59375,0 0.50877,0 0.99216,-0.33091 1.09375,-0.75 2e-6,0 0.34375,-1.5 0.34375,-1.5 0.0999,-0.41193 -0.2168,-0.75 -0.71875,-0.75 -4e-6,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.501947,0 -0.96603,0.33807 -1.0625,0.75 -10e-7,0 -0.375,1.5 -0.375,1.5 -0.0982,0.41909 0.24122,0.75 0.75,0.75 10e-7,0 4.59375,0 4.59375,0 0.50879,0 0.9764,-0.33091 1.0625,-0.75 2e-6,0 0.3125,-1.5 0.3125,-1.5 0.0846,-0.41193 -0.24804,-0.75001 -0.75,-0.75 3e-6,10e-6 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50194,0 -0.98125,0.33807 -1.0625,0.75 0,0 -0.28125,1.5 -0.28125,1.5 -0.0827,0.41909 0.27247,0.75 0.78125,0.75 0,0 4.59375,0 4.59375,0 0.50877,0 0.96065,-0.33091 1.03125,-0.75 0,0 0.25,-1.5 0.25,-1.5 0.0694,-0.41193 -0.2793,-0.75 -0.78125,-0.75 0,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50193,0 -0.96524,0.33807 -1.03125,0.75 0,0 -0.21875,1.5 -0.21875,1.5 -0.0672,0.41909 0.27247,0.75 0.78125,0.75 0,0 4.59375,0 4.59375,0 0.50878,0 0.97614,-0.33091 1.03125,-0.75 0,0 0.1875,-1.5 0.1875,-1.5 0.0542,-0.41193 -0.31056,-0.75 -0.8125,-0.75 0,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50194,0 -0.94922,0.33807 -1,0.75 0,0 -0.1875,1.5 -0.1875,1.5 -0.0517,0.41909 0.33499,0.75 0.84375,0.75 0,0 4.59375,0 4.59375,0 0.50877,0 0.92914,-0.33091 0.96875,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0389,-0.41194 -0.34181,-0.75 -0.84375,-0.75 0,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50195,10e-6 -0.93321,0.33807 -0.96875,0.75 0,0 -0.125,1.5 -0.125,1.5 -0.0362,0.41909 0.33497,0.75 0.84375,0.75 0,0 4.59375,0 4.59375,0 0.50878,0 0.94464,-0.33091 0.96875,-0.75 0,0 0.0937,-1.5 0.0937,-1.5 0.0237,-0.41193 -0.37304,-0.75 -0.875,-0.75 10e-6,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50194,0 -0.91718,0.33806 -0.9375,0.75 0,0 -0.0937,1.5 -0.0937,1.5 -0.0207,0.41909 0.39748,0.75 0.90625,0.75 0,0 4.59375,0 4.59375,0 0.50879,0 0.89764,-0.33091 0.90625,-0.75 0,0 0.0312,-1.5 0.0312,-1.5 0.008,-0.41193 -0.37304,-0.75 -0.875,-0.75 -1e-5,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50193,0 -0.90117,0.33807 -0.90625,0.75 -1e-5,0 -0.0312,1.5 -0.0312,1.5 -0.005,0.41909 0.39747,0.75 0.90625,0.75 1e-5,0 4.59375,0 4.59375,0 0.50876,0 0.91314,-0.33091 0.90625,-0.75 0,0 -0.0312,-1.5 -0.0312,-1.5 -0.007,-0.41193 -0.40431,-0.74999 -0.90625,-0.75 1e-5,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50194,0 -0.91641,0.33807 -0.90625,0.75 1e-5,0 0.0625,1.5 0.0625,1.5 0.0103,0.41909 0.42872,0.75 0.9375,0.75 0,0 4.5625,0 4.5625,0 0.50878,0 0.92864,-0.33091 0.90625,-0.75 0,0 -0.0937,-1.5 -0.0937,-1.5 -0.022,-0.41193 -0.43556,-0.75001 -0.9375,-0.75 0,10e-6 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50196,0 -0.90039,0.33807 -0.875,0.75 0,0 0.0937,1.5 0.0937,1.5 0.0258,0.41909 0.45998,0.75 0.96875,0.75 0,0 11.9375,0 11.9375,0 0.50877,0 0.86416,-0.33091 0.8125,-0.75 0,0 -0.15625,-1.5 -0.15625,-1.5 -0.0508,-0.41193 -0.49806,-0.74999 -1,-0.75 0,0 -11.78125,0 -11.78125,0 z m 20.84375,0 c -0.50194,0 -0.87682,0.33806 -0.8125,0.75 0,0 0.25,1.5 0.25,1.5 0.0654,0.41909 0.52247,0.75 1.03125,0.75 0,0 4.59375,0 4.59375,0 0.50878,0 0.85875,-0.33091 0.78125,-0.75 1e-5,0 -0.28125,-1.5 -0.28125,-1.5 -0.0762,-0.41193 -0.5293,-0.75 -1.03125,-0.75 0,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50196,0 -0.86081,0.33807 -0.78125,0.75 0,0 0.28125,1.5 0.28125,1.5 0.0809,0.41909 0.55372,0.75 1.0625,0.75 0,0 4.59375,0 4.59375,0 0.50877,0 0.84299,-0.33091 0.75,-0.75 -1e-5,0 -0.3125,-1.5 -0.3125,-1.5 -0.0914,-0.41193 -0.59181,-0.74999 -1.09375,-0.75 1e-5,0 -4.5,0 -4.5,0 z m 8.125,0 c -0.50195,0 -0.81353,0.33807 -0.71875,0.75 0,0 0.34375,1.5 0.34375,1.5 0.0964,0.41909 0.58498,0.75 1.09375,0.75 0,0 4.59375,0 4.59375,0 0.50877,0 0.82724,-0.33091 0.71875,-0.75 -1e-5,0 -0.375,-1.5 -0.375,-1.5 -0.10664,-0.41193 -0.62306,-0.75 -1.125,-0.75 -1e-5,0 -4.53125,0 -4.53125,0 z m 10.875,0 c -0.50195,10e-6 -0.80259,0.33807 -0.6875,0.75 0,0 0.40625,1.5 0.40625,1.5 0.1171,0.41909 0.64747,0.75 1.15625,0.75 -1e-5,0 4.59375,0 4.59375,0 0.50878,0 0.7854,-0.33091 0.65625,-0.75 0,0 -0.4375,-1.5 -0.4375,-1.5 -0.12695,-0.41194 -0.6543,-0.75 -1.15625,-0.75 0,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50194,0 -0.78658,0.33806 -0.65625,0.75 0,0 0.46875,1.5 0.46875,1.5 0.1326,0.41909 0.64747,0.75 1.15625,0.75 0,0 4.59375,0 4.59375,0 0.50878,0 0.8009,-0.33091 0.65625,-0.75 0,0 -0.53125,-1.5 -0.53125,-1.5 -0.14217,-0.41193 -0.6543,-0.75 -1.15625,-0.75 -1e-5,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50196,0 -0.77057,0.33807 -0.625,0.75 0,0 0.53125,1.5 0.53125,1.5 0.14809,0.41909 0.67873,0.75 1.1875,0.75 -1e-5,0 4.59375,0 4.59375,0 0.50879,0 0.78515,-0.33091 0.625,-0.75 0,0 -0.59375,-1.5 -0.59375,-1.5 -0.15741,-0.41193 -0.68556,-0.75 -1.1875,-0.75 1e-5,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50195,0 -0.7858,0.33807 -0.625,0.75 1e-5,0 0.59375,1.5 0.59375,1.5 0.16361,0.41909 0.70997,0.75 1.21875,0.75 0,0 4.59375,0 4.59375,0 0.50877,0 0.7694,-0.33091 0.59375,-0.75 0,0 -0.625,-1.5 -0.625,-1.5 -0.17265,-0.41193 -0.71681,-0.74999 -1.21875,-0.75 -1e-5,0 -4.53125,0 -4.53125,0 z M 50.6875,297 c -0.512259,0 -1.07016,0.33815 -1.25,0.75 0,-10e-6 -0.65625,1.5 -0.65625,1.5 -0.183018,0.41915 0.07432,0.75 0.59375,0.75 0,0 8.4375,0 8.4375,0 0.51937,0 1.08671,-0.33085 1.25,-0.75 10e-7,0 0.5625,-1.5 0.5625,-1.5 C 59.785438,297.33814 59.51226,297 59,297 c 0,0 -8.3125,0 -8.3125,0 z m 12,0 c -0.512261,0 -1.03058,0.33815 -1.1875,0.75 10e-7,-10e-6 -0.59375,1.5 -0.59375,1.5 -0.1597,0.41915 0.13687,0.75 0.65625,0.75 0,0 4.6875,0 4.6875,0 0.51937,0 1.07161,-0.33085 1.21875,-0.75 -2e-6,0 0.53125,-1.5 0.53125,-1.5 0.144579,-0.41186 -0.17524,-0.75 -0.6875,-0.75 2e-6,0 -4.625,0 -4.625,0 z m 8.34375,0 c -0.51226,0 -1.04644,0.33815 -1.1875,0.75 2e-6,-10e-6 -0.53125,1.5 -0.53125,1.5 -0.143539,0.41915 0.16812,0.75 0.6875,0.75 0,0 4.6875,0 4.6875,0 0.51937,0 1.05653,-0.33085 1.1875,-0.75 4e-6,0 0.46875,-1.5 0.46875,-1.5 0.128711,-0.41186 -0.17524,-0.75 -0.6875,-0.75 -10e-7,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.512262,0 -1.03107,0.33815 -1.15625,0.75 -3e-6,-10e-6 -0.4375,1.5 -0.4375,1.5 -0.127399,0.41915 0.16812,0.75 0.6875,0.75 0,0 4.6875,0 4.6875,0 0.51937,0 1.04141,-0.33085 1.15625,-0.75 4e-6,0 0.40625,-1.5 0.40625,-1.5 0.112852,-0.41186 -0.20649,-0.75 -0.71875,-0.75 -3e-6,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.512257,0 -1.01568,0.33815 -1.125,0.75 -3e-6,-10e-6 -0.375,1.5 -0.375,1.5 -0.111251,0.41915 0.19937,0.75 0.71875,0.75 0,0 4.6875,0 4.6875,0 0.51937,0 1.02632,-0.33085 1.125,-0.75 10e-7,0 0.34375,-1.5 0.34375,-1.5 0.097,-0.41186 -0.23774,-0.75 -0.75,-0.75 0,0 -4.625,0 -4.625,0 z M 96,297 c -0.512259,0 -1.0003,0.33816 -1.09375,0.75 0,-10e-6 -0.34375,1.5 -0.34375,1.5 -0.0951,0.41915 0.230618,0.75 0.75,0.75 2e-6,0 4.6875,0 4.6875,0 0.51936,0 1.01121,-0.33085 1.09375,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.0811,-0.41186 -0.269,-0.75 -0.78125,-0.75 0,0 -4.59375,0 -4.59375,0 z m 8.3125,0 c -0.51226,0 -0.98492,0.33815 -1.0625,0.75 0,-10e-6 -0.28125,1.5 -0.28125,1.5 -0.079,0.41915 0.26187,0.75 0.78125,0.75 0,0 4.6875,0 4.6875,0 0.51937,0 0.99611,-0.33085 1.0625,-0.75 0,0 0.25,-1.5 0.25,-1.5 0.0652,-0.41186 -0.30024,-0.75 -0.8125,-0.75 0,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51226,0 -0.96954,0.33815 -1.03125,0.75 0,-10e-6 -0.21875,1.5 -0.21875,1.5 -0.0628,0.41915 0.29312,0.75 0.8125,0.75 0,0 4.6875,0 4.6875,0 0.51937,0 0.981,-0.33084 1.03125,-0.75 0,-10e-6 0.1875,-1.5 0.1875,-1.5 0.0494,-0.41186 -0.33149,-0.75 -0.84375,-0.75 0,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51226,0 -0.95416,0.33815 -1,0.75 0,-10e-6 -0.15625,1.5 -0.15625,1.5 -0.0467,0.41915 0.32437,0.75 0.84375,0.75 0,0 4.6875,0 4.6875,0 0.51937,0 0.96591,-0.33084 1,-0.75 0,-10e-6 0.125,-1.5 0.125,-1.5 0.0335,-0.41186 -0.36274,-0.75 -0.875,-0.75 0,0 -4.625,0 -4.625,0 z m 8.34375,0 c -0.51225,0 -0.97003,0.33815 -1,0.75 0,-10e-6 -0.0937,1.5 -0.0937,1.5 -0.0305,0.41915 0.35562,0.75 0.875,0.75 -10e-6,0 4.6875,0 4.6875,0 0.51936,0 0.95081,-0.33084 0.96875,-0.75 0,-10e-6 0.0625,-1.5 0.0625,-1.5 0.0176,-0.41183 -0.36274,-0.75 -0.875,-0.75 -10e-6,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51226,0 -0.92338,0.33816 -0.9375,0.75 -1e-5,10e-6 -0.0625,1.5 -0.0625,1.5 -0.0144,0.41915 0.38688,0.75 0.90625,0.75 0,0 4.6875,0 4.6875,0 0.51938,0 0.93571,-0.33085 0.9375,-0.75 0,0 0,-1.5 0,-1.5 0.002,-0.41185 -0.39399,-0.75 -0.90625,-0.75 0,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51226,0 -0.908,0.33816 -0.90625,0.75 0,10e-6 0,1.5 0,1.5 0.002,0.41915 0.41813,0.75 0.9375,0.75 -1e-5,0 4.6875,0 4.6875,0 0.51937,0 0.92061,-0.33085 0.90625,-0.75 0,0 -0.0312,-1.5 -0.0312,-1.5 -0.0141,-0.41186 -0.45648,-0.75 -0.96875,-0.75 -10e-6,0 -4.625,0 -4.625,0 z m 8.34375,0 c -0.51226,0 -0.92388,0.33816 -0.90625,0.75 -1e-5,-10e-6 0.0625,1.5 0.0625,1.5 0.018,0.41915 0.44938,0.75 0.96875,0.75 0,0 4.6875,0 4.6875,0 0.51938,0 0.9055,-0.33085 0.875,-0.75 1e-5,0 -0.0937,-1.5 -0.0937,-1.5 -0.03,-0.41186 -0.45648,-0.75 -0.96875,-0.75 -10e-6,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51226,0 -0.9085,0.33815 -0.875,0.75 -1e-5,-10e-6 0.125,1.5 0.125,1.5 0.0341,0.41915 0.48063,0.75 1,0.75 0,0 8.4375,0 8.4375,0 0.51938,0 0.89758,-0.33085 0.84375,-0.75 0,0 -0.1875,-1.5 -0.1875,-1.5 -0.0529,-0.41186 -0.51899,-0.75 -1.03125,-0.75 1e-5,0 -8.3125,0 -8.3125,0 z m 17.5625,0 c -0.51226,0 -0.87948,0.33816 -0.8125,0.75 -1e-5,10e-6 0.25,1.5 0.25,1.5 0.0682,0.41915 0.54313,0.75 1.0625,0.75 0,0 4.6875,0 4.6875,0 0.51938,0 0.86199,-0.33085 0.78125,-0.75 0,0 -0.28125,-1.5 -0.28125,-1.5 -0.0793,-0.41186 -0.55023,-0.75 -1.0625,-0.75 -1e-5,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51228,0 -0.83286,0.33816 -0.75,0.75 0,-10e-6 0.28125,1.5 0.28125,1.5 0.0843,0.41915 0.57438,0.75 1.09375,0.75 0,0 4.6875,0 4.6875,0 0.51938,0 0.87815,-0.33085 0.78125,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.0952,-0.41186 -0.58149,-0.75 -1.09375,-0.75 0,0 -4.625,0 -4.625,0 z m 8.34375,0 c -0.51225,0 -0.84873,0.33815 -0.75,0.75 0,-10e-6 0.34375,1.5 0.34375,1.5 0.10049,0.41915 0.60563,0.75 1.125,0.75 0,0 4.6875,0 4.6875,0 0.51936,0 0.86305,-0.33085 0.75,-0.75 1e-5,0 -0.40625,-1.5 -0.40625,-1.5 -0.11107,-0.41186 -0.61275,-0.75 -1.125,-0.75 0,0 -4.625,0 -4.625,0 z m 11.09375,0 c -0.51227,0 -0.83863,0.33815 -0.71875,0.75 0,-10e-6 0.4375,1.5 0.4375,1.5 0.12203,0.41915 0.63688,0.75 1.15625,0.75 0,0 4.6875,0 4.6875,0 0.51938,0 0.82208,-0.33084 0.6875,-0.75 0,-10e-6 -0.46875,-1.5 -0.46875,-1.5 -0.13222,-0.41183 -0.64399,-0.75 -1.15625,-0.75 -1e-5,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51226,0 -0.82324,0.33816 -0.6875,0.75 0,10e-6 0.5,1.5 0.5,1.5 0.13817,0.41915 0.66813,0.75 1.1875,0.75 0,0 4.6875,0 4.6875,0 0.51938,0 0.80698,-0.33085 0.65625,-0.75 0,0 -0.53125,-1.5 -0.53125,-1.5 -0.14811,-0.41185 -0.67524,-0.75 -1.1875,-0.75 0,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51226,0 -0.77661,0.33816 -0.625,0.75 0,-10e-6 0.53125,1.5 0.53125,1.5 0.15433,0.41915 0.69938,0.75 1.21875,0.75 0,0 4.6875,0 4.6875,0 0.51938,0 0.79187,-0.33085 0.625,-0.75 0,0 -0.59375,-1.5 -0.59375,-1.5 -0.16397,-0.41186 -0.70649,-0.75 -1.21875,-0.75 0,0 -4.625,0 -4.625,0 z m 8.5625,0 c -0.51227,0 -0.79248,0.31114 -0.625,0.6875 0,0 2.5,5.59375 2.5,5.59375 0.17777,0.39951 0.75083,0.71875 1.28125,0.71875 0,0 4.78125,0 4.78125,0 0.53042,0 0.81588,-0.31925 0.625,-0.71875 1e-5,0 -2.6875,-5.59375 -2.6875,-5.59375 -0.17983,-0.37637 -0.73775,-0.6875 -1.25,-0.6875 -1e-5,0 -4.625,0 -4.625,0 z m -184.03125,4 c -0.52301,0 -1.09378,0.33823 -1.28125,0.75 -10e-7,0 -0.6875,1.5 -0.6875,1.5 -0.19088,0.41924 0.09455,0.75 0.625,0.75 0,0 11.46875,0 11.46875,0 0.530429,0 1.08532,-0.33076 1.25,-0.75 -2e-6,0 0.59375,-1.5 0.59375,-1.5 0.161739,-0.41177 -0.13325,-0.75 -0.65625,-0.75 0,0 -11.3125,0 -11.3125,0 z m 15.09375,0 c -0.523006,0 -1.06068,0.33823 -1.21875,0.75 -10e-7,0 -0.59375,1.5 -0.59375,1.5 -0.160942,0.41924 0.15707,0.75 0.6875,0.75 -5e-6,0 4.78125,0 4.78125,0 0.530435,0 1.07092,-0.33076 1.21875,-0.75 10e-7,0 0.53125,-1.5 0.53125,-1.5 0.145205,-0.41177 -0.16449,-0.75 -0.6875,-0.75 10e-7,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523001,0 -1.04598,0.33823 -1.1875,0.75 0,0 -0.53125,1.5 -0.53125,1.5 -0.144086,0.41924 0.15707,0.75 0.6875,0.75 4e-6,0 4.8125,0 4.8125,0 0.530433,0 1.05651,-0.33076 1.1875,-0.75 0,0 0.46875,-1.5 0.46875,-1.5 0.128664,-0.41177 -0.19574,-0.75 -0.71875,-0.75 3e-6,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523007,0 -1.06251,0.33823 -1.1875,0.75 4e-6,0 -0.4375,1.5 -0.4375,1.5 -0.127247,0.41924 0.18832,0.75 0.71875,0.75 -10e-7,0 4.78125,0 4.78125,0 0.530425,0 1.07335,-0.33076 1.1875,-0.75 2e-6,0 0.40625,-1.5 0.40625,-1.5 0.11212,-0.41177 -0.227,-0.75 -0.75,-0.75 -10e-7,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523005,0 -1.04781,0.33823 -1.15625,0.75 3e-6,0 -0.375,1.5 -0.375,1.5 -0.110408,0.41924 0.21958,0.75 0.75,0.75 -10e-7,0 4.78125,0 4.78125,0 0.53042,0 1.02769,-0.33076 1.125,-0.75 10e-7,0 0.375,-1.5 0.375,-1.5 0.0956,-0.41177 -0.25824,-0.75 -0.78125,-0.75 10e-7,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523,0 -1.0331,0.33823 -1.125,0.75 0,0 -0.34375,1.5 -0.34375,1.5 -0.0936,0.41924 0.28208,0.75 0.8125,0.75 0,0 4.78125,0 4.78125,0 0.53042,0 1.01329,-0.33076 1.09375,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.079,-0.41177 -0.25824,-0.75 -0.78125,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -1.01839,0.33823 -1.09375,0.75 0,0 -0.28125,1.5 -0.28125,1.5 -0.0767,0.41924 0.28208,0.75 0.8125,0.75 0,0 4.8125,0 4.8125,0 0.53042,0 0.99888,-0.33076 1.0625,-0.75 0,0 0.21875,-1.5 0.21875,-1.5 0.0625,-0.41177 -0.2895,-0.75 -0.8125,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.46875,0 c -0.52301,0 -0.97245,0.33823 -1.03125,0.75 0,0 -0.21875,1.5 -0.21875,1.5 -0.0599,0.41924 0.31333,0.75 0.84375,0.75 0,0 4.78125,0 4.78125,0 0.53042,0 1.01571,-0.33075 1.0625,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0459,-0.41179 -0.32074,-0.75 -0.84375,-0.75 0,0 -4.75,0 -4.75,0 z m 8.5,0 c -0.523,0 -0.95773,0.33823 -1,0.75 0,0 -0.15625,1.5 -0.15625,1.5 -0.043,0.41924 0.34457,0.75 0.875,0.75 0,0 4.78125,0 4.78125,0 0.53043,0 0.97006,-0.33075 1,-0.75 0,0 0.125,-1.5 0.125,-1.5 0.0294,-0.41177 -0.38324,-0.75 -0.90625,-0.75 -1e-5,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52302,0 -0.94302,0.33822 -0.96875,0.75 -1e-5,-10e-6 -0.0937,1.5 -0.0937,1.5 -0.0262,0.41925 0.37582,0.75 0.90625,0.75 -10e-6,0 4.78125,0 4.78125,0 0.53042,0 0.95565,-0.33076 0.96875,-0.75 0,0 0.0625,-1.5 0.0625,-1.5 0.0129,-0.41177 -0.4145,-0.75 -0.9375,-0.75 -10e-6,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52302,0 -0.95956,0.33823 -0.96875,0.75 -1e-5,0 -0.0312,1.5 -0.0312,1.5 -0.009,0.41925 0.40707,0.75 0.9375,0.75 -10e-6,0 4.8125,0 4.8125,0 0.53042,0 0.94124,-0.33076 0.9375,-0.75 -10e-6,0 0,-1.5 0,-1.5 -0.004,-0.41177 -0.44574,-0.75 -0.96875,-0.75 -10e-6,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -0.94485,0.33823 -0.9375,0.75 0,0 0.0312,1.5 0.0312,1.5 0.007,0.41924 0.43832,0.75 0.96875,0.75 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.95809,-0.33076 0.9375,-0.75 -1e-5,0 -0.0937,-1.5 -0.0937,-1.5 -0.0202,-0.41177 -0.44574,-0.75 -0.96875,-0.75 -2e-5,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52303,0 -0.93014,0.33823 -0.90625,0.75 -2e-5,0 0.0937,1.5 0.0937,1.5 0.0243,0.41924 0.46957,0.75 1,0.75 l 14.34375,0 c 0.53042,0 0.93114,-0.33076 0.875,-0.75 -1e-5,0 -0.21875,-1.5 -0.21875,-1.5 C 172.7261,301.33823 172.273,301 171.75,301 l -14.15625,0 z M 209.5,301 c -0.52301,0 -0.84374,0.33823 -0.71875,0.75 -1e-5,0 0.46875,1.5 0.46875,1.5 0.12724,0.41924 0.65708,0.75 1.1875,0.75 -2e-5,0 4.78125,0 4.78125,0 0.53041,0 0.8591,-0.33076 0.71875,-0.75 0,0 -0.5,-1.5 -0.5,-1.5 -0.13786,-0.41177 -0.69574,-0.75 -1.21875,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52303,0 -0.82902,0.33823 -0.6875,0.75 -1e-5,0 0.53125,1.5 0.53125,1.5 0.14407,0.41924 0.68833,0.75 1.21875,0.75 -2e-5,0 4.78125,0 4.78125,0 0.53041,0 0.81345,-0.33075 0.65625,-0.75 -1e-5,0 -0.5625,-1.5 -0.5625,-1.5 -0.15439,-0.41177 -0.69575,-0.75 -1.21875,-0.75 -1e-5,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52302,0 -0.81432,0.33822 -0.65625,0.75 -1e-5,-10e-6 0.59375,1.5 0.59375,1.5 0.16094,0.41925 0.71958,0.75 1.25,0.75 -2e-5,0 4.78125,0 4.78125,0 0.53041,0 0.79903,-0.33075 0.625,-0.75 -1e-5,0 -0.625,-1.5 -0.625,-1.5 -0.17094,-0.41177 -0.72699,-0.75 -1.25,-0.75 0,0 -4.71875,0 -4.71875,0 z m -179.59375,4 c -0.534211,10e-6 -1.11688,0.33831 -1.3125,0.75 0,10e-6 -0.71875,1.5 -0.71875,1.5 -0.19925,0.41932 0.08308,0.75 0.625,0.75 10e-7,0 15.65625,0 15.65625,0 0.541951,0 1.08592,-0.33068 1.25,-0.75 -10e-7,0 0.59375,-1.5 0.59375,-1.5 0.161089,-0.41168 -0.12203,-0.75 -0.65625,-0.75 -10e-7,10e-6 -15.4375,0 -15.4375,0 z m 19.28125,0 c -0.534218,10e-6 -1.09274,0.33831 -1.25,0.75 0,10e-6 -0.5625,1.5 -0.5625,1.5 -0.16017,0.41932 0.14554,0.75 0.6875,0.75 10e-7,0 4.875,0 4.875,0 0.541957,0 1.10349,-0.33068 1.25,-0.75 -2e-6,0 0.53125,-1.5 0.53125,-1.5 C 71.862588,305.33832 71.53422,305 71,305 c 3e-6,10e-6 -4.8125,0 -4.8125,0 z m 8.6875,0 c -0.534221,10e-6 -1.07875,0.33831 -1.21875,0.75 2e-6,10e-6 -0.5,1.5 -0.5,1.5 -0.14259,0.41932 0.17679,0.75 0.71875,0.75 -10e-7,0 4.875,0 4.875,0 0.541962,0 1.08983,-0.33068 1.21875,-0.75 -2e-6,0 0.46875,-1.5 0.46875,-1.5 0.126569,-0.41168 -0.21578,-0.75 -0.75,-0.75 0,10e-6 -4.8125,0 -4.8125,0 z m 8.65625,0 c -0.534217,10e-6 -1.03351,0.33831 -1.15625,0.75 10e-7,10e-6 -0.46875,1.5 -0.46875,1.5 -0.125018,0.41932 0.20805,0.75 0.75,0.75 2e-6,0 4.90625,0 4.90625,0 0.541951,0 1.07616,-0.33068 1.1875,-0.75 -2e-6,0 0.375,-1.5 0.375,-1.5 0.10931,-0.41168 -0.21579,-0.75 -0.75,-0.75 -10e-7,10e-6 -4.84375,0 -4.84375,0 z m 8.6875,0 c -0.534221,10e-6 -1.05077,0.33831 -1.15625,0.75 2e-6,10e-6 -0.375,1.5 -0.375,1.5 -0.107438,0.41932 0.23929,0.75 0.78125,0.75 10e-7,0 4.90625,0 4.90625,0 0.541948,0 1.03124,-0.33068 1.125,-0.75 -4e-6,0 0.34375,-1.5 0.34375,-1.5 0.0921,-0.41168 -0.27829,-0.75 -0.8125,-0.75 2e-6,10e-6 -4.8125,0 -4.8125,0 z m 8.6875,0 c -0.53421,10e-6 -1.03679,0.33831 -1.125,0.75 0,10e-6 -0.3125,1.5 -0.3125,1.5 -0.0898,0.41932 0.27054,0.75 0.8125,0.75 0,0 4.875,0 4.875,0 0.54197,0 1.04881,-0.33068 1.125,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.0748,-0.41168 -0.30954,-0.75 -0.84375,-0.75 0,10e-6 -4.8125,0 -4.8125,0 z m 8.6875,0 c -0.53421,10e-6 -1.02279,0.33831 -1.09375,0.75 0,10e-6 -0.28125,1.5 -0.28125,1.5 -0.0723,0.41932 0.33304,0.75 0.875,0.75 0,0 4.875,0 4.875,0 0.54196,0 1.03515,-0.33068 1.09375,-0.75 0,0 0.1875,-1.5 0.1875,-1.5 0.0575,-0.41168 -0.30954,-0.75 -0.84375,-0.75 0,10e-6 -4.8125,0 -4.8125,0 z m 8.65625,0 c -0.53421,0 -1.0088,0.33831 -1.0625,0.75 0,10e-6 -0.1875,1.5 -0.1875,1.5 -0.0547,0.41932 0.33306,0.75 0.875,0.75 0,0 4.90625,0 4.90625,0 0.54195,0 0.99023,-0.33068 1.03125,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0403,-0.41168 -0.34079,-0.75 -0.875,-0.75 0,10e-6 -4.84375,0 -4.84375,0 z m 8.6875,0 c -0.53421,10e-6 -0.99481,0.33831 -1.03125,0.75 0,10e-6 -0.125,1.5 -0.125,1.5 -0.0371,0.41932 0.36428,0.75 0.90625,0.75 0,0 4.90625,0 4.90625,0 0.54196,0 0.97656,-0.33068 1,-0.75 -1e-5,0 0.0937,-1.5 0.0937,-1.5 0.023,-0.41168 -0.40328,-0.75 -0.9375,-0.75 0,10e-6 -4.8125,0 -4.8125,0 z m 8.6875,0 c -0.53422,10e-6 -0.98083,0.33831 -1,0.75 -1e-5,10e-6 -0.0625,1.5 -0.0625,1.5 -0.0195,0.41932 0.39554,0.75 0.9375,0.75 0,0 4.875,0 4.875,0 0.54196,0 0.99414,-0.33068 1,-0.75 0,0 0.0312,-1.5 0.0312,-1.5 0.006,-0.41168 -0.43453,-0.75 -0.96875,-0.75 0,10e-6 -4.8125,0 -4.8125,0 z m 8.65625,0 c -0.53421,10e-6 -0.93558,0.33831 -0.9375,0.75 0,10e-6 -0.0312,1.5 -0.0312,1.5 -0.002,0.41932 0.4268,0.75 0.96875,0.75 1e-5,0 4.90625,0 4.90625,0 0.54196,0 0.98047,-0.33068 0.96875,-0.75 0,0 -0.0625,-1.5 -0.0625,-1.5 -0.0115,-0.41168 -0.43453,-0.75001 -0.96875,-0.75 0,10e-6 -4.84375,0 -4.84375,0 z m 8.6875,0 c -0.53422,10e-6 -0.95284,0.33831 -0.9375,0.75 1e-5,10e-6 0.0625,1.5 0.0625,1.5 0.0156,0.41932 0.45805,0.75 1,0.75 -1e-5,0 19.5625,0 19.5625,0 0.54195,0 0.9336,-0.33068 0.875,-0.75 -1e-5,0 -0.1875,-1.5 -0.1875,-1.5 -0.0575,-0.41168 -0.55955,-0.75 -1.09375,-0.75 1e-5,10e-6 -19.28125,0 -19.28125,0 z m 37.625,0 c -0.53423,10e-6 -0.90263,0.33831 -0.8125,0.75 -1e-5,10e-6 0.3125,1.5 0.3125,1.5 0.0918,0.41932 0.6143,0.75 1.15625,0.75 0,0 4.90625,0 4.90625,0 0.54195,0 0.88673,-0.33068 0.78125,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.10357,-0.41168 -0.62204,-0.75 -1.15625,-0.75 0,10e-6 -4.8125,0 -4.8125,0 z m 20.25,0 c -0.53424,10e-6 -0.88041,0.33831 -0.75,0.75 0,10e-6 0.46875,1.5 0.46875,1.5 0.13283,0.41932 0.67679,0.75 1.21875,0.75 0,0 4.90625,0 4.90625,0 0.54194,0 0.86526,-0.33068 0.71875,-0.75 0,0 -0.53125,-1.5 -0.53125,-1.5 -0.14385,-0.41168 -0.68453,-0.75 -1.21875,-0.75 0,10e-6 -4.8125,0 -4.8125,0 z m 8.65625,0 c -0.53421,10e-6 -0.83517,0.33831 -0.6875,0.75 0,10e-6 0.53125,1.5 0.53125,1.5 0.15043,0.41932 0.70804,0.75 1.25,0.75 -1e-5,0 4.90625,0 4.90625,0 0.54196,0 0.85158,-0.33068 0.6875,-0.75 0,0 -0.59375,-1.5 -0.59375,-1.5 -0.16109,-0.41168 -0.71579,-0.75 -1.25,-0.75 -1e-5,10e-6 -4.84375,0 -4.84375,0 z m 8.6875,0 c -0.53422,10e-6 -0.82118,0.33831 -0.65625,0.75 1e-5,10e-6 0.59375,1.5 0.59375,1.5 0.16798,0.41932 0.73929,0.75 1.28125,0.75 1e-5,0 4.875,0 4.875,0 0.54195,0 0.83791,-0.33068 0.65625,-0.75 0,0 -0.65625,-1.5 -0.65625,-1.5 -0.17835,-0.41168 -0.74704,-0.75001 -1.28125,-0.75 1e-5,10e-6 -4.8125,0 -4.8125,0 z m 8.6875,0 c -0.53421,0 -0.8072,0.31161 -0.625,0.6875 0,-10e-6 2.71875,5.59375 2.71875,5.59375 0.19472,0.40002 0.78975,0.71875 1.34375,0.71875 0,0 5,0 5,0 0.55398,0 0.83317,-0.31872 0.625,-0.71875 1e-5,-10e-6 -2.90625,-5.59375 -2.90625,-5.59375 C 242.83564,305.3116 242.22172,305 241.6875,305 c 0,0 -4.8125,0 -4.8125,0 z m -192.09375,4 c -0.545911,0 -1.13946,0.3384 -1.34375,0.75 2e-6,0 -0.75,1.5 -0.75,1.5 -0.208169,0.41941 0.07098,0.75 0.625,0.75 2e-6,0 9,0 9,0 0.554002,0 1.15803,-0.33059 1.34375,-0.75 -10e-7,0 0.65625,-1.5 0.65625,-1.5 0.182262,-0.4116 -0.11033,-0.75 -0.65625,-0.75 -10e-7,0 -8.875,0 -8.875,0 z m 12.8125,0 c -0.54591,0 -1.13425,0.3384 -1.3125,0.75 -2e-6,0 -0.65625,1.5 -0.65625,1.5 -0.181639,0.41941 0.1335,0.75 0.6875,0.75 2e-6,0 7,0 7,0 0.554002,0 1.11798,-0.33059 1.28125,-0.75 -2e-6,0 0.59375,-1.5 0.59375,-1.5 C 65.347732,309.3384 65.04591,309 64.5,309 c 2e-6,0 -6.90625,0 -6.90625,0 z m 10.84375,0 c -0.54592,0 -1.12502,0.3384 -1.28125,0.75 2e-6,0 -0.5625,1.5 -0.5625,1.5 -0.159187,0.41941 0.16475,0.75 0.71875,0.75 2e-6,0 8,0 8,0 0.554002,0 1.11122,-0.33059 1.25,-0.75 -10e-7,0 0.5,-1.5 0.5,-1.5 0.136198,-0.4116 -0.20409,-0.75 -0.75,-0.75 10e-7,0 -7.875,0 -7.875,0 z m 11.8125,0 c -0.545906,0 -1.08656,0.3384 -1.21875,0.75 -10e-7,0 -0.46875,1.5 -0.46875,1.5 -0.134688,0.41941 0.196,0.75 0.75,0.75 2e-6,0 49,0 49,0 0.55399,0 1.03188,-0.33059 1.0625,-0.75 0,0 0.0937,-1.5 0.0937,-1.5 0.03,-0.4116 -0.39159,-0.75001 -0.9375,-0.75 0,10e-6 -48.28125,0 -48.28125,0 z m 52.21875,0 c -0.54591,0 -1.00521,0.3384 -1.03125,0.75 1e-5,0 -0.0937,1.5 -0.0937,1.5 -0.0265,0.41941 0.41474,0.75 0.96875,0.75 0,0 8,0 8,0 0.55401,0 0.99387,-0.33059 1,-0.75 0,0 0.0312,-1.5 0.0312,-1.5 0.006,-0.4116 -0.42283,-0.75 -0.96875,-0.75 -1e-5,0 -7.90625,0 -7.90625,0 z m 11.84375,0 c -0.54591,0 -0.99799,0.3384 -1,0.75 1e-5,0 0,1.5 0,1.5 -0.002,0.41941 0.44601,0.75 1,0.75 0,0 7,0 7,0 0.55401,0 0.98508,-0.33059 0.96875,-0.75 -1e-5,0 -0.0625,-1.5 -0.0625,-1.5 -0.016,-0.4116 -0.45407,-0.75 -1,-0.75 1e-5,0 -6.90625,0 -6.90625,0 z m 10.84375,0 c -0.54591,0 -0.98878,0.3384 -0.96875,0.75 0,0 0.0937,1.5 0.0937,1.5 0.0201,0.41941 0.47725,0.75 1.03125,0.75 0,0 7,0 7,0 0.55401,0 0.97628,-0.33059 0.9375,-0.75 0,0 -0.15625,-1.5 -0.15625,-1.5 -0.038,-0.4116 -0.51659,-0.75 -1.0625,-0.75 -1e-5,0 -6.875,0 -6.875,0 z M 166,309 c -0.54591,0 -0.97956,0.3384 -0.9375,0.75 0,0 0.15625,1.5 0.15625,1.5 0.0428,0.41941 0.53975,0.75 1.09375,0.75 0,0 7,0 7,0 0.554,0 0.93623,-0.33059 0.875,-0.75 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0601,-0.4116 -0.54785,-0.74999 -1.09375,-0.75 0,0 -6.875,0 -6.875,0 z m 16.75,0 c -0.54592,0 -0.95111,0.33839 -0.875,0.75 1e-5,0 0.28125,1.5 0.28125,1.5 0.0776,0.41941 0.60225,0.75 1.15625,0.75 0,0 5,0 5,0 0.55401,0 0.93559,-0.33059 0.84375,-0.75 -1e-5,0 -0.34375,-1.5 -0.34375,-1.5 -0.0901,-0.4116 -0.61033,-0.75 -1.15625,-0.75 0,0 -4.90625,0 -4.90625,0 z m 8.84375,0 c -0.54591,0 -0.90664,0.3384 -0.8125,0.75 0,0 0.34375,1.5 0.34375,1.5 0.0959,0.41941 0.6335,0.75 1.1875,0.75 0,0 5,0 5,0 0.55398,0 0.89146,-0.33059 0.78125,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.10816,-0.4116 -0.6416,-0.74999 -1.1875,-0.75 0,0 -4.9375,0 -4.9375,0 z m 8.875,0 c -0.54592,0 -0.89342,0.3384 -0.78125,0.75 1e-5,0 0.40625,1.5 0.40625,1.5 0.11428,0.41941 0.66475,0.75 1.21875,0.75 0,0 5,0 5,0 0.55398,0 0.87858,-0.33059 0.75,-0.75 0,0 -0.4375,-1.5 -0.4375,-1.5 -0.12618,-0.4116 -0.67284,-0.75 -1.21875,-0.75 0,0 -4.9375,0 -4.9375,0 z m 11.84375,0 c -0.5459,10e-6 -0.8862,0.3384 -0.75,0.75 0,0 0.5,1.5 0.5,1.5 0.13877,0.41941 0.696,0.75 1.25,0.75 0,0 14,0 14,0 0.55401,0 0.85893,-0.33059 0.6875,-0.75 1e-5,0 -0.625,-1.5 -0.625,-1.5 -0.16824,-0.4116 -0.73533,-0.75 -1.28125,-0.75 0,0 -13.78125,0 -13.78125,0 z m 17.71875,0 c -0.54592,0 -0.82851,0.3384 -0.65625,0.75 0,0 0.625,1.5 0.625,1.5 0.17552,0.41941 0.7585,0.75 1.3125,0.75 0,0 5,0 5,0 0.55401,0 0.84605,-0.33059 0.65625,-0.75 0,0 -0.6875,-1.5 -0.6875,-1.5 -0.18626,-0.4116 -0.76659,-0.75 -1.3125,-0.75 0,0 -4.9375,0 -4.9375,0 z" - style="display:inline;fill:#888a85;fill-opacity:1;stroke:none;filter:url(#filter3695);enable-background:new" - inkscape:connector-curvature="0" /> - <g - transform="translate(11.980368,2.25)" - id="g3539" - style="display:inline;enable-background:new"> - <g - id="g3934" - transform="translate(-14,-150)"> - <path - style="display:inline;fill:url(#linearGradient3778);fill-opacity:1;stroke:none;enable-background:new" - d="m 57.797201,392 c -0.50195,0 -1.04457,0.3305 -1.21721,0.74243 0,0 -0.62865,1.49994 -0.62865,1.49994 -0.17565,0.41909 0.0921,0.75763 0.60083,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 1.05052,-0.33854 1.21411,-0.75763 0,0 0.58552,-1.49994 0.58552,-1.49994 C 63.104421,392.3305 62.829351,392 62.327401,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -1.03235,0.3305 -1.18975,0.74243 0,0 -0.5732,1.49994 -0.5732,1.49994 -0.16014,0.41909 0.12009,0.75763 0.62886,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 1.038,-0.33854 1.18608,-0.75763 0,0 0.53006,-1.49994 0.53006,-1.49994 C 71.271001,392.3305 70.983711,392 70.481761,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -1.02012,0.3305 -1.16229,0.74243 0,0 -0.51772,1.49994 -0.51772,1.49994 -0.14465,0.41909 0.14809,0.75763 0.65687,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 1.02548,-0.33854 1.15808,-0.75763 0,0 0.47458,-1.49994 0.47458,-1.49994 C 79.437591,392.3305 79.138071,392 78.636131,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -1.00791,0.3305 -1.13484,0.74243 0,0 -0.46225,1.49994 -0.46225,1.49994 -0.12915,0.41909 0.17611,0.75763 0.68488,0.75763 0,0 4.59184,0 4.59184,0 0.50878,0 1.01296,-0.33854 1.13006,-0.75763 0,0 0.4191,-1.49994 0.4191,-1.49994 C 87.604171,392.3305 87.292431,392 86.790491,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.99568,0.3305 -1.10738,0.74243 0,0 -0.40679,1.49994 -0.40679,1.49994 -0.11365,0.41909 0.20413,0.75763 0.71291,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 1.00044,-0.33854 1.10203,-0.75763 0,0 0.36364,-1.49994 0.36364,-1.49994 0.0999,-0.41193 -0.2241,-0.74243 -0.72605,-0.74243 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.98346,0.3305 -1.07993,0.74243 0,0 -0.35131,1.49994 -0.35131,1.49994 -0.0982,0.41909 0.23215,0.75763 0.74093,0.75763 0,0 4.591819,0 4.591819,0 0.50879,0 0.98793,-0.33854 1.07403,-0.75763 0,0 0.30817,-1.49994 0.30817,-1.49994 0.0846,-0.41193 -0.25156,-0.74243 -0.75352,-0.74242 0,0 -4.530189,-10e-6 -4.530189,-10e-6 0,0 0,0 0,0 m 8.154359,0 c -0.50194,0 -0.97123,0.3305 -1.05248,0.74243 0,0 -0.29584,1.49994 -0.29584,1.49994 -0.0827,0.41909 0.26017,0.75763 0.76895,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.9754,-0.33854 1.046,-0.75763 0,0 0.2527,-1.49994 0.2527,-1.49994 C 112.10394,392.3305 111.75552,392 111.25357,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,10e-6 c -0.50193,-10e-6 -0.959,0.33049 -1.02501,0.74242 0,0 -0.24037,1.49994 -0.24037,1.49994 -0.0672,0.41909 0.28818,0.75763 0.79696,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.96288,-0.33854 1.01799,-0.75763 0,0 0.19723,-1.49994 0.19723,-1.49994 C 120.27056,392.3305 119.90988,392 119.40794,392 c 0,0 -4.53021,10e-6 -4.53021,10e-6 0,0 0,0 0,0 M 123.0321,392 c -0.50194,0 -0.94678,0.3305 -0.99756,0.74243 0,0 -0.1849,1.49994 -0.1849,1.49994 -0.0517,0.41909 0.31621,0.75763 0.82497,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.95036,-0.33854 0.98997,-0.75763 0,0 0.14175,-1.49994 0.14175,-1.49994 C 128.43707,392.33049 128.06424,392 127.5623,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,10e-6 -0.93456,0.3305 -0.9701,0.74243 0,0 -0.12943,1.49994 -0.12943,1.49994 -0.0362,0.41909 0.34421,0.75763 0.85299,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.93785,-0.33854 0.96196,-0.75763 0,0 0.0863,-1.49994 0.0863,-1.49994 C 136.60371,392.3305 136.21864,392 135.71668,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -0.92233,0.33049 -0.94265,0.74243 0,0 -0.074,1.49994 -0.074,1.49994 -0.0207,0.41909 0.37224,0.75763 0.88101,0.75763 0,0 4.59184,0 4.59184,0 0.50879,0 0.92532,-0.33854 0.93393,-0.75763 0,0 0.0308,-1.49994 0.0308,-1.49994 0.008,-0.41193 -0.38883,-0.74243 -0.89079,-0.74243 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -0.91011,0.3305 -0.91519,0.74243 0,0 -0.0185,1.49994 -0.0185,1.49994 -0.005,0.41909 0.40025,0.75763 0.90903,0.75763 0,0 4.59185,0 4.59185,0 0.50876,0 0.91279,-0.33854 0.9059,-0.75763 0,0 -0.0247,-1.49994 -0.0247,-1.49994 -0.007,-0.41193 -0.4163,-0.74242 -0.91824,-0.74243 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -0.8979,0.3305 -0.88774,0.74243 0,0 0.037,1.49994 0.037,1.49994 0.0103,0.41909 0.42827,0.75763 0.93705,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.90029,-0.33854 0.8779,-0.75763 0,0 -0.0801,-1.49994 -0.0801,-1.49994 -0.022,-0.41193 -0.44376,-0.74243 -0.9457,-0.74242 0,0 -4.5302,-10e-6 -4.5302,-10e-6 0,0 0,0 0,0 m 8.15437,0 c -0.50196,0 -0.88568,0.3305 -0.86029,0.74243 0,0 0.0925,1.49994 0.0925,1.49994 0.0258,0.41909 0.45629,0.75763 0.96506,0.75763 0,0 11.93878,0 11.93878,0 0.50877,0 0.87663,-0.33854 0.82497,-0.75763 0,0 -0.1849,-1.49994 -0.1849,-1.49994 -0.0508,-0.41193 -0.49561,-0.74242 -0.99755,-0.74243 0,0 -11.77852,0 -11.77852,0 0,0 0,0 0,0 m 20.83891,0 c -0.50194,0 -0.85443,0.33049 -0.79011,0.74243 0,0 0.2342,1.49994 0.2342,1.49994 0.0654,0.41909 0.52789,0.75763 1.03667,0.75763 0,0 4.59184,0 4.59184,0 0.50878,0 0.85577,-0.33854 0.77827,-0.75763 0,0 -0.27735,-1.49994 -0.27735,-1.49994 C 190.14014,392.3305 189.67498,392 189.17303,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -0.84222,0.3305 -0.76266,0.74243 0,0 0.28967,1.49994 0.28967,1.49994 0.0809,0.41909 0.55591,0.75763 1.06469,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.84324,-0.33854 0.75025,-0.75763 0,0 -0.33282,-1.49994 -0.33282,-1.49994 -0.0914,-0.41193 -0.56882,-0.74242 -1.07076,-0.74243 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.82999,0.3305 -0.73521,0.74243 0,0 0.34515,1.49994 0.34515,1.49994 0.0964,0.41909 0.58393,0.75763 1.0927,0.75763 0,0 4.59185,0 4.59185,0 0.50876,0 0.83072,-0.33854 0.72223,-0.75763 0,0 -0.38829,-1.49994 -0.38829,-1.49994 C 206.47335,392.3305 205.9837,392 205.48176,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 10.87248,0 c -0.50194,10e-6 -0.81369,0.3305 -0.6986,0.74243 0,0 0.41911,1.49994 0.41911,1.49994 0.1171,0.41909 0.62128,0.75763 1.13006,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.81403,-0.33854 0.68488,-0.75763 0,0 -0.46225,-1.49994 -0.46225,-1.49994 C 217.36212,392.33049 216.85618,392 216.35423,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -0.80147,0.33049 -0.67114,0.74243 0,0 0.47458,1.49994 0.47458,1.49994 0.1326,0.41909 0.6493,0.75763 1.15808,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.80152,-0.33854 0.65687,-0.75763 0,0 -0.51772,-1.49994 -0.51772,-1.49994 C 225.52871,392.3305 225.01055,392 224.5086,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -0.78926,0.3305 -0.64369,0.74243 0,0 0.53005,1.49994 0.53005,1.49994 0.14809,0.41909 0.67732,0.75763 1.18609,0.75763 0,0 4.59184,0 4.59184,0 0.50878,0 0.789,-0.33854 0.62885,-0.75763 0,0 -0.57319,-1.49994 -0.57319,-1.49994 C 233.6953,392.3305 233.16491,392 232.66297,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.77703,0.3305 -0.61623,0.74243 0,0 0.58551,1.49994 0.58551,1.49994 0.1636,0.41909 0.70534,0.75763 1.21412,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.77647,-0.33854 0.60082,-0.75763 0,0 -0.62865,-1.49994 -0.62865,-1.49994 -0.17265,-0.41193 -0.71526,-0.74242 -1.2172,-0.74243 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0" - id="path3519" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3780);fill-opacity:1;stroke:none;enable-background:new" - d="m 59.562374,387.99172 c -0.492566,0 -1.02148,0.33244 -1.186454,0.74672 0,0 -0.600568,1.50823 -0.600568,1.50823 -0.167765,0.42132 0.09855,0.76162 0.597605,0.76162 0,0 4.50446,0 4.50446,0 0.499096,0 1.027112,-0.3403 1.183361,-0.76162 0,0 0.559364,-1.50823 0.559364,-1.50823 0.153638,-0.41428 -0.11962,-0.74672 -0.612187,-0.74672 0,0 -4.445581,0 -4.445581,0 0,0 0,0 0,0 m 16.004072,0 c -0.492566,0 -0.998121,0.33244 -1.133975,0.74672 0,0 -0.494591,1.50823 -0.494591,1.50823 -0.138162,0.42132 0.152036,0.76162 0.651132,0.76162 0,0 4.50446,0 4.50446,0 0.499096,0 1.00319,-0.3403 1.129833,-0.76162 0,0 0.453378,-1.50823 0.453378,-1.50823 0.124537,-0.41428 -0.172079,-0.74672 -0.664645,-0.74672 0,0 -4.445592,0 -4.445592,0 0,0 0,0 0,0 m 8.002041,0 c -0.492566,0 -0.986442,0.33244 -1.107745,0.74672 0,0 -0.441599,1.50823 -0.441599,1.50823 -0.123358,0.42132 0.1788,0.76162 0.677896,0.76162 0,0 4.50445,0 4.50445,0 0.499096,0 0.991238,-0.3403 1.10309,-0.76162 0,0 0.400375,-1.50823 0.400375,-1.50823 0.109986,-0.41428 -0.198319,-0.74672 -0.690895,-0.74672 0,0 -4.445572,0 -4.445572,0 0,0 0,0 0,0 m 8.002042,0 c -0.492567,0 -0.974764,0.33244 -1.081506,0.74672 0,0 -0.388616,1.50823 -0.388616,1.50823 -0.108546,0.42132 0.205563,0.76162 0.70465,0.76162 0,0 4.504469,-10e-6 4.504469,-10e-6 0.499086,10e-6 0.979278,-0.34029 1.076316,-0.76161 0,0 0.347392,-1.50823 0.347392,-1.50823 0.09543,-0.41428 -0.224568,-0.74672 -0.717124,-0.74672 0,0 -4.445581,0 -4.445581,0 0,0 0,0 0,0 m 8.002041,0 c -0.492567,0 -0.963095,0.33244 -1.055277,0.74672 0,0 -0.335612,1.50823 -0.335612,1.50823 -0.09371,0.42132 0.232307,0.76162 0.731413,0.76161 0,0 4.504446,10e-6 4.504446,10e-6 0.4991,0 0.96733,-0.3403 1.04957,-0.76162 0,0 0.2944,-1.50823 0.2944,-1.50823 0.0808,-0.41428 -0.2508,-0.74672 -0.74337,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 11.5585,0 c -0.49257,0 -0.94622,0.33244 -1.01738,0.74672 0,0 -0.25908,1.50823 -0.25908,1.50823 -0.0724,0.42132 0.27098,0.76162 0.77008,0.76161 0,0 4.50445,10e-6 4.50445,10e-6 0.49909,0 0.95005,-0.3403 1.01091,-0.76162 0,0 0.21785,-1.50823 0.21785,-1.50823 0.0599,-0.41428 -0.28868,-0.74672 -0.78126,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 8.00203,0 c -0.49256,0 -0.93454,0.33244 -0.99114,0.74672 0,0 -0.20607,1.50823 -0.20607,1.50823 -0.0575,0.42132 0.29773,0.76161 0.79683,0.76161 0,0 4.50445,10e-6 4.50445,10e-6 0.4991,0 0.9381,-0.3403 0.98415,-0.76162 0,0 0.16486,-1.50823 0.16486,-1.50823 0.0452,-0.41428 -0.31492,-0.74672 -0.80749,-0.74672 0,0 -4.44559,0 -4.44559,0 0,0 0,0 0,0 m 8.00205,0 c -0.49257,0 -0.92286,0.33244 -0.96491,0.74672 0,0 -0.15309,1.50823 -0.15309,1.50823 -0.0427,0.42132 0.32449,0.76161 0.82358,0.76162 0,0 4.50447,0 4.50447,0 0.49909,0 0.92613,-0.3403 0.95737,-0.76162 0,0 0.11188,-1.50823 0.11188,-1.50823 0.0307,-0.41428 -0.34115,-0.74672 -0.83372,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00203,0 c -0.49257,-10e-6 -0.91117,0.33244 -0.93867,0.74672 0,0 -0.10006,1.50823 -0.10006,1.50823 -0.028,0.42132 0.35124,0.76161 0.85034,0.76162 0,0 4.50446,0 4.50446,0 0.4991,0 0.91418,-0.3403 0.93062,-0.76162 0,0 0.0588,-1.50823 0.0588,-1.50823 0.0162,-0.41428 -0.36739,-0.74672 -0.85996,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 11.55851,0 c -0.49258,0 -0.89431,0.33244 -0.90079,0.74672 0,0 -0.0236,1.50823 -0.0236,1.50823 -0.007,0.42132 0.38991,0.76161 0.88901,0.76162 0,0 4.50445,0 4.50445,0 0.49909,0 0.89692,-0.3403 0.89198,-0.76162 0,0 -0.0176,-1.50823 -0.0176,-1.50823 -0.005,-0.41428 -0.40529,-0.74672 -0.89786,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 8.00203,0 c -0.49257,0 -0.88262,0.33244 -0.87454,0.74672 0,0 0.0294,1.50823 0.0294,1.50823 0.008,0.42132 0.41666,0.76162 0.91576,0.76162 0,0 4.50445,0 4.50445,0 0.4991,-10e-6 0.88495,-0.3403 0.86521,-0.76162 0,0 -0.0706,-1.50823 -0.0706,-1.50823 -0.0195,-0.41428 -0.43153,-0.74672 -0.9241,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00204,0 c -0.49257,0 -0.87095,0.33244 -0.84829,0.74672 0,0 0.0824,1.50823 0.0824,1.50823 0.0231,0.42132 0.44341,0.76162 0.9425,0.76162 0,0 4.50447,-10e-6 4.50447,-10e-6 0.49909,0 0.87298,-0.34029 0.83845,-0.76161 0,0 -0.12365,-1.50823 -0.12365,-1.50823 -0.034,-0.41428 -0.45777,-0.74672 -0.95034,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 8.00203,0 c -0.49256,0 -0.85926,0.33244 -0.82206,0.74672 0,0 0.13542,1.50823 0.13542,1.50823 0.0379,0.42132 0.47018,0.76162 0.96928,0.76162 0,0 4.50446,-10e-6 4.50446,-10e-6 0.49909,10e-6 0.86103,-0.34029 0.81169,-0.76161 0,0 -0.17664,-1.50823 -0.17664,-1.50823 -0.0485,-0.41428 -0.484,-0.74672 -0.97656,-0.74672 0,0 -4.44559,0 -4.44559,0 0,0 0,0 0,0 m 13.33673,0 c -0.49256,0 -0.83979,0.33244 -0.77832,0.74672 0,0 0.22373,1.50823 0.22373,1.50823 0.0625,0.42132 0.51479,0.76162 1.01387,0.76162 0,0 4.50446,-10e-6 4.50446,-10e-6 0.4991,0 0.8411,-0.34029 0.7671,-0.76161 0,0 -0.26496,-1.50823 -0.26496,-1.50823 -0.0727,-0.41428 -0.52773,-0.74672 -1.0203,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00204,0 c -0.49257,0 -0.82812,0.33244 -0.75211,0.74672 0,0 0.27674,1.50823 0.27674,1.50823 0.0773,0.42132 0.54154,0.76162 1.04064,0.76162 0,0 4.50446,-10e-6 4.50446,-10e-6 0.49908,10e-6 0.82915,-0.34029 0.74034,-0.76161 0,0 -0.31796,-1.50823 -0.31796,-1.50823 -0.0874,-0.41428 -0.55396,-0.74672 -1.04653,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00204,0 c -0.49257,0 -0.81644,0.33244 -0.72587,0.74672 0,0 0.32973,1.50823 0.32973,1.50823 0.0921,0.42132 0.56829,0.76162 1.06739,0.76161 0,0 4.50446,0 4.50446,0 0.49909,10e-6 0.8172,-0.34029 0.71358,-0.76161 0,0 -0.37094,-1.50823 -0.37094,-1.50823 -0.1019,-0.41428 -0.5802,-0.74672 -1.07278,-0.74673 0,0 -4.44557,10e-6 -4.44557,10e-6 0,0 0,0 0,0" - id="path3523" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3782);fill-opacity:1;stroke:none;enable-background:new" - d="m 55.676858,396 c -0.51226,0 -1.06894,0.33042 -1.24878,0.74227 0,0 -0.65494,1.49995 -0.65494,1.49995 -0.18302,0.41915 0.0872,0.75778 0.60663,0.75778 0,0 8.4375,0 8.4375,0 0.51937,0 1.0694,-0.33863 1.23269,-0.75778 0,0 0.58431,-1.49995 0.58431,-1.49995 0.16044,-0.41185 -0.12324,-0.74227 -0.6355,-0.74227 0,0 -8.32191,0 -8.32191,0 0,0 0,0 0,0 m 12.02054,0 c -0.51226,0 -1.05054,0.33042 -1.20746,0.74227 0,0 -0.57147,1.49995 -0.57147,1.49995 -0.1597,0.41915 0.12942,0.75778 0.6488,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.05635,-0.33863 1.20349,-0.75778 0,0 0.52652,-1.49995 0.52652,-1.49995 C 73.129358,396.33042 72.832948,396 72.320688,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -1.03781,0.33042 -1.17887,0.74227 0,0 -0.51368,1.49995 -0.51368,1.49995 -0.14354,0.41915 0.15862,0.75778 0.678,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.04332,-0.33863 1.17429,-0.75778 0,0 0.46874,-1.49995 0.46874,-1.49995 C 81.464008,396.33042 81.154868,396 80.642608,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -1.02509,0.33042 -1.15027,0.74227 0,0 -0.45589,1.49995 -0.45589,1.49995 -0.1274,0.41915 0.18781,0.75778 0.70719,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.03026,-0.33863 1.1451,-0.75778 0,0 0.41094,-1.49995 0.41094,-1.49995 C 89.798658,396.33042 89.476788,396 88.964528,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -1.01236,0.33042 -1.12168,0.74227 0,0 -0.3981,1.49995 -0.3981,1.49995 -0.11125,0.41915 0.21701,0.75778 0.73639,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.01722,-0.33863 1.1159,-0.75778 0,0 0.35316,-1.49995 0.35316,-1.49995 0.097,-0.41185 -0.23763,-0.74227 -0.74989,-0.74227 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.321912,0 c -0.51226,0 -0.999622,0.33043 -1.093072,0.74227 0,0 -0.34031,1.49995 -0.34031,1.49995 -0.0951,0.41915 0.2462,0.75778 0.765582,0.75778 0,0 4.6875,0 4.6875,0 0.51936,0 1.00417,-0.33863 1.08671,-0.75778 0,0 0.29536,-1.49995 0.29536,-1.49995 0.0811,-0.41185 -0.26623,-0.74227 -0.77848,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.98689,0.33042 -1.06447,0.74227 0,0 -0.28252,1.49995 -0.28252,1.49995 -0.079,0.41915 0.27539,0.75778 0.79477,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 0.99113,-0.33863 1.05752,-0.75778 0,0 0.23758,-1.49995 0.23758,-1.49995 0.0652,-0.41185 -0.29483,-0.74227 -0.80709,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.97416,0.33042 -1.03587,0.74227 0,0 -0.22474,1.49995 -0.22474,1.49995 -0.0628,0.41915 0.30459,0.75778 0.82397,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 0.97808,-0.33863 1.02833,-0.75779 0,0 0.17978,-1.49994 0.17978,-1.49994 C 123.13728,396.33042 122.76446,396 122.2522,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.96144,0.33042 -1.00728,0.74227 0,0 -0.16694,1.49995 -0.16694,1.49995 -0.0467,0.41915 0.33378,0.75778 0.85316,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 0.96504,-0.33863 0.99913,-0.75779 0,0 0.122,-1.49994 0.122,-1.49994 C 131.4719,396.33042 131.08637,396 130.57411,396 c 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32191,0 c -0.51225,0 -0.9487,0.33042 -0.97867,0.74227 0,0 -0.10916,1.49994 -0.10916,1.49994 -0.0305,0.41916 0.36298,0.75779 0.88236,0.75779 0,0 4.6875,0 4.6875,0 0.51937,0 0.95199,-0.33863 0.96993,-0.75779 0,0 0.0642,-1.49995 0.0642,-1.49995 C 139.8065,396.33042 139.40828,396 138.89602,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.93596,0.33042 -0.95008,0.74226 0,0 -0.0514,1.49995 -0.0514,1.49995 -0.0144,0.41916 0.39217,0.75779 0.91154,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.93895,-0.33863 0.94074,-0.75778 0,0 0.006,-1.49995 0.006,-1.49995 0.002,-0.41184 -0.40921,-0.74227 -0.92147,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.92323,0.33042 -0.92148,0.74226 0,0 0.006,1.49995 0.006,1.49995 0.002,0.41916 0.42137,0.75779 0.94074,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.92591,-0.33863 0.91155,-0.75778 0,0 -0.0514,-1.49995 -0.0514,-1.49995 -0.0141,-0.41185 -0.4378,-0.74227 -0.95007,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.91052,0.33043 -0.89289,0.74227 0,0 0.0642,1.49995 0.0642,1.49995 0.018,0.41915 0.45057,0.75778 0.96994,0.75778 0,0 4.6875,0 4.6875,0 0.51938,0 0.91286,-0.33863 0.88236,-0.75778 0,0 -0.10916,-1.49995 -0.10916,-1.49995 -0.03,-0.41185 -0.46641,-0.74227 -0.97868,-0.74227 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32191,0 c -0.51226,0 -0.89778,0.33042 -0.86428,0.74227 0,0 0.122,1.49995 0.122,1.49995 0.0341,0.41915 0.47976,0.75778 0.99913,0.75778 0,0 8.4375,0 8.4375,0 0.51938,0 0.89402,-0.33863 0.84019,-0.75778 0,0 -0.19263,-1.49995 -0.19263,-1.49995 C 176.84849,396.33042 176.39366,396 175.8814,396 c 0,0 -8.32192,0 -8.32192,0 0,0 0,0 0,0 m 17.5685,0 c -0.51226,0 -0.8709,0.33042 -0.80392,0.74226 0,0 0.244,1.49995 0.244,1.49995 0.0682,0.41916 0.5414,0.75779 1.06077,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.87227,-0.33863 0.79153,-0.75778 0,0 -0.28895,-1.49995 -0.28895,-1.49995 C 190.73961,396.33042 190.26353,396 189.75126,396 c 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32192,0 c -0.51227,0 -0.85818,0.33043 -0.77532,0.74227 0,0 0.30178,1.49995 0.30178,1.49995 0.0843,0.41915 0.5706,0.75778 1.08997,0.75778 0,0 4.6875,0 4.6875,0 0.51938,0 0.85923,-0.33863 0.76233,-0.75778 0,0 -0.34673,-1.49995 -0.34673,-1.49995 C 199.07423,396.33042 198.58544,396 198.07318,396 c 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32191,0 c -0.51226,0 -0.84544,0.33042 -0.74671,0.74227 0,0 0.35957,1.49995 0.35957,1.49995 0.10049,0.41915 0.59979,0.75778 1.11916,0.75778 0,0 4.68751,0 4.68751,0 0.51937,0 0.84617,-0.33863 0.73312,-0.75778 0,0 -0.40452,-1.49995 -0.40452,-1.49995 C 207.40887,396.33042 206.90736,396 206.39511,396 c 0,0 -4.6233,0 -4.6233,0 0,0 0,0 0,0 m 11.09589,0 c -0.51226,0 -0.82846,0.33042 -0.70858,0.74227 0,0 0.43662,1.49994 0.43662,1.49994 0.12202,0.41916 0.63872,0.75779 1.15809,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.82878,-0.33863 0.6942,-0.75779 0,0 -0.48157,-1.49995 -0.48157,-1.49995 C 218.52174,396.33042 218.00325,396 217.49099,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.81573,0.33042 -0.67999,0.74226 0,0 0.49442,1.49995 0.49442,1.49995 0.13816,0.41916 0.66791,0.75779 1.18728,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.81574,-0.33863 0.66501,-0.75778 0,0 -0.53936,-1.49995 -0.53936,-1.49995 C 226.85638,396.33043 226.32517,396 225.81291,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.80301,0.33043 -0.6514,0.74227 0,0 0.5522,1.49995 0.5522,1.49995 0.15433,0.41915 0.69712,0.75778 1.21649,0.75778 0,0 4.6875,0 4.6875,0 0.51938,0 0.80269,-0.33863 0.63582,-0.75778 0,0 -0.59716,-1.49995 -0.59716,-1.49995 C 235.19103,396.33042 234.64709,396 234.13483,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0" - id="path3525" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3784);fill-opacity:1;stroke:none;enable-background:new" - d="m 54.028132,400 c -0.523009,0 -1.09378,0.33823 -1.28125,0.75 0,0 -0.6875,1.5 -0.6875,1.5 -0.190879,0.41924 0.09455,0.75 0.625,0.75 10e-7,0 11.46875,0 11.46875,0 0.53043,0 1.08532,-0.33076 1.25,-0.75 -10e-7,0 0.59375,-1.5 0.59375,-1.5 0.16174,-0.41177 -0.13325,-0.75 -0.65625,-0.75 10e-7,0 -11.3125,0 -11.3125,0 z m 15.09375,0 c -0.523008,0 -1.06068,0.33823 -1.21875,0.75 0,0 -0.59375,1.5 -0.59375,1.5 -0.160941,0.41924 0.15707,0.75 0.6875,0.75 -4e-6,0 4.78125,0 4.78125,0 0.530433,0 1.07092,-0.33076 1.21875,-0.75 -10e-7,0 0.53125,-1.5 0.53125,-1.5 0.145203,-0.41177 -0.16449,-0.75 -0.6875,-0.75 -10e-7,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523003,0 -1.04598,0.33823 -1.1875,0.75 -2e-6,0 -0.53125,1.5 -0.53125,1.5 -0.144088,0.41924 0.15707,0.75 0.6875,0.75 2e-6,0 4.8125,0 4.8125,0 0.530431,0 1.05651,-0.33076 1.1875,-0.75 -2e-6,0 0.46875,-1.5 0.46875,-1.5 0.128662,-0.41177 -0.19574,-0.75 -0.71875,-0.75 10e-7,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523009,0 -1.06251,0.33823 -1.1875,0.75 2e-6,0 -0.4375,1.5 -0.4375,1.5 -0.127249,0.41924 0.18832,0.75 0.71875,0.75 -3e-6,0 4.78125,0 4.78125,0 0.530423,0 1.07335,-0.33076 1.1875,-0.75 0,0 0.40625,-1.5 0.40625,-1.5 0.112118,-0.41177 -0.227,-0.75 -0.75,-0.75 -3e-6,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523007,0 -1.04781,0.33823 -1.15625,0.75 10e-7,0 -0.375,1.5 -0.375,1.5 -0.11041,0.41924 0.21958,0.75 0.75,0.75 -3e-6,0 4.78125,0 4.78125,0 0.530418,0 1.02769,-0.33076 1.125,-0.75 -10e-7,0 0.374998,-1.5 0.374998,-1.5 0.0956,-0.41177 -0.258238,-0.75 -0.781248,-0.75 -10e-7,0 -4.71875,0 -4.71875,0 z m 8.499998,0 c -0.523,0 -1.0331,0.33823 -1.125,0.75 0,0 -0.34375,1.5 -0.34375,1.5 -0.0936,0.41924 0.28208,0.75 0.8125,0.75 0,0 4.78125,0 4.78125,0 0.53042,0 1.01329,-0.33076 1.09375,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.079,-0.41177 -0.25824,-0.75 -0.78125,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -1.01839,0.33823 -1.09375,0.75 0,0 -0.28125,1.5 -0.28125,1.5 -0.0767,0.41924 0.28208,0.75 0.8125,0.75 0,0 4.8125,0 4.8125,0 0.53042,0 0.99888,-0.33076 1.0625,-0.75 0,0 0.21875,-1.5 0.21875,-1.5 0.0625,-0.41177 -0.2895,-0.75 -0.8125,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.46875,0 c -0.52301,0 -0.97245,0.33823 -1.03125,0.75 0,0 -0.21875,1.5 -0.21875,1.5 -0.0599,0.41924 0.31333,0.75 0.84375,0.75 0,0 4.78125,0 4.78125,0 0.53042,0 1.01571,-0.33075 1.0625,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0459,-0.41179 -0.32074,-0.75 -0.84375,-0.75 0,0 -4.75,0 -4.75,0 z m 8.5,0 c -0.523,0 -0.95773,0.33823 -1,0.75 0,0 -0.15625,1.5 -0.15625,1.5 -0.043,0.41924 0.34457,0.75 0.875,0.75 0,0 4.78125,0 4.78125,0 0.53044,0 0.97006,-0.33075 1,-0.75 1e-5,0 0.125,-1.5 0.125,-1.5 0.0294,-0.41177 -0.38324,-0.75 -0.90625,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -0.94302,0.33822 -0.96875,0.75 0,-10e-6 -0.0937,1.5 -0.0937,1.5 -0.0262,0.41925 0.37582,0.75 0.90625,0.75 0,0 4.78125,0 4.78125,0 0.53043,0 0.95565,-0.33076 0.96875,-0.75 1e-5,0 0.0625,-1.5 0.0625,-1.5 0.0129,-0.41177 -0.4145,-0.75 -0.9375,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -0.95956,0.33823 -0.96875,0.75 0,0 -0.0312,1.5 -0.0312,1.5 -0.009,0.41925 0.40707,0.75 0.9375,0.75 0,0 4.8125,0 4.8125,0 0.53043,0 0.94124,-0.33076 0.9375,-0.75 0,0 0,-1.5 0,-1.5 -0.004,-0.41177 -0.44574,-0.75 -0.96875,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523,0 -0.94485,0.33823 -0.9375,0.75 1e-5,0 0.0312,1.5 0.0312,1.5 0.007,0.41924 0.43832,0.75 0.96875,0.75 0,0 4.78125,0 4.78125,0 0.53043,0 0.95809,-0.33076 0.9375,-0.75 0,0 -0.0937,-1.5 -0.0937,-1.5 -0.0202,-0.41177 -0.44574,-0.75 -0.96875,-0.75 -1e-5,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52302,0 -0.93014,0.33823 -0.90625,0.75 -1e-5,0 0.0937,1.5 0.0937,1.5 0.0243,0.41924 0.46957,0.75 1,0.75 l 14.34375,0 c 0.53043,0 0.93114,-0.33076 0.875,-0.75 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0551,-0.41177 -0.50825,-0.75 -1.03125,-0.75 l -14.15625,0 z m 51.90625,0 c -0.523,0 -0.84374,0.33823 -0.71875,0.75 0,0 0.46875,1.5 0.46875,1.5 0.12725,0.41924 0.65708,0.75 1.1875,0.75 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.8591,-0.33076 0.71875,-0.75 1e-5,0 -0.5,-1.5 -0.5,-1.5 -0.13785,-0.41177 -0.69574,-0.75 -1.21875,-0.75 1e-5,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52302,0 -0.82902,0.33823 -0.6875,0.75 0,0 0.53125,1.5 0.53125,1.5 0.14408,0.41924 0.68833,0.75 1.21875,0.75 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.81345,-0.33075 0.65625,-0.75 0,0 -0.5625,-1.5 -0.5625,-1.5 -0.15438,-0.41177 -0.69575,-0.75 -1.21875,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -0.81432,0.33822 -0.65625,0.75 0,-10e-6 0.59375,1.5 0.59375,1.5 0.16095,0.41925 0.71958,0.75 1.25,0.75 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.79903,-0.33075 0.625,-0.75 0,0 -0.625,-1.5 -0.625,-1.5 -0.17093,-0.41177 -0.72699,-0.75 -1.25,-0.75 1e-5,0 -4.71875,0 -4.71875,0 z" - id="path3527" - sodipodi:nodetypes="cccccsccccccsccccccscscsccccscscccsccccsccccccscsccccccccccccccccccccccccccccsccccscccscccccccccccccscccccsccsccccccccccscscsccccsccccccscscccsc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3786);fill-opacity:1;stroke:none;enable-background:new" - d="m 51.903041,404.00001 c -0.53421,0 -1.12119,0.33025 -1.31681,0.74194 0,0 -0.7127,1.49993 -0.7127,1.49993 -0.19925,0.41932 0.0761,0.75812 0.61802,0.75812 0,0 15.65218,0 15.65218,0 0.54195,0 1.11084,-0.3388 1.27492,-0.75812 0,0 0.58694,-1.49993 0.58694,-1.49993 0.16109,-0.41169 -0.13976,-0.74194 -0.67398,-0.74194 0,0 -15.42857,0 -15.42857,0 0,0 0,0 0,0 m 19.28572,0 c -0.53422,0 -1.09043,0.33025 -1.24769,0.74194 0,0 -0.57296,1.49993 -0.57296,1.49993 -0.16017,0.41932 0.1467,0.75812 0.68866,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 1.09664,-0.3388 1.24315,-0.75812 0,0 0.52404,-1.49993 0.52404,-1.49993 0.14384,-0.41169 -0.17086,-0.74194 -0.70508,-0.74194 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -1.07658,0.33025 -1.21658,0.74194 0,0 -0.51008,1.49993 -0.51008,1.49993 -0.14259,0.41932 0.17849,0.75812 0.72045,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 1.08244,-0.3388 1.21136,-0.75812 0,0 0.46116,-1.49993 0.46116,-1.49993 0.12657,-0.41169 -0.20197,-0.74194 -0.73619,-0.74194 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -1.06274,0.33025 -1.18548,0.74194 0,0 -0.44718,1.49993 -0.44718,1.49993 -0.12502,0.41932 0.21027,0.75812 0.75222,0.75812 0,0 4.89131,0 4.89131,0 0.54195,0 1.06823,-0.3388 1.17957,-0.75812 0,0 0.39828,-1.49993 0.39828,-1.49993 0.10931,-0.41169 -0.23308,-0.74194 -0.76729,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -1.04889,0.33025 -1.15437,0.74194 0,0 -0.3843,1.49993 -0.3843,1.49993 -0.10744,0.41932 0.24205,0.75812 0.78401,0.75812 0,0 4.891309,0 4.891309,0 0.54195,0 1.05402,-0.3388 1.14778,-0.75812 0,0 0.33539,-1.49993 0.33539,-1.49993 0.0921,-0.41169 -0.26418,-0.74194 -0.79839,-0.74194 0,0 -4.821429,0 -4.821429,0 0,0 0,0 0,0 m 8.678579,0 c -0.53421,0 -1.03506,0.33025 -1.12327,0.74194 0,0 -0.32142,1.49993 -0.32142,1.49993 -0.0898,0.41932 0.27385,0.75812 0.81581,0.75812 0,0 4.89129,0 4.89129,0 0.54197,0 1.03982,-0.3388 1.11601,-0.75812 0,0 0.2725,-1.49993 0.2725,-1.49993 0.0748,-0.41169 -0.29528,-0.74194 -0.82949,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 M 114.58162,404 c -0.53421,10e-6 -1.02121,0.33026 -1.09217,0.74195 0,0 -0.25853,1.49993 -0.25853,1.49993 -0.0723,0.41932 0.30564,0.75812 0.8476,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 1.02561,-0.3388 1.08421,-0.75812 0,0 0.20962,-1.49993 0.20962,-1.49993 0.0575,-0.41169 -0.32639,-0.74194 -0.8606,-0.74194 0,0 -4.82143,-10e-6 -4.82143,-10e-6 0,0 0,0 0,0 m 8.67857,10e-6 c -0.53421,-10e-6 -1.00736,0.33025 -1.06106,0.74194 0,0 -0.19564,1.49993 -0.19564,1.49993 -0.0547,0.41932 0.33742,0.75812 0.87936,0.75812 0,0 4.89132,0 4.89132,0 0.54195,0 1.0114,-0.3388 1.05242,-0.75812 0,0 0.14674,-1.49993 0.14674,-1.49993 0.0403,-0.41169 -0.3575,-0.74194 -0.89171,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53421,0 -0.99351,0.33025 -1.02995,0.74194 0,0 -0.13276,1.49993 -0.13276,1.49993 -0.0371,0.41932 0.36919,0.75812 0.91116,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 0.99721,-0.3388 1.02065,-0.75812 0,0 0.0839,-1.49993 0.0839,-1.49993 0.023,-0.41169 -0.3886,-0.74194 -0.92282,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53421,0 -0.97967,0.33025 -0.99884,0.74194 0,0 -0.0699,1.49993 -0.0699,1.49993 -0.0195,0.41932 0.40099,0.75812 0.94295,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 0.983,-0.3388 0.98886,-0.75812 0,0 0.021,-1.49993 0.021,-1.49993 0.006,-0.41169 -0.4197,-0.74194 -0.95392,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53421,0 -0.96582,0.33025 -0.96774,0.74194 0,0 -0.007,1.49993 -0.007,1.49993 -0.002,0.41932 0.43277,0.75812 0.97472,0.75812 0,0 4.89131,0 4.89131,0 0.54196,0 0.96879,-0.3388 0.95707,-0.75812 0,0 -0.0419,-1.49993 -0.0419,-1.49993 -0.0115,-0.41169 -0.45081,-0.74195 -0.98503,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67858,0 c -0.53422,0 -0.95198,0.33025 -0.93664,0.74194 0,0 0.0559,1.49993 0.0559,1.49993 0.0156,0.41932 0.46456,0.75812 1.00651,0.75812 0,0 19.56522,0 19.56522,0 0.54195,0 0.93091,-0.3388 0.87231,-0.75812 0,0 -0.20962,-1.49993 -0.20962,-1.49993 -0.0575,-0.41169 -0.53377,-0.74194 -1.06797,-0.74194 0,0 -19.28571,0 -19.28571,0 0,0 0,0 0,0 m 37.60714,0 c -0.53422,0 -0.89198,0.33025 -0.80185,0.74194 0,0 0.32841,1.49993 0.32841,1.49993 0.0918,0.41932 0.60229,0.75812 1.14424,0.75812 0,0 4.89131,0 4.89131,0 0.54195,0 0.89303,-0.3388 0.78755,-0.75812 0,0 -0.37731,-1.49993 -0.37731,-1.49993 -0.10356,-0.41169 -0.61671,-0.74194 -1.15092,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 20.25,0 c -0.53423,0 -0.85968,0.33025 -0.72927,0.74194 0,0 0.47514,1.49993 0.47514,1.49993 0.13283,0.41932 0.67645,0.75812 1.21841,0.75812 0,0 4.89131,0 4.89131,0 0.54195,0 0.8599,-0.3388 0.71339,-0.75812 0,0 -0.52404,-1.49993 -0.52404,-1.49993 -0.14385,-0.41169 -0.6893,-0.74194 -1.22352,-0.74194 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -0.84583,0.33025 -0.69816,0.74194 0,0 0.53802,1.49993 0.53802,1.49993 0.15042,0.41932 0.70824,0.75812 1.2502,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 0.84569,-0.3388 0.68161,-0.75812 0,0 -0.58694,-1.49993 -0.58694,-1.49993 -0.16109,-0.41169 -0.72039,-0.74194 -1.2546,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -0.83198,0.33025 -0.66705,0.74194 0,0 0.60091,1.49993 0.60091,1.49993 0.16799,0.41932 0.74002,0.75812 1.28198,0.75812 0,0 4.8913,0 4.8913,0 0.54195,0 0.83148,-0.3388 0.64982,-0.75812 0,0 -0.64982,-1.49993 -0.64982,-1.49993 -0.17835,-0.41169 -0.7515,-0.74195 -1.28571,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0" - id="path3529" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3788);fill-opacity:1;stroke:none;enable-background:new" - d="m 49.781741,408 c -0.54591,0 -1.14928,0.33016 -1.35357,0.74176 0,0 -0.7445,1.49994 -0.7445,1.49994 -0.20817,0.41941 0.0696,0.7583 0.62362,0.7583 0,0 9,0 9,0 0.554,0 1.15007,-0.33889 1.33579,-0.7583 0,0 0.66421,-1.49994 0.66421,-1.49994 0.18226,-0.4116 -0.11102,-0.74176 -0.65694,-0.74176 0,0 -8.86861,0 -8.86861,0 0,0 0,0 0,0 m 12.81022,0 c -0.54591,0 -1.1284,0.33016 -1.30665,0.74176 0,0 -0.64961,1.49994 -0.64961,1.49994 -0.18164,0.41941 0.11759,0.7583 0.67159,0.7583 0,0 7,0 7,0 0.554,0 1.13193,-0.33889 1.2952,-0.7583 0,0 0.58392,-1.49994 0.58392,-1.49994 0.16023,-0.4116 -0.15073,-0.74176 -0.69664,-0.74176 0,0 -6.89781,0 -6.89781,0 0,0 0,0 0,0 m 10.83942,0 c -0.54592,0 -1.11072,0.33016 -1.26695,0.74176 0,0 -0.56932,1.49994 -0.56932,1.49994 -0.15919,0.41941 0.15818,0.7583 0.71218,0.7583 0,0 8,0 8,0 0.554,0 1.11214,-0.33889 1.25092,-0.7583 0,0 0.49633,-1.49994 0.49633,-1.49994 0.1362,-0.4116 -0.19404,-0.74176 -0.73995,-0.74176 0,0 -7.88321,0 -7.88321,0 0,0 0,0 0,0 m 11.82481,0 c -0.54591,0 -1.09144,0.33016 -1.22363,0.74176 0,0 -0.48174,1.49994 -0.48174,1.49994 -0.13469,0.41941 0.20247,0.7583 0.75647,0.7583 0,0 48.999999,0 48.999999,0 0.554,0 1.02473,-0.33889 1.05535,-0.7583 0,0 0.10948,-1.49994 0.10948,-1.49994 0.03,-0.4116 -0.38535,-0.74176 -0.93126,-0.74175 0,0 -48.284669,-10e-6 -48.284669,-10e-6 0,0 0,0 0,0 m 52.226289,0 c -0.54591,0 -1.0063,0.33016 -1.03234,0.74176 0,0 -0.0949,1.49994 -0.0949,1.49994 -0.0265,0.41941 0.39803,0.7583 0.95204,0.7583 0,0 7.99999,0 7.99999,0 0.55401,0 1.00494,-0.33889 1.01107,-0.7583 0,0 0.0219,-1.49994 0.0219,-1.49994 0.006,-0.4116 -0.42865,-0.74176 -0.97457,-0.74176 0,0 -7.8832,0 -7.8832,0 0,0 0,0 0,0 m 11.8248,0 c -0.54591,0 -0.987,0.33016 -0.98901,0.74176 0,0 -0.007,1.49994 -0.007,1.49994 -0.002,0.41941 0.44231,0.7583 0.9963,0.7583 0,0 7,0 7,0 0.55401,0 0.98681,-0.33889 0.97048,-0.7583 0,0 -0.0584,-1.49994 -0.0584,-1.49994 -0.016,-0.4116 -0.46835,-0.74176 -1.01428,-0.74176 0,0 -6.89781,0 -6.89781,0 0,0 0,0 0,0 m 10.83942,0 c -0.54591,0 -0.96934,0.33016 -0.94931,0.74176 0,0 0.073,1.49994 0.073,1.49994 0.0201,0.41941 0.48262,0.7583 1.03662,0.7583 0,0 7,0 7,0 0.55401,0 0.96867,-0.33889 0.92989,-0.7583 0,0 -0.13868,-1.49994 -0.13868,-1.49994 -0.038,-0.4116 -0.50806,-0.74176 -1.05397,-0.74176 0,0 -6.89782,0 -6.89782,0 0,0 0,0 0,0 m 10.83942,0 c -0.54592,0 -0.95167,0.33016 -0.90961,0.74176 0,0 0.15328,1.49994 0.15328,1.49994 0.0429,0.41941 0.52349,0.7583 1.07749,0.7583 0,0 7,0 7,0 0.554,0 0.95053,-0.33889 0.8893,-0.7583 0,0 -0.21897,-1.49994 -0.21897,-1.49994 -0.0601,-0.4116 -0.54777,-0.74175 -1.09367,-0.74176 0,0 -6.89782,0 -6.89782,0 0,0 0,0 0,0 m 16.75182,0 c -0.54591,0 -0.92435,0.33015 -0.84824,0.74176 0,0 0.27736,1.49994 0.27736,1.49994 0.0776,0.41941 0.58622,0.7583 1.14022,0.7583 0,0 5,0 5,0 0.55401,0 0.92579,-0.33889 0.83395,-0.7583 0,0 -0.32845,-1.49994 -0.32845,-1.49994 -0.0901,-0.4116 -0.60191,-0.74176 -1.14783,-0.74176 0,0 -4.92701,0 -4.92701,0 0,0 0,0 0,0 m 8.86861,0 c -0.54591,0 -0.90989,0.33016 -0.81575,0.74176 0,0 0.34305,1.49994 0.34305,1.49994 0.0959,0.41941 0.61943,0.7583 1.17343,0.7583 0,0 5.00001,0 5.00001,0 0.55399,0 0.91094,-0.33889 0.80073,-0.7583 0,0 -0.39414,-1.49994 -0.39414,-1.49994 -0.10816,-0.4116 -0.63441,-0.74175 -1.18031,-0.74176 0,0 -4.92702,0 -4.92702,0 0,0 0,0 0,0 m 8.86862,0 c -0.54592,0 -0.89544,0.33016 -0.78327,0.74176 0,0 0.40874,1.49994 0.40874,1.49994 0.11429,0.41941 0.65264,0.7583 1.20664,0.7583 0,0 5.00001,0 5.00001,0 0.55399,0 0.8961,-0.33889 0.76752,-0.7583 0,0 -0.45984,-1.49994 -0.45984,-1.49994 C 211.48879,408.33016 210.94809,408 210.40218,408 c 0,0 -4.92701,0 -4.92701,0 0,0 0,0 0,0 m 11.82481,0 c -0.54591,10e-6 -0.87615,0.33016 -0.73995,0.74176 0,0 0.49633,1.49994 0.49633,1.49994 0.13878,0.41941 0.69692,0.7583 1.25092,0.7583 0,0 14,0 14,0 0.55401,0 0.86147,-0.33889 0.69004,-0.7583 0,0 -0.61312,-1.49994 -0.61312,-1.49994 C 232.21596,408.33016 231.64152,408 231.0956,408 c 0,0 -13.79562,0 -13.79562,0 0,0 0,0 0,0 m 17.73723,0 c -0.54591,0 -0.84724,0.33016 -0.67498,0.74176 0,0 0.62771,1.49994 0.62771,1.49994 0.17552,0.41941 0.76334,0.7583 1.31734,0.7583 0,0 5,0 5,0 0.55401,0 0.84663,-0.33889 0.65683,-0.7583 0,0 -0.67881,-1.49994 -0.67881,-1.49994 C 241.09903,408.33016 240.51014,408 239.96423,408 c 0,0 -4.92702,0 -4.92702,0 0,0 0,0 0,0" - id="path3531" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3790);fill-opacity:1;stroke:none;enable-background:new" - d="m 241.87787,404 c -0.53421,0 -0.81814,0.30153 -0.63594,0.67742 0,0 2.71396,5.59933 2.71396,5.59933 0.19472,0.40003 0.79739,0.72325 1.35139,0.72325 0,0 5.00001,0 5.00001,0 0.55399,0 0.83178,-0.32322 0.62361,-0.72325 0,0 -2.91394,-5.59933 -2.91394,-5.59933 C 247.82134,404.30153 247.23435,404 246.70013,404 c 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0" - id="path3533" - sodipodi:nodetypes="cccccccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3792);fill-opacity:1;stroke:none;enable-background:new" - d="m 238.07345,396 c -0.51226,0 -0.79028,0.30198 -0.6228,0.67834 0,0 2.49171,5.5994 2.49171,5.5994 0.17778,0.39951 0.74843,0.72226 1.27885,0.72226 0,0 4.78724,0 4.78724,0 0.53042,0 0.80324,-0.32276 0.61236,-0.72226 0,0 -2.67531,-5.5994 -2.67531,-5.5994 C 243.76567,396.30197 243.20899,396 242.69674,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0" - id="path3535" - sodipodi:nodetypes="cccccccccc" - inkscape:connector-curvature="0" /> - </g> - <path - style="display:inline;opacity:0.33333333;fill:url(#linearGradient3794);fill-opacity:1;stroke:none;enable-background:new" - d="m 50.1875,238.03125 c 0.02007,0.0973 0.01137,0.19758 -0.03125,0.3125 0,0 -0.562503,1.5 -0.5625,1.5 -0.156249,0.42132 -0.688407,0.75 -1.1875,0.75 0,0 -4.499999,0 -4.5,0 -0.07438,0 -0.124273,-0.0174 -0.1875,-0.0312 0.04048,0.25418 0.295631,0.4375 0.65625,0.4375 2e-6,0 4.5,0 4.5,0 0.499094,0 1.031251,-0.32868 1.1875,-0.75 -2e-6,0 0.5625,-1.5 0.5625,-1.5 0.130738,-0.35253 -0.07513,-0.63845 -0.4375,-0.71875 z m 16.03125,0 c 0.02727,0.0967 0.03425,0.19858 0,0.3125 0,0 -0.468747,1.5 -0.46875,1.5 -0.126643,0.42132 -0.625904,0.75 -1.125,0.75 0,0 -4.499997,0 -4.5,0 -0.07886,0 -0.150973,-0.0158 -0.21875,-0.0312 0.06009,0.25558 0.325655,0.4375 0.6875,0.4375 0,0 4.5,0 4.5,0 0.499093,0 0.998357,-0.32868 1.125,-0.75 0,0 0.46875,-1.5 0.46875,-1.5 0.104861,-0.34882 -0.105759,-0.63483 -0.46875,-0.71875 z m 16.03125,0 c 0.02829,0.0967 0.02624,0.19858 0,0.3125 0,0 -0.343746,1.5 -0.34375,1.5 -0.09704,0.42132 -0.56341,0.75 -1.0625,0.75 0,0 -4.499994,0 -4.5,0 -0.08984,0 -0.172788,-0.0113 -0.25,-0.0312 0.08088,0.25558 0.356912,0.4375 0.71875,0.4375 3e-6,0 4.5,0 4.5,0 0.499087,0 0.965462,-0.32868 1.0625,-0.75 10e-7,0 0.34375,-1.5 0.34375,-1.5 0.08035,-0.34882 -0.111673,-0.63483 -0.46875,-0.71875 z m -8,0.0312 c 0.02375,0.0897 0.0275,0.17768 0,0.28125 0,0 -0.406249,1.5 -0.40625,1.5 -0.111852,0.42132 -0.625904,0.75 -1.125,0.75 0,0 -4.499995,0 -4.5,0 -0.07886,0 -0.151537,-0.0158 -0.21875,-0.0312 0.06145,0.25558 0.325655,0.4375 0.6875,0.4375 2e-6,0 4.5,0 4.5,0 0.499093,0 1.013148,-0.32868 1.125,-0.75 -2e-6,0 0.40625,-1.5 0.40625,-1.5 0.08975,-0.33804 -0.121782,-0.59379 -0.46875,-0.6875 z m 16.03125,0 c 0.02511,0.0897 0.0202,0.17768 0,0.28125 0,0 -0.28125,1.5 -0.28125,1.5 -0.08224,0.42132 -0.563399,0.75 -1.0625,0.75 0,0 -4.499997,-1e-5 -4.5,0 -0.08984,0 -0.173488,-0.0113 -0.25,-0.0312 0.08224,0.25558 0.356898,0.43751 0.71875,0.4375 0,-1e-5 4.5,0 4.5,0 0.499098,0 0.98026,-0.32868 1.0625,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.06594,-0.33804 -0.12813,-0.59379 -0.46875,-0.6875 z m 11.5625,0 c 0.0319,0.0897 0.0462,0.17768 0.0312,0.28125 0,0 -0.21875,1.5 -0.21875,1.5 -0.0609,0.42132 -0.50091,0.75 -1,0.75 0,0 -4.5,-1e-5 -4.5,0 -0.10281,0 -0.19318,-0.0367 -0.28125,-0.0625 0.09258,0.27019 0.37568,0.46876 0.75,0.46875 0,-1e-5 4.5,0 4.5,0 0.49909,0 0.93914,-0.32868 1,-0.75 0,0 0.21875,-1.5 0.21875,-1.5 0.0475,-0.32893 -0.16492,-0.58634 -0.5,-0.6875 z m 8.03125,0 c 0.0326,0.0897 0.0426,0.17768 0.0312,0.28125 0,0 -0.15625,1.5 -0.15625,1.5 -0.046,0.42132 -0.46965,0.75 -0.96875,0.75 0,0 -4.53125,-1e-5 -4.53125,0 -0.10281,0 -0.19404,-0.0367 -0.28125,-0.0625 0.0947,0.27019 0.37568,0.46875 0.75,0.46875 0,-1e-5 4.53125,0 4.53125,0 0.4991,0 0.9227,-0.32868 0.96875,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0359,-0.32893 -0.16823,-0.58634 -0.5,-0.6875 z m 8.03125,0 c 0.0362,0.0897 0.0389,0.17768 0.0312,0.28125 0,0 -0.0937,1.5 -0.0937,1.5 -0.0312,0.42132 -0.46966,0.75 -0.96875,0.75 0,0 -4.5,0 -4.5,0 -0.11379,0 -0.2166,-0.0311 -0.3125,-0.0625 0.10553,0.27018 0.40693,0.46874 0.78125,0.46875 0,0 4.5,0 4.5,0 0.49909,0 0.93751,-0.32868 0.96875,-0.75 0,0 0.0937,-1.5 0.0937,-1.5 0.0237,-0.31982 -0.1793,-0.57963 -0.5,-0.6875 z m 8,0 c 0.0399,0.0897 0.0666,0.17768 0.0625,0.28125 0,0 -0.0625,1.5 -0.0625,1.5 -0.0164,0.42132 -0.40715,0.75 -0.90625,0.75 0,0 -4.53125,0 -4.53125,0 -0.11379,0 -0.2151,-0.0311 -0.3125,-0.0625 0.11639,0.27018 0.40693,0.46874 0.78125,0.46875 0,0 4.53125,0 4.53125,0 0.4991,0 0.88981,-0.32868 0.90625,-0.75 0,0 0.0625,-1.5 0.0625,-1.5 0.0125,-0.31982 -0.20542,-0.57963 -0.53125,-0.6875 z m 11.59375,0 c 0.0438,0.0897 0.0612,0.17768 0.0625,0.28125 0,0 0.0312,1.5 0.0312,1.5 0.005,0.42132 -0.40715,0.75 -0.90625,0.75 0,0 -4.5,0 -4.5,0 -0.12477,0 -0.23777,-0.0251 -0.34375,-0.0625 0.12812,0.27018 0.43818,0.46874 0.8125,0.46875 0,0 4.5,0 4.5,0 0.4991,0 0.91119,-0.32868 0.90625,-0.75 0,0 -0.0312,-1.5 -0.0312,-1.5 -0.004,-0.3107 -0.21707,-0.57366 -0.53125,-0.6875 z m 8,0 c 0.0474,0.0897 0.0889,0.17768 0.0937,0.28125 0,0 0.0625,1.5 0.0625,1.5 0.0197,0.42132 -0.34465,0.74999 -0.84375,0.75 0,0 -4.50001,0 -4.5,0 -0.13476,0 -0.25723,-0.0192 -0.375,-0.0625 0.14783,0.27019 0.46943,0.46875 0.84375,0.46875 -1e-5,0 4.5,0 4.5,0 0.4991,-1e-5 0.86349,-0.32868 0.84375,-0.75 -1e-5,0 -0.0625,-1.5 -0.0625,-1.5 -0.0146,-0.3107 -0.24291,-0.57366 -0.5625,-0.6875 z m 8.03125,0.0312 c 0.0425,0.0823 0.0861,0.15679 0.0937,0.25 0,0 0.125,1.5 0.125,1.5 0.0345,0.42132 -0.34465,0.74999 -0.84375,0.75 0,0 -4.49999,0 -4.5,0 -0.13475,0 -0.25853,-0.0192 -0.375,-0.0625 0.14994,0.27019 0.46943,0.46875 0.84375,0.46875 10e-6,0 4.5,0 4.5,0 0.4991,-1e-5 0.87828,-0.32868 0.84375,-0.75 0,0 -0.125,-1.5 -0.125,-1.5 -0.0245,-0.29827 -0.25743,-0.5354 -0.5625,-0.65625 z m 8.03125,0 c 0.0457,0.0823 0.0829,0.15679 0.0937,0.25 0,0 0.18749,1.5 0.1875,1.5 0.0493,0.42132 -0.31342,0.75 -0.8125,0.75 0,0 -4.5,0 -4.5,0 -0.14973,0 -0.30477,-0.041 -0.4375,-0.0937 0.16236,0.28495 0.51945,0.5 0.90625,0.5 0,0 4.5,0 4.5,0 0.49908,0 0.86184,-0.32868 0.8125,-0.75 -1e-5,0 -0.1875,-1.5 -0.1875,-1.5 -0.0339,-0.28999 -0.26475,-0.53145 -0.5625,-0.65625 z m 29.40625,0 c 0.0531,0.0799 0.10289,0.16011 0.125,0.25 0,0 0.375,1.5 0.375,1.5 0.10362,0.42132 -0.21966,0.75 -0.71875,0.75 0,0 -4.50001,-1e-5 -4.5,0 -0.17469,0 -0.34719,-0.0546 -0.5,-0.125 0.18196,0.30388 0.56613,0.53126 0.96875,0.53125 -1e-5,-1e-5 4.5,0 4.5,0 0.49909,0 0.82237,-0.32868 0.71875,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.0693,-0.2817 -0.29327,-0.52805 -0.59375,-0.65625 z m -16.03125,0.0312 c 0.0408,0.0724 0.0797,0.13867 0.0937,0.21875 0,0 0.28126,1.5 0.28125,1.5 0.074,0.42132 -0.28215,0.74999 -0.78125,0.75 0,0 -4.50001,0 -4.5,0 -0.15971,0 -0.32744,-0.0342 -0.46875,-0.0937 0.17322,0.29001 0.54647,0.5 0.9375,0.5 -1e-5,0 4.5,0 4.5,0 0.4991,-1e-5 0.85525,-0.32868 0.78125,-0.75 10e-6,0 -0.28125,-1.5 -0.28125,-1.5 -0.0478,-0.2724 -0.27888,-0.49363 -0.5625,-0.625 z m 8.03125,0 c 0.0418,0.0724 0.0769,0.13867 0.0937,0.21875 0,0 0.31249,1.5 0.3125,1.5 0.0888,0.42132 -0.21968,0.75 -0.71875,0.75 0,0 -4.53124,0 -4.53125,0 -0.15971,0 -0.32902,-0.0342 -0.46875,-0.0937 0.17641,0.29001 0.54645,0.5 0.9375,0.5 10e-6,0 4.53125,0 4.53125,0 0.49907,0 0.80756,-0.32868 0.71875,-0.75 -1e-5,0 -0.3125,-1.5 -0.3125,-1.5 -0.0568,-0.26928 -0.2868,-0.49272 -0.5625,-0.625 z M 48.5,242.03125 c 0.01899,0.0973 0.01335,0.19823 -0.03125,0.3125 0,0 -0.593752,1.5 -0.59375,1.5 -0.16359,0.41909 -0.678721,0.75 -1.1875,0.75 0,0 -4.59375,0 -4.59375,0 -0.08038,0 -0.150185,-0.0157 -0.21875,-0.0312 0.04535,0.25537 0.318671,0.4375 0.6875,0.4375 10e-7,0 4.59375,0 4.59375,0 0.50878,0 1.02391,-0.33091 1.1875,-0.75 -10e-7,0 0.59375,-1.5 0.59375,-1.5 0.138923,-0.35591 -0.05869,-0.64352 -0.4375,-0.71875 z m 8.1875,0 c 0.02228,0.0966 0.0088,0.19922 -0.03125,0.3125 0,0 -0.531246,1.5 -0.53125,1.5 -0.14808,0.41909 -0.678725,0.75 -1.1875,0.75 0,0 -4.593751,0 -4.59375,0 -0.06919,0 -0.127418,-0.0196 -0.1875,-0.0312 0.04793,0.25399 0.288611,0.4375 0.65625,0.4375 0,0 4.59375,0 4.59375,0 0.508772,0 1.03942,-0.33091 1.1875,-0.75 10e-7,0 0.53125,-1.5 0.53125,-1.5 0.122554,-0.34685 -0.07375,-0.63435 -0.4375,-0.71875 z m 8.1875,0.0312 c 0.01913,0.0896 0.0013,0.17827 -0.03125,0.28125 0,0 -0.468743,1.5 -0.46875,1.5 -0.1326,0.41909 -0.64747,0.75 -1.15625,0.75 0,0 -4.593745,0 -4.59375,0 -0.08039,0 -0.150048,-0.0157 -0.21875,-0.0312 0.05722,0.25537 0.318635,0.4375 0.6875,0.4375 2e-6,0 4.59375,0 4.59375,0 0.508777,0 1.02365,-0.33091 1.15625,-0.75 4e-6,0 0.46875,-1.5 0.46875,-1.5 0.106339,-0.33613 -0.09098,-0.59328 -0.4375,-0.6875 z m 8.15625,0 c 0.02277,0.0896 0.02877,0.17827 0,0.28125 0,0 -0.4375,1.5 -0.4375,1.5 -0.1171,0.41909 -0.616215,0.75 -1.125,0.75 0,0 -4.593749,0 -4.59375,0 -0.09158,0 -0.172816,-0.0112 -0.25,-0.0312 0.06768,0.25537 0.349892,0.4375 0.71875,0.4375 -2e-6,0 4.59375,0 4.59375,0 0.508782,0 1.0079,-0.33091 1.125,-0.75 -3e-6,0 0.4375,-1.5 0.4375,-1.5 0.09391,-0.33613 -0.117879,-0.59328 -0.46875,-0.6875 z m 8.15625,0 c 0.02348,0.0896 0.02498,0.17827 0,0.28125 0,0 -0.343745,1.5 -0.34375,1.5 -0.10159,0.41909 -0.584977,0.75 -1.09375,0.75 0,0 -4.593744,0 -4.59375,0 -0.09158,0 -0.171888,-0.0112 -0.25,-0.0312 0.07814,0.25537 0.349885,0.4375 0.71875,0.4375 3e-6,0 4.59375,0 4.59375,0 0.50877,0 0.99216,-0.33091 1.09375,-0.75 2e-6,0 0.34375,-1.5 0.34375,-1.5 0.08152,-0.33613 -0.121178,-0.59328 -0.46875,-0.6875 z m 8.1875,0 c 0.02713,0.0896 0.02115,0.17827 0,0.28125 0,0 -0.312495,1.5 -0.3125,1.5 -0.0861,0.41909 -0.553707,0.75 -1.0625,0.75 0,0 -4.593746,0 -4.59375,0 -0.104809,0 -0.19316,-0.0365 -0.28125,-0.0625 0.07788,0.26987 0.368415,0.46875 0.75,0.46875 10e-7,0 4.59375,0 4.59375,0 0.50879,0 0.9764,-0.33091 1.0625,-0.75 2e-6,0 0.3125,-1.5 0.3125,-1.5 0.06717,-0.32707 -0.133937,-0.58581 -0.46875,-0.6875 z m 8.15625,0 c 0.03077,0.0896 0.0486,0.17827 0.03125,0.28125 0,0 -0.25,1.5 -0.25,1.5 -0.0706,0.41909 -0.52248,0.75 -1.03125,0.75 0,0 -4.59375,0 -4.59375,0 -0.10481,0 -0.19196,-0.0365 -0.28125,-0.0625 0.08885,0.26987 0.36841,0.46875 0.75,0.46875 0,0 4.59375,0 4.59375,0 0.50877,0 0.96065,-0.33091 1.03125,-0.75 0,0 0.25,-1.5 0.25,-1.5 0.0551,-0.32707 -0.16051,-0.58581 -0.5,-0.6875 z m 8.1875,0 c 0.0344,0.0896 0.0448,0.17827 0.0312,0.28125 0,0 -0.1875,1.5 -0.1875,1.5 -0.0551,0.41909 -0.52247,0.75 -1.03125,0.75 0,0 -4.59375,0 -4.59375,0 -0.10481,0 -0.19287,-0.0365 -0.28125,-0.0625 0.09103,0.26987 0.36841,0.46875 0.75,0.46875 0,0 4.59375,0 4.59375,0 0.50878,0 0.97614,-0.33091 1.03125,-0.75 0,0 0.1875,-1.5 0.1875,-1.5 0.0418,-0.31801 -0.1721,-0.57909 -0.5,-0.6875 z m 8.1875,0 c 0.0381,0.0896 0.041,0.17827 0.0312,0.28125 0,0 -0.15625,1.5 -0.15625,1.5 -0.0396,0.41909 -0.45998,0.75 -0.96875,0.75 0,0 -4.59375,0 -4.59375,0 -0.12719,0 -0.23676,-0.0249 -0.34375,-0.0625 0.11079,0.26987 0.43093,0.46875 0.8125,0.46875 0,0 4.59375,0 4.59375,0 0.50877,0 0.92914,-0.33091 0.96875,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0292,-0.30895 -0.18299,-0.57311 -0.5,-0.6875 z m 8.15625,0 c 0.0417,0.0896 0.0684,0.17827 0.0625,0.28125 0,0 -0.0937,1.5 -0.0937,1.5 -0.0241,0.41909 -0.45997,0.75 -0.96875,0.75 0,0 -4.59375,0 -4.59375,0 -0.1272,0 -0.23797,-0.0249 -0.34375,-0.0625 0.11297,0.26987 0.43091,0.46875 0.8125,0.46875 0,0 4.59375,0 4.59375,0 0.50878,0 0.94464,-0.33091 0.96875,-0.75 0,0 0.0937,-1.5 0.0937,-1.5 0.0178,-0.30895 -0.20902,-0.57311 -0.53125,-0.6875 z m 8.15625,0 c 0.0424,0.0896 0.0645,0.17827 0.0625,0.28125 0,0 -0.0312,1.5 -0.0312,1.5 -0.009,0.41909 -0.39746,0.75 -0.90625,0.75 0,0 -4.59375,0 -4.59375,0 -0.12719,0 -0.26457,-0.0249 -0.375,-0.0625 0.13273,0.26987 0.46217,0.46875 0.84375,0.46875 0,0 4.59375,0 4.59375,0 0.50879,0 0.89764,-0.33091 0.90625,-0.75 0,0 0.0312,-1.5 0.0312,-1.5 0.006,-0.30895 -0.21269,-0.57311 -0.53125,-0.6875 z m 8.1875,0.0312 c 0.0374,0.0817 0.0609,0.15792 0.0625,0.25 0,0 0.0312,1.5 0.0312,1.5 0.007,0.41909 -0.39749,0.75 -0.90625,0.75 0,0 -4.59374,0 -4.59375,0 -0.13737,0 -0.25906,-0.019 -0.375,-0.0625 0.13493,0.26987 0.46216,0.46875 0.84375,0.46875 10e-6,0 4.59375,0 4.59375,0 0.50876,0 0.91314,-0.33091 0.90625,-0.75 0,0 -0.0312,-1.5 -0.0312,-1.5 -0.005,-0.29535 -0.23024,-0.53422 -0.53125,-0.65625 z m 8.15625,0 c 0.0411,0.0822 0.0888,0.15732 0.0937,0.25 0,0 0.0937,1.5 0.0937,1.5 0.0224,0.41909 -0.39747,0.75 -0.90625,0.75 0,0 -4.5625,0 -4.5625,0 -0.1272,0 -0.26406,-0.0249 -0.375,-0.0625 0.14587,0.26987 0.46216,0.46875 0.84375,0.46875 0,0 4.5625,0 4.5625,0 0.50878,0 0.92864,-0.33091 0.90625,-0.75 0,0 -0.0937,-1.5 -0.0937,-1.5 -0.0159,-0.29659 -0.25385,-0.53486 -0.5625,-0.65625 z m 15.46875,0 c 0.0477,0.0822 0.0823,0.15732 0.0937,0.25 0,0 0.15625,1.5 0.15625,1.5 0.0517,0.41909 -0.30373,0.75 -0.8125,0.75 0,0 -11.9375,0 -11.9375,0 -0.13799,0 -0.28589,-0.0187 -0.40625,-0.0625 0.15685,0.26987 0.49342,0.46875 0.875,0.46875 0,0 11.9375,0 11.9375,0 0.50877,0 0.86416,-0.33091 0.8125,-0.75 0,0 -0.15625,-1.5 -0.15625,-1.5 -0.0353,-0.2866 -0.25844,-0.53014 -0.5625,-0.65625 z m 13.625,0 c 0.0485,0.0796 0.0772,0.16082 0.0937,0.25 0,0 0.28126,1.5 0.28125,1.5 0.0775,0.41909 -0.27247,0.75 -0.78125,0.75 0,0 -4.59375,0 -4.59375,0 -0.16281,0 -0.32767,-0.0339 -0.46875,-0.0937 0.17163,0.28953 0.53887,0.5 0.9375,0.5 0,0 4.59375,0 4.59375,0 0.50878,0 0.85875,-0.33091 0.78125,-0.75 10e-6,0 -0.28125,-1.5 -0.28125,-1.5 -0.0518,-0.28011 -0.26528,-0.52752 -0.5625,-0.65625 z M 192,242.125 c 0.0491,0.073 0.10412,0.13811 0.125,0.21875 0,0 0.37499,1.5 0.375,1.5 0.10849,0.41909 -0.20998,0.75 -0.71875,0.75 0,0 -4.59375,0 -4.59375,0 -0.19333,0 -0.36416,-0.074 -0.53125,-0.15625 0.1818,0.31708 0.57777,0.5625 1,0.5625 0,0 4.59375,0 4.59375,0 0.50877,0 0.82724,-0.33091 0.71875,-0.75 -1e-5,0 -0.375,-1.5 -0.375,-1.5 -0.0681,-0.2631 -0.30185,-0.491 -0.59375,-0.625 z m -8.15625,0.0312 c 0.0372,0.0645 0.0782,0.11743 0.0937,0.1875 0,0 0.31249,1.5 0.3125,1.5 0.093,0.41909 -0.24123,0.75 -0.75,0.75 0,0 -4.59375,0 -4.59375,0 -0.17807,0 -0.346,-0.0543 -0.5,-0.125 0.17676,0.30326 0.55832,0.53125 0.96875,0.53125 0,0 4.59375,0 4.59375,0 0.50877,0 0.84299,-0.33091 0.75,-0.75 -1e-5,0 -0.3125,-1.5 -0.3125,-1.5 -0.0567,-0.2554 -0.2885,-0.45811 -0.5625,-0.59375 z m 19.09375,0 c 0.04,0.062 0.0731,0.12046 0.0937,0.1875 0,0 0.4375,1.5 0.4375,1.5 0.12915,0.41909 -0.14747,0.75 -0.65625,0.75 0,0 -4.59376,0 -4.59375,0 -0.20735,0 -0.40867,-0.0628 -0.59375,-0.15625 0.20102,0.32148 0.63652,0.5625 1.0625,0.5625 -1e-5,0 4.59375,0 4.59375,0 0.50878,0 0.7854,-0.33091 0.65625,-0.75 0,0 -0.4375,-1.5 -0.4375,-1.5 -0.0752,-0.24406 -0.29474,-0.4565 -0.5625,-0.59375 z m 8.15625,0 c 0.0411,0.062 0.0706,0.12046 0.0937,0.1875 0,0 0.53125,1.5 0.53125,1.5 0.14465,0.41909 -0.14747,0.75 -0.65625,0.75 0,0 -4.59375,0 -4.59375,0 -0.20735,0 -0.41067,-0.0628 -0.59375,-0.15625 0.20658,0.32148 0.63652,0.5625 1.0625,0.5625 0,0 4.59375,0 4.59375,0 0.50878,0 0.8009,-0.33091 0.65625,-0.75 0,0 -0.53125,-1.5 -0.53125,-1.5 -0.0842,-0.24405 -0.2976,-0.45649 -0.5625,-0.59375 z m 8.15625,0 c 0.045,0.0633 0.0988,0.11885 0.125,0.1875 0,0 0.59375,1.5 0.59375,1.5 0.16015,0.41909 -0.11621,0.75 -0.625,0.75 0,0 -4.59376,0 -4.59375,0 -0.20734,0 -0.40652,-0.0628 -0.59375,-0.15625 0.22031,0.31913 0.63853,0.5625 1.0625,0.5625 -1e-5,0 4.59375,0 4.59375,0 0.50879,0 0.78515,-0.33091 0.625,-0.75 0,0 -0.59375,-1.5 -0.59375,-1.5 -0.0933,-0.24405 -0.32277,-0.45649 -0.59375,-0.59375 z m 8.21875,0.0312 c 0.0357,0.0521 0.0705,0.1008 0.0937,0.15625 0,0 0.625,1.5 0.625,1.5 0.17565,0.41909 -0.085,0.75 -0.59375,0.75 0,0 -4.59375,0 -4.59375,0 -0.21074,0 -0.43124,-0.06 -0.625,-0.15625 0.23293,0.31913 0.66977,0.5625 1.09375,0.5625 0,0 4.59375,0 4.59375,0 0.50877,0 0.7694,-0.33091 0.59375,-0.75 0,0 -0.625,-1.5 -0.625,-1.5 -0.0943,-0.22501 -0.31393,-0.42463 -0.5625,-0.5625 z M 50.1875,246.03125 c 0.01808,0.0973 0.01326,0.19826 -0.03125,0.3125 0,0 -0.5625,1.5 -0.5625,1.5 -0.16329,0.41915 -0.730631,0.75 -1.25,0.75 0,0 -8.437501,0 -8.4375,0 -0.07064,0 -0.127001,-0.0196 -0.1875,-0.0312 0.03438,0.25399 0.280908,0.4375 0.65625,0.4375 0,0 8.4375,0 8.4375,0 0.51937,0 1.08671,-0.33085 1.25,-0.75 10e-7,0 0.5625,-1.5 0.5625,-1.5 0.138618,-0.35583 -0.0542,-0.64351 -0.4375,-0.71875 z m 8.375,0.0312 c 0.01766,0.0896 0.0049,0.17829 -0.03125,0.28125 0,0 -0.531249,1.5 -0.53125,1.5 -0.14714,0.41915 -0.699377,0.75 -1.21875,0.75 0,0 -4.687501,0 -4.6875,0 -0.08206,0 -0.148733,-0.0157 -0.21875,-0.0312 0.05454,0.25399 0.312195,0.4375 0.6875,0.4375 0,0 4.6875,0 4.6875,0 0.51937,0 1.07161,-0.33085 1.21875,-0.75 -2e-6,0 0.53125,-1.5 0.53125,-1.5 0.117976,-0.33606 -0.0848,-0.59326 -0.4375,-0.6875 z m 8.34375,0 c 0.0184,0.0896 9.29e-4,0.17829 -0.03125,0.28125 0,0 -0.468743,1.5 -0.46875,1.5 -0.13097,0.41915 -0.668127,0.75 -1.1875,0.75 0,0 -4.687497,0 -4.6875,0 -0.09349,0 -0.171415,-0.0112 -0.25,-0.0312 C 60.345126,248.81788 60.62345,249 61,249 c 0,0 4.6875,0 4.6875,0 0.51937,0 1.05653,-0.33085 1.1875,-0.75 4e-6,0 0.46875,-1.5 0.46875,-1.5 0.105028,-0.33606 -0.08825,-0.59326 -0.4375,-0.6875 z m 8.3125,0 c 0.02207,0.0896 0.02821,0.17829 0,0.28125 0,0 -0.406243,1.5 -0.40625,1.5 -0.11484,0.41915 -0.636877,0.75 -1.15625,0.75 0,0 -4.687497,0 -4.6875,0 -0.09349,0 -0.172179,-0.0112 -0.25,-0.0312 0.06536,0.25538 0.3422,0.4375 0.71875,0.4375 0,0 4.6875,0 4.6875,0 0.51937,0 1.04141,-0.33085 1.15625,-0.75 4e-6,0 0.40625,-1.5 0.40625,-1.5 0.09209,-0.33606 -0.115287,-0.59326 -0.46875,-0.6875 z m 8.34375,0 c 0.02575,0.0896 0.02425,0.17829 0,0.28125 0,0 -0.343746,1.5 -0.34375,1.5 -0.09868,0.41915 -0.605627,0.75 -1.125,0.75 0,0 -4.687497,0 -4.6875,0 -0.09349,0 -0.171282,-0.0112 -0.25,-0.0312 0.07588,0.25538 0.3422,0.4375 0.71875,0.4375 0,0 4.6875,0 4.6875,0 0.51937,0 1.02632,-0.33085 1.125,-0.75 10e-7,0 0.34375,-1.5 0.34375,-1.5 0.07702,-0.327 -0.128654,-0.58579 -0.46875,-0.6875 z m 8.3125,0 c 0.02942,0.0896 0.05153,0.17829 0.03125,0.28125 0,0 -0.28125,1.5 -0.28125,1.5 -0.08254,0.41915 -0.57439,0.75 -1.09375,0.75 0,0 -4.687495,0 -4.6875,0 -0.106993,0 -0.19268,-0.0365 -0.28125,-0.0625 0.07583,0.26988 0.360464,0.46875 0.75,0.46875 2e-6,0 4.6875,0 4.6875,0 0.51936,0 1.01121,-0.33085 1.09375,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.06439,-0.327 -0.15538,-0.58579 -0.5,-0.6875 z m 8.375,0 c 0.0331,0.0896 0.0476,0.17829 0.0312,0.28125 0,0 -0.25,1.5 -0.25,1.5 -0.06639,0.41915 -0.54313,0.75 -1.0625,0.75 0,0 -4.6875,0 -4.6875,0 -0.10699,0 -0.19152,-0.0365 -0.28125,-0.0625 0.08689,0.26988 0.36047,0.46875 0.75,0.46875 0,0 4.6875,0 4.6875,0 0.51937,0 0.99611,-0.33085 1.0625,-0.75 0,0 0.25,-1.5 0.25,-1.5 0.0503,-0.31794 -0.16761,-0.57907 -0.5,-0.6875 z m 8.34375,0 c 0.0368,0.0896 0.0436,0.17829 0.0312,0.28125 0,0 -0.1875,1.50001 -0.1875,1.5 -0.0503,0.41916 -0.51188,0.75 -1.03125,0.75 0,0 -4.6875,0 -4.6875,0 -0.11842,0 -0.2141,-0.031 -0.3125,-0.0625 0.0979,0.26988 0.39172,0.46875 0.78125,0.46875 0,0 4.6875,0 4.6875,0 0.51937,0 0.981,-0.33084 1.03125,-0.75 0,10e-6 0.1875,-1.5 0.1875,-1.5 0.037,-0.30888 -0.17908,-0.57309 -0.5,-0.6875 z m 8.3125,0 c 0.0404,0.0896 0.0709,0.17829 0.0625,0.28125 0,0 -0.125,1.50001 -0.125,1.5 -0.0341,0.41916 -0.48063,0.75 -1,0.75 0,0 -4.6875,0 -4.6875,0 -0.12984,0 -0.23665,-0.0249 -0.34375,-0.0625 0.10901,0.26988 0.42297,0.46875 0.8125,0.46875 0,0 4.6875,0 4.6875,0 0.51937,0 0.96591,-0.33084 1,-0.75 0,10e-6 0.125,-1.5 0.125,-1.5 0.0251,-0.30888 -0.20527,-0.57309 -0.53125,-0.6875 z m 8.34375,0 c 0.0412,0.0896 0.0669,0.17829 0.0625,0.28125 0,0 -0.0625,1.50001 -0.0625,1.5 -0.0179,0.41916 -0.44939,0.75 -0.96875,0.75 0,0 -4.68751,0 -4.6875,0 -0.11932,0 -0.24193,-0.0305 -0.34375,-0.0625 0.12007,0.26988 0.42296,0.46875 0.8125,0.46875 -1e-5,0 4.6875,0 4.6875,0 0.51936,0 0.95081,-0.33084 0.96875,-0.75 0,10e-6 0.0625,-1.5 0.0625,-1.5 0.0132,-0.30888 -0.20899,-0.57309 -0.53125,-0.6875 z m 8.34375,0.0312 c 0.0362,0.0817 0.063,0.15794 0.0625,0.25 0,0 0,1.5 0,1.5 -0.002,0.41915 -0.41812,0.75 -0.9375,0.75 0,0 -4.6875,0 -4.6875,0 -0.12984,0 -0.26457,-0.0249 -0.375,-0.0625 0.13113,0.26988 0.45422,0.46875 0.84375,0.46875 0,0 4.6875,0 4.6875,0 0.51938,0 0.93571,-0.33085 0.9375,-0.75 0,0 0,-1.5 0,-1.5 0.001,-0.29652 -0.22521,-0.53483 -0.53125,-0.65625 z m 8.34375,0 c 0.0425,0.0822 0.0906,0.15734 0.0937,0.25 0,0 0.0312,1.5 0.0312,1.5 0.0144,0.41915 -0.38688,0.75 -0.90625,0.75 0,0 -4.68751,0 -4.6875,0 -0.14087,0 -0.28678,-0.0187 -0.40625,-0.0625 0.14223,0.26988 0.48547,0.46875 0.875,0.46875 -1e-5,0 4.6875,0 4.6875,0 0.51937,0 0.92061,-0.33085 0.90625,-0.75 0,0 -0.0312,-1.5 -0.0312,-1.5 -0.0101,-0.29528 -0.24416,-0.5342 -0.5625,-0.65625 z m 8.34375,0 c 0.0434,0.0822 0.087,0.15734 0.0937,0.25 0,0 0.0938,1.5 0.0937,1.5 0.0305,0.41915 -0.35562,0.75 -0.875,0.75 0,0 -4.6875,0 -4.6875,0 -0.14023,0 -0.28525,-0.019 -0.40625,-0.0625 0.15326,0.26988 0.48547,0.46875 0.875,0.46875 0,0 4.6875,0 4.6875,0 0.51938,0 0.9055,-0.33085 0.875,-0.75 1e-5,0 -0.0937,-1.5 -0.0937,-1.5 -0.0215,-0.29528 -0.24787,-0.5342 -0.5625,-0.65625 z m 12.0625,0 c 0.0465,0.0796 0.0823,0.16084 0.0937,0.25 0,0 0.1875,1.5 0.1875,1.5 0.0538,0.41915 -0.32437,0.75 -0.84375,0.75 0,0 -8.4375,0 -8.4375,0 -0.15581,0 -0.30397,-0.0408 -0.4375,-0.0937 0.15694,0.28453 0.50374,0.5 0.90625,0.5 0,0 8.4375,0 8.4375,0 0.51938,0 0.89758,-0.33085 0.84375,-0.75 0,0 -0.1875,-1.5 -0.1875,-1.5 -0.036,-0.28005 -0.25981,-0.5275 -0.5625,-0.65625 z M 176.25,246.125 c 0.0421,0.0722 0.0784,0.13914 0.0937,0.21875 0,0 0.28125,1.5 0.28125,1.5 0.0807,0.41915 -0.26187,0.75 -0.78125,0.75 0,0 -4.6875,0 -4.6875,0 -0.18178,0 -0.34464,-0.0543 -0.5,-0.125 0.17095,0.30329 0.54977,0.53125 0.96875,0.53125 0,0 4.6875,0 4.6875,0 0.51938,0 0.86199,-0.33085 0.78125,-0.75 0,0 -0.28125,-1.5 -0.28125,-1.5 -0.0515,-0.2677 -0.27623,-0.4922 -0.5625,-0.625 z m 8.34375,0 c 0.045,0.0722 0.0753,0.13914 0.0937,0.21875 0,0 0.375,1.5 0.375,1.5 0.0969,0.41915 -0.26187,0.75 -0.78125,0.75 0,0 -4.6875,0 -4.6875,0 -0.18765,0 -0.369,-0.0501 -0.53125,-0.125 0.18321,0.30328 0.58102,0.53125 1,0.53125 0,0 4.6875,0 4.6875,0 0.51938,0 0.87815,-0.33085 0.78125,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.0608,-0.26304 -0.27775,-0.49098 -0.5625,-0.625 z m 8.34375,0 c 0.0488,0.073 0.10326,0.13813 0.125,0.21875 0,0 0.40626,1.5 0.40625,1.5 0.11305,0.41915 -0.23064,0.75 -0.75,0.75 0,0 -4.6875,0 -4.6875,0 -0.18765,0 -0.36573,-0.0501 -0.53125,-0.125 0.1962,0.30182 0.5823,0.53125 1,0.53125 0,0 4.6875,0 4.6875,0 0.51936,0 0.86305,-0.33085 0.75,-0.75 1e-5,0 -0.40625,-1.5 -0.40625,-1.5 -0.0709,-0.26304 -0.30314,-0.49098 -0.59375,-0.625 z m 11.15625,0.0312 c 0.04,0.062 0.0722,0.12048 0.0937,0.1875 0,0 0.46875,1.50001 0.46875,1.5 0.13458,0.41916 -0.16812,0.75 -0.6875,0.75 0,0 -4.6875,0 -4.6875,0 -0.21166,0 -0.40987,-0.0628 -0.59375,-0.15625 0.20061,0.32151 0.62765,0.5625 1.0625,0.5625 0,0 4.6875,0 4.6875,0 0.51938,0 0.82208,-0.33084 0.6875,-0.75 0,10e-6 -0.46875,-1.5 -0.46875,-1.5 -0.0783,-0.244 -0.29654,-0.45648 -0.5625,-0.59375 z m 8.3125,0 c 0.0439,0.0633 0.10031,0.11886 0.125,0.1875 0,0 0.53125,1.5 0.53125,1.5 0.15073,0.41915 -0.13687,0.75 -0.65625,0.75 0,0 -4.6875,0 -4.6875,0 -0.21512,0 -0.43484,-0.06 -0.625,-0.15625 0.21353,0.32151 0.6589,0.5625 1.09375,0.5625 0,0 4.6875,0 4.6875,0 0.51938,0 0.80698,-0.33085 0.65625,-0.75 0,0 -0.53125,-1.5 -0.53125,-1.5 -0.0877,-0.244 -0.32183,-0.45648 -0.59375,-0.59375 z m 8.34375,0 c 0.0465,0.0633 0.0977,0.11886 0.125,0.1875 0,0 0.59375,1.5 0.59375,1.5 0.16687,0.41915 -0.10562,0.75 -0.625,0.75 0,0 -4.6875,0 -4.6875,0 -0.21512,0 -0.43065,-0.06 -0.625,-0.15625 0.2275,0.31915 0.66094,0.5625 1.09375,0.5625 0,0 4.6875,0 4.6875,0 0.51938,0 0.79187,-0.33085 0.625,-0.75 0,0 -0.59375,-1.5 -0.59375,-1.5 -0.096,-0.24126 -0.32007,-0.45623 -0.59375,-0.59375 z m 8.625,0 c 0.0335,0.0445 0.0713,0.0779 0.0937,0.125 0,0 2.68751,5.59375 2.6875,5.59375 0.19088,0.3995 -0.0946,0.71875 -0.625,0.71875 0,0 -4.78125,0 -4.78125,0 -0.24246,0 -0.5003,-0.0457 -0.71875,-0.15625 0.23907,0.32328 0.72848,0.5625 1.1875,0.5625 0,0 4.78125,0 4.78125,0 0.53042,0 0.81588,-0.31925 0.625,-0.71875 10e-6,0 -2.6875,-5.59375 -2.6875,-5.59375 -0.0978,-0.20465 -0.30927,-0.40471 -0.5625,-0.53125 z m -177.8125,3.875 c 0.02054,0.0973 0.01362,0.19828 -0.03125,0.3125 0,0 -0.593753,1.5 -0.59375,1.5 -0.16468,0.41924 -0.719572,0.75 -1.25,0.75 0,0 -11.468751,0 -11.46875,0 -0.08381,0 -0.148085,-0.0157 -0.21875,-0.0312 0.04016,0.254 0.304195,0.4375 0.6875,0.4375 0,0 11.46875,0 11.46875,0 0.530429,0 1.08532,-0.33076 1.25,-0.75 -2e-6,0 0.59375,-1.5 0.59375,-1.5 0.136184,-0.34671 -0.06261,-0.63432 -0.4375,-0.71875 z m 8.53125,0.0312 c 0.01679,0.0896 0.0051,0.17831 -0.03125,0.28125 0,0 -0.531246,1.5 -0.53125,1.5 -0.14783,0.41924 -0.688312,0.75 -1.21875,0.75 0,0 -4.781256,0 -4.78125,0 -0.09548,0 -0.169842,-0.0112 -0.25,-0.0312 C 53.340936,252.81788 53.615438,253 54,253 c -5e-6,0 4.78125,0 4.78125,0 0.530435,0 1.07092,-0.33076 1.21875,-0.75 10e-7,0 0.53125,-1.5 0.53125,-1.5 0.118487,-0.336 -0.08145,-0.59325 -0.4375,-0.6875 z m 8.5,0 c 0.02049,0.0896 0.03217,0.17831 0,0.28125 0,0 -0.468747,1.5 -0.46875,1.5 -0.13099,0.41924 -0.657064,0.75 -1.1875,0.75 0,0 -4.812493,0 -4.8125,0 -0.09548,0 -0.170639,-0.0112 -0.25,-0.0312 0.06124,0.25538 0.334188,0.4375 0.71875,0.4375 4e-6,0 4.8125,0 4.8125,0 0.530433,0 1.05651,-0.33076 1.1875,-0.75 0,0 0.46875,-1.5 0.46875,-1.5 0.10499,-0.336 -0.108643,-0.59325 -0.46875,-0.6875 z m 8.53125,0 c 0.0242,0.0896 0.02803,0.17831 0,0.28125 0,0 -0.406245,1.5 -0.40625,1.5 -0.11415,0.41924 -0.657072,0.75 -1.1875,0.75 0,0 -4.781248,0 -4.78125,0 -0.109269,0 -0.19221,-0.0366 -0.28125,-0.0625 0.05993,0.26989 0.352177,0.46875 0.75,0.46875 -10e-7,0 4.78125,0 4.78125,0 0.530425,0 1.07335,-0.33076 1.1875,-0.75 2e-6,0 0.40625,-1.5 0.40625,-1.5 0.08902,-0.32695 -0.122649,-0.58577 -0.46875,-0.6875 z m 8.53125,0 c 0.0279,0.0896 0.0239,0.17831 0,0.28125 0,0 -0.374996,1.5 -0.375,1.5 -0.09731,0.41924 -0.594577,0.75 -1.125,0.75 0,0 -4.781248,0 -4.78125,0 -0.109267,0 -0.191092,-0.0366 -0.28125,-0.0625 0.07109,0.26989 0.352185,0.46875 0.75,0.46875 -10e-7,0 4.78125,0 4.78125,0 0.53042,0 1.02769,-0.33076 1.125,-0.75 10e-7,0 0.375,-1.5 0.375,-1.5 0.0738,-0.31789 -0.135787,-0.57905 -0.46875,-0.6875 z m 8.46875,0 c 0.02868,0.0896 0.051,0.17831 0.03125,0.28125 0,0 -0.28125,1.5 -0.28125,1.5 -0.08046,0.41924 -0.56333,0.75 -1.09375,0.75 0,0 -4.781247,0 -4.78125,0 -0.121853,0 -0.242044,-0.0305 -0.34375,-0.0625 0.09104,0.26989 0.414685,0.46875 0.8125,0.46875 0,0 4.78125,0 4.78125,0 0.53042,0 1.01329,-0.33076 1.09375,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.06273,-0.32695 -0.15327,-0.58577 -0.5,-0.6875 z m 8.53125,0 c 0.0324,0.0896 0.0469,0.17831 0.0312,0.28125 0,0 -0.21875,1.5 -0.21875,1.5 -0.0636,0.41924 -0.53208,0.75 -1.0625,0.75 0,0 -4.8125,0 -4.8125,0 -0.1111,0 -0.21888,-0.0357 -0.3125,-0.0625 0.09341,0.26989 0.38343,0.46875 0.78125,0.46875 0,0 4.8125,0 4.8125,0 0.53042,0 0.99888,-0.33076 1.0625,-0.75 0,0 0.21875,-1.5 0.21875,-1.5 0.0482,-0.31789 -0.16621,-0.57905 -0.5,-0.6875 z m 8.53125,0 c 0.0361,0.0896 0.0427,0.1783 0.0312,0.28125 0,0 -0.15625,1.5 -0.15625,1.5 -0.0468,0.41925 -0.53208,0.75 -1.0625,0.75 0,0 -4.78125,0 -4.78125,0 -0.12185,0 -0.24183,-0.0305 -0.34375,-0.0625 0.10456,0.26989 0.41468,0.46875 0.8125,0.46875 0,0 4.78125,0 4.78125,0 0.53042,0 1.01571,-0.33075 1.0625,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0344,-0.30884 -0.17839,-0.57308 -0.5,-0.6875 z m 8.5,0 c 0.0427,0.0896 0.0698,0.17831 0.0625,0.28125 0,0 -0.125,1.5 -0.125,1.5 -0.0299,0.41925 -0.46957,0.75 -1,0.75 0,0 -4.78125,0 -4.78125,0 -0.13261,0 -0.26475,-0.0249 -0.375,-0.0625 0.11573,0.26989 0.44593,0.46875 0.84375,0.46875 0,0 4.78125,0 4.78125,0 0.53043,0 0.97006,-0.33075 1,-0.75 0,0 0.125,-1.5 0.125,-1.5 0.022,-0.30883 -0.19593,-0.57307 -0.53125,-0.6875 z m 8.53125,0.0312 c 0.0373,0.0817 0.0654,0.15796 0.0625,0.25 0,0 -0.0625,1.5 -0.0625,1.5 -0.0131,0.41924 -0.43833,0.75 -0.96875,0.75 0,0 -4.78126,0 -4.78125,0 -0.13261,0 -0.26313,-0.0249 -0.375,-0.0625 0.12688,0.26989 0.44593,0.46875 0.84375,0.46875 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.95565,-0.33076 0.96875,-0.75 0,0 0.0625,-1.5 0.0625,-1.5 0.009,-0.29523 -0.21487,-0.53418 -0.53125,-0.65625 z m 8.5,0 c 0.0412,0.0822 0.0928,0.15735 0.0937,0.25 0,0 -1e-5,1.5 0,1.5 0.004,0.41924 -0.40708,0.75 -0.9375,0.75 0,0 -4.81251,0 -4.8125,0 -0.14322,0 -0.28582,-0.019 -0.40625,-0.0625 0.13808,0.26989 0.47718,0.46875 0.875,0.46875 -1e-5,0 4.8125,0 4.8125,0 0.53042,0 0.94124,-0.33076 0.9375,-0.75 -1e-5,0 0,-1.5 0,-1.5 -0.003,-0.29647 -0.23883,-0.53482 -0.5625,-0.65625 z m 8.5,0 c 0.0421,0.0822 0.0892,0.15735 0.0937,0.25 0,0 0.0937,1.5 0.0937,1.5 0.0206,0.41924 -0.40708,0.75 -0.9375,0.75 0,0 -4.78126,0 -4.78125,0 -0.14322,0 -0.28388,-0.019 -0.40625,-0.0625 0.14912,0.26989 0.47718,0.46875 0.875,0.46875 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.95809,-0.33076 0.9375,-0.75 -1e-5,0 -0.0937,-1.5 -0.0937,-1.5 -0.0146,-0.29647 -0.24262,-0.53482 -0.5625,-0.65625 z m 18,0 c 0.0459,0.0796 0.0818,0.16085 0.0937,0.25 0,0 0.21874,1.5 0.21875,1.5 0.0561,0.41924 -0.34458,0.75 -0.875,0.75 l -14.34375,0 c -0.15913,0 -0.30277,-0.0408 -0.4375,-0.0937 0.15247,0.28455 0.49517,0.5 0.90625,0.5 l 14.34375,0 c 0.53042,0 0.93114,-0.33076 0.875,-0.75 -1e-5,0 -0.21875,-1.5 -0.21875,-1.5 -0.0375,-0.28 -0.26011,-0.52748 -0.5625,-0.65625 z m 42.625,0.0625 c 0.0442,0.0633 0.10202,0.11887 0.125,0.1875 0,0 0.5,1.5 0.5,1.5 0.14035,0.41924 -0.18834,0.75 -0.71875,0.75 0,0 -4.78127,0 -4.78125,0 -0.21616,0 -0.43624,-0.0628 -0.625,-0.15625 0.20733,0.32153 0.64965,0.5625 1.09375,0.5625 -2e-5,0 4.78125,0 4.78125,0 0.53041,0 0.8591,-0.33076 0.71875,-0.75 0,0 -0.5,-1.5 -0.5,-1.5 -0.0817,-0.24396 -0.31181,-0.45646 -0.59375,-0.59375 z m 8.5,0 c 0.0454,0.0633 0.0993,0.11887 0.125,0.1875 0,0 0.56249,1.5 0.5625,1.5 0.1572,0.41925 -0.12584,0.75 -0.65625,0.75 0,0 -4.78127,0 -4.78125,0 -0.21616,0 -0.43226,-0.0628 -0.625,-0.15625 0.22164,0.31918 0.65173,0.5625 1.09375,0.5625 -2e-5,0 4.78125,0 4.78125,0 0.53041,0 0.81345,-0.33075 0.65625,-0.75 -1e-5,0 -0.5625,-1.5 -0.5625,-1.5 -0.0904,-0.24121 -0.3192,-0.45622 -0.59375,-0.59375 z m 8.5625,0.0312 c 0.036,0.0521 0.0707,0.10082 0.0937,0.15625 0,0 0.62499,1.5 0.625,1.5 0.17403,0.41925 -0.0946,0.75 -0.625,0.75 0,0 -4.78127,0 -4.78125,0 -0.24069,0 -0.47499,-0.0739 -0.6875,-0.1875 0.22526,0.33839 0.69723,0.59375 1.15625,0.59375 -2e-5,0 4.78125,0 4.78125,0 0.53041,0 0.79903,-0.33075 0.625,-0.75 -1e-5,0 -0.625,-1.5 -0.625,-1.5 -0.0934,-0.22492 -0.30747,-0.4246 -0.5625,-0.5625 z M 53.5625,254.03125 c 0.01955,0.0973 0.01344,0.1983 -0.03125,0.3125 0,0 -0.593752,1.5 -0.59375,1.5 -0.16408,0.41932 -0.70805,0.75 -1.25,0.75 0,0 -15.65625,0 -15.65625,0 -0.08562,0 -0.146963,-0.0157 -0.21875,-0.0312 0.03674,0.25401 0.295907,0.4375 0.6875,0.4375 10e-7,0 15.65625,0 15.65625,0 0.541951,0 1.08592,-0.33068 1.25,-0.75 -10e-7,0 0.59375,-1.5 0.59375,-1.5 0.135637,-0.34663 -0.05856,-0.6343 -0.4375,-0.71875 z m 8.71875,0.0312 c 0.0189,0.0896 0.0047,0.17833 -0.03125,0.28125 0,0 -0.531249,1.5 -0.53125,1.5 -0.14651,0.41932 -0.70804,0.75 -1.25,0.75 0,0 -4.874996,0 -4.875,0 -0.08972,0 -0.174274,-0.0142 -0.25,-0.0312 0.05706,0.25539 0.325829,0.4375 0.71875,0.4375 10e-7,0 4.875,0 4.875,0 0.541957,0 1.10349,-0.33068 1.25,-0.75 -2e-6,0 0.53125,-1.5 0.53125,-1.5 0.114207,-0.32687 -0.08964,-0.58575 -0.4375,-0.6875 z m 8.6875,0 c 0.02264,0.0896 0.03164,0.17833 0,0.28125 0,0 -0.468749,1.5 -0.46875,1.5 -0.12892,0.41932 -0.676785,0.75 -1.21875,0.75 0,0 -4.874998,0 -4.875,0 -0.100702,0 -0.197453,-0.01 -0.28125,-0.0312 0.06771,0.25539 0.357079,0.4375 0.75,0.4375 -10e-7,0 4.875,0 4.875,0 0.541962,0 1.08983,-0.33068 1.21875,-0.75 -2e-6,0 0.46875,-1.5 0.46875,-1.5 0.102624,-0.33379 -0.102504,-0.5914 -0.46875,-0.6875 z m 8.6875,0 c 0.02345,0.0896 0.02733,0.17833 0,0.28125 0,0 -0.374999,1.5 -0.375,1.5 -0.11134,0.41932 -0.645546,0.75 -1.1875,0.75 0,0 -4.906245,0 -4.90625,0 -0.1007,0 -0.196572,-0.01 -0.28125,-0.0312 0.07836,0.25539 0.357086,0.4375 0.75,0.4375 2e-6,0 4.90625,0 4.90625,0 0.541951,0 1.07616,-0.33068 1.1875,-0.75 -2e-6,0 0.375,-1.5 0.375,-1.5 0.08679,-0.32687 -0.120584,-0.58575 -0.46875,-0.6875 z m 8.71875,0 c 0.03012,0.0896 0.02303,0.17833 0,0.28125 0,0 -0.343751,1.5 -0.34375,1.5 -0.09376,0.41932 -0.583049,0.75 -1.125,0.75 0,0 -4.906246,0 -4.90625,0 -0.113519,0 -0.218492,-0.0357 -0.3125,-0.0625 0.0776,0.2699 0.37478,0.46875 0.78125,0.46875 10e-7,0 4.90625,0 4.90625,0 0.541948,0 1.03124,-0.33068 1.125,-0.75 -4e-6,0 0.34375,-1.5 0.34375,-1.5 0.07094,-0.3171 -0.127383,-0.57854 -0.46875,-0.6875 z m 8.6875,0 c 0.03386,0.0896 0.04995,0.17833 0.03125,0.28125 0,0 -0.28125,1.5 -0.28125,1.5 -0.07619,0.41932 -0.58303,0.75 -1.125,0.75 0,0 -4.875,0 -4.875,0 -0.1245,0 -0.24167,-0.0305 -0.34375,-0.0625 0.08887,0.2699 0.40603,0.46875 0.8125,0.46875 0,0 4.875,0 4.875,0 0.54197,0 1.04881,-0.33068 1.125,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.05762,-0.3171 -0.15413,-0.57854 -0.5,-0.6875 z m 8.6875,0 c 0.0347,0.0896 0.0456,0.17833 0.0312,0.28125 0,0 -0.1875,1.5 -0.1875,1.5 -0.0586,0.41932 -0.55179,0.75 -1.09375,0.75 0,0 -4.875,0 -4.875,0 -0.13549,0 -0.26192,-0.0249 -0.375,-0.0625 0.1089,0.2699 0.43728,0.46875 0.84375,0.46875 0,0 4.875,0 4.875,0 0.54196,0 1.03515,-0.33068 1.09375,-0.75 0,0 0.1875,-1.5 0.1875,-1.5 0.0443,-0.3171 -0.15814,-0.57854 -0.5,-0.6875 z m 8.71875,0 c 0.0384,0.0896 0.0413,0.17833 0.0312,0.28125 0,0 -0.15625,1.5 -0.15625,1.5 -0.041,0.41932 -0.4893,0.75 -1.03125,0.75 0,0 -4.90625,0 -4.90625,0 -0.13549,0 -0.26329,-0.0249 -0.375,-0.0625 0.11138,0.2699 0.4373,0.46875 0.84375,0.46875 0,0 4.90625,0 4.90625,0 0.54195,0 0.99023,-0.33068 1.03125,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0302,-0.30876 -0.16934,-0.57305 -0.5,-0.6875 z m 8.6875,0.0312 c 0.0359,0.0817 0.0676,0.15798 0.0625,0.25 0,0 -0.0938,1.5 -0.0937,1.5 -0.0234,0.41932 -0.45804,0.75 -1,0.75 0,0 -4.90625,0 -4.90625,0 -0.13549,0 -0.26174,-0.0249 -0.375,-0.0625 0.12264,0.2699 0.43727,0.46875 0.84375,0.46875 0,0 4.90625,0 4.90625,0 0.54196,0 0.97656,-0.33068 1,-0.75 -1e-5,0 0.0937,-1.5 0.0937,-1.5 0.0166,-0.29641 -0.2094,-0.5348 -0.53125,-0.65625 z m 8.71875,0 c 0.0393,0.0817 0.0638,0.15798 0.0625,0.25 0,0 -0.0312,1.5 -0.0312,1.5 -0.006,0.41932 -0.45804,0.75 -1,0.75 0,0 -4.875,0 -4.875,0 -0.14633,0 -0.28448,-0.019 -0.40625,-0.0625 0.13391,0.2699 0.46853,0.46875 0.875,0.46875 0,0 4.875,0 4.875,0 0.54196,0 0.99414,-0.33068 1,-0.75 0,0 0.0312,-1.5 0.0312,-1.5 0.004,-0.28818 -0.21887,-0.53085 -0.53125,-0.65625 z m 8.65625,0 c 0.0408,0.0822 0.0912,0.15737 0.0937,0.25 0,0 0.0625,1.5 0.0625,1.5 0.0117,0.41932 -0.42679,0.75 -0.96875,0.75 0,0 -4.90624,0 -4.90625,0 -0.16259,0 -0.30386,-0.0408 -0.4375,-0.0937 0.13567,0.28543 0.48544,0.5 0.90625,0.5 10e-6,0 4.90625,0 4.90625,0 0.54196,0 0.98047,-0.33068 0.96875,-0.75 0,0 -0.0625,-1.5 -0.0625,-1.5 -0.008,-0.29641 -0.23965,-0.5348 -0.5625,-0.65625 z m 23.25,0.0312 c 0.0414,0.0722 0.0826,0.13917 0.0937,0.21875 0,0 0.18749,1.5 0.1875,1.5 0.0586,0.41932 -0.33305,0.75 -0.875,0.75 0,0 -19.56251,0 -19.5625,0 -0.16258,0 -0.30166,-0.0408 -0.4375,-0.0937 0.14811,0.28456 0.48624,0.5 0.90625,0.5 -1e-5,0 19.5625,0 19.5625,0 0.54195,0 0.9336,-0.33068 0.875,-0.75 -1e-5,0 -0.1875,-1.5 -0.1875,-1.5 -0.0367,-0.26294 -0.27053,-0.49095 -0.5625,-0.625 z m 23.1875,0 c 0.0491,0.073 0.10472,0.13816 0.125,0.21875 0,0 0.375,1.5 0.375,1.5 0.10548,0.41932 -0.2393,0.75 -0.78125,0.75 0,0 -4.90625,0 -4.90625,0 -0.19581,0 -0.39117,-0.0501 -0.5625,-0.125 0.19677,0.30187 0.59539,0.53125 1.03125,0.53125 0,0 4.90625,0 4.90625,0 0.54195,0 0.88673,-0.33068 0.78125,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.0661,-0.26294 -0.2931,-0.49095 -0.59375,-0.625 z m 20.3125,0.0312 c 0.0442,0.0633 0.10102,0.11889 0.125,0.1875 0,0 0.53125,1.5 0.53125,1.5 0.14651,0.41932 -0.17681,0.75 -0.71875,0.75 0,0 -4.90625,0 -4.90625,0 -0.23572,0 -0.45377,-0.0823 -0.65625,-0.1875 0.20682,0.33428 0.65973,0.59375 1.125,0.59375 0,0 4.90625,0 4.90625,0 0.54194,0 0.86526,-0.33068 0.71875,-0.75 0,0 -0.53125,-1.5 -0.53125,-1.5 -0.0852,-0.24391 -0.31381,-0.45645 -0.59375,-0.59375 z m 8.75,0.0312 c 0.0349,0.0521 0.0721,0.10083 0.0937,0.15625 0,0 0.59375,1.5 0.59375,1.5 0.16408,0.41932 -0.14554,0.75 -0.6875,0.75 0,0 -4.90626,0 -4.90625,0 -0.22448,0 -0.45645,-0.06 -0.65625,-0.15625 0.22868,0.31921 0.67337,0.5625 1.125,0.5625 -1e-5,0 4.90625,0 4.90625,0 0.54196,0 0.85158,-0.33068 0.6875,-0.75 0,0 -0.59375,-1.5 -0.59375,-1.5 -0.088,-0.22487 -0.30711,-0.42459 -0.5625,-0.5625 z m 8.6875,0 c 0.0371,0.0521 0.0697,0.10083 0.0937,0.15625 0,0 0.65625,1.5 0.65625,1.5 0.18166,0.41932 -0.1143,0.75 -0.65625,0.75 0,0 -4.87499,0 -4.875,0 -0.24773,0 -0.50008,-0.0724 -0.71875,-0.1875 0.23255,0.33843 0.7185,0.59375 1.1875,0.59375 10e-6,0 4.875,0 4.875,0 0.54195,0 0.83791,-0.33068 0.65625,-0.75 0,0 -0.65625,-1.5 -0.65625,-1.5 -0.0968,-0.2235 -0.30355,-0.42464 -0.5625,-0.5625 z m 8.78125,0 c 0.0221,0.0305 0.0461,0.0622 0.0625,0.0937 0,0 2.90626,5.59374 2.90625,5.59375 0.20817,0.40003 -0.071,0.71875 -0.625,0.71875 0,0 -5,0 -5,0 -0.25487,0 -0.52074,-0.0444 -0.75,-0.15625 0.25652,0.32022 0.74252,0.5625 1.21875,0.5625 0,0 5,0 5,0 0.55398,0 0.83317,-0.31872 0.625,-0.71875 1e-5,-1e-5 -2.90625,-5.59375 -2.90625,-5.59375 -0.0978,-0.18794 -0.28654,-0.37511 -0.53125,-0.5 z M 55.75,258.031 c 0.02129,0.0966 0.01282,0.19931 -0.03125,0.3125 0,0 -0.593749,1.5 -0.59375,1.5 -0.16327,0.41941 -0.727249,0.75 -1.28125,0.75 0,0 -6.999999,0 -7,0 -0.102939,0 -0.196459,-0.01 -0.28125,-0.0312 0.05226,0.2554 0.34835,0.4375 0.75,0.4375 2e-6,0 7,0 7,0 0.554002,0 1.11798,-0.33059 1.28125,-0.75 -2e-6,0 0.59375,-1.5 0.59375,-1.5 0.133707,-0.34346 -0.05438,-0.63132 -0.4375,-0.71875 z m -10.84375,0.0312 c 0.01033,0.0896 -0.01693,0.17835 -0.0625,0.28125 0,0 -0.656252,1.5 -0.65625,1.5 -0.18572,0.41941 -0.789749,0.75 -1.34375,0.75 0,0 -8.999999,0 -9,0 -0.08048,0 -0.15052,-0.018 -0.21875,-0.0312 0.03313,0.25402 0.287164,0.4375 0.6875,0.4375 2e-6,0 9,0 9,0 0.554002,0 1.15803,-0.33059 1.34375,-0.75 -10e-7,0 0.65625,-1.5 0.65625,-1.5 0.148726,-0.33587 -0.04297,-0.59321 -0.40625,-0.6875 z m 22.71875,0 c 0.02128,0.0896 0.0028,0.17835 -0.03125,0.28125 0,0 -0.499998,1.5 -0.5,1.5 -0.13878,0.41941 -0.695995,0.75 -1.25,0.75 0,0 -7.999995,0 -8,0 -0.102939,0 -0.195821,-0.01 -0.28125,-0.0312 0.06336,0.2554 0.34835,0.4375 0.75,0.4375 2e-6,0 8,0 8,0 0.554002,0 1.11122,-0.33059 1.25,-0.75 -10e-7,0 0.5,-1.5 0.5,-1.5 0.10767,-0.32539 -0.08343,-0.58463 -0.4375,-0.6875 z m 52.3125,0.0312 c 0.0348,0.0817 0.0692,0.158 0.0625,0.25 0,0 -0.0937,1.5 -0.0937,1.5 -0.0306,0.41941 -0.50851,0.75 -1.0625,0.75 0,0 -48.999995,0 -49,0 -0.116041,0 -0.218279,-0.0357 -0.3125,-0.0625 0.0621,0.27027 0.3657,0.4691 0.7812,0.4691 2e-6,0 49,0 49,0 0.55399,0 1.03188,-0.33059 1.0625,-0.75 0,0 0.0937,-1.5 0.0937,-1.5 0.0216,-0.29635 -0.20679,-0.53478 -0.53125,-0.65625 z m 11.875,0 c 0.0386,0.0817 0.0638,0.158 0.0625,0.25 0,0 -0.0312,1.5 -0.0312,1.5 -0.006,0.41941 -0.44599,0.75 -1,0.75 0,0 -8,0 -8,0 -0.1662,0 -0.30118,-0.0408 -0.4375,-0.0937 0.12802,0.28545 0.47608,0.5 0.90625,0.5 0,0 8,0 8,0 0.55401,0 0.99387,-0.33059 1,-0.75 0,0 0.0312,-1.5 0.0312,-1.5 0.004,-0.28812 -0.2183,-0.53083 -0.53125,-0.65625 z m 10.84375,0 c 0.0428,0.0822 0.0901,0.15739 0.0937,0.25 0,0 0.0625,1.5 0.0625,1.5 0.0163,0.41941 -0.41474,0.75 -0.96875,0.75 0,0 -7,0 -7,0 -0.1662,0 -0.33092,-0.0408 -0.46875,-0.0937 0.14131,0.28545 0.50734,0.5 0.9375,0.5 0,0 7,0 7,0 0.55401,0 0.98508,-0.33059 0.96875,-0.75 -1e-5,0 -0.0625,-1.5 -0.0625,-1.5 -0.0112,-0.28812 -0.24545,-0.53083 -0.5625,-0.65625 z m 10.90625,0.0312 c 0.037,0.0716 0.0552,0.13986 0.0625,0.21875 0,0 0.15625,1.5 0.15625,1.5 0.0388,0.41941 -0.38349,0.75 -0.9375,0.75 0,0 -7,0 -7,0 -0.1662,0 -0.32917,-0.0408 -0.46875,-0.0937 0.15466,0.28458 0.50815,0.5 0.9375,0.5 0,0 7,0 7,0 0.55401,0 0.97628,-0.33059 0.9375,-0.75 0,0 -0.15625,-1.5 -0.15625,-1.5 -0.0247,-0.26754 -0.23676,-0.49214 -0.53125,-0.625 z m 10.84375,0 c 0.0409,0.0722 0.0821,0.13919 0.0937,0.21875 0,0 0.21875,1.5 0.21875,1.5 0.0612,0.41941 -0.321,0.75 -0.875,0.75 0,0 -7,0 -7,0 -0.18973,0 -0.37086,-0.0572 -0.53125,-0.125 0.16421,0.30335 0.55309,0.53125 1,0.53125 0,0 7,0 7,0 0.554,0 0.93623,-0.33059 0.875,-0.75 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0391,-0.26754 -0.26355,-0.49214 -0.5625,-0.625 z m 14.8125,0 c 0.0476,0.073 0.10736,0.13818 0.125,0.21875 0,0 0.34374,1.5 0.34375,1.5 0.0918,0.41941 -0.28974,0.75 -0.84375,0.75 0,0 -5,0 -5,0 -0.21534,0 -0.41181,-0.0706 -0.59375,-0.15625 0.18058,0.31718 0.60274,0.5625 1.0625,0.5625 0,0 5,0 5,0 0.55401,0 0.93559,-0.33059 0.84375,-0.75 -1e-5,0 -0.34375,-1.5 -0.34375,-1.5 -0.0575,-0.26289 -0.29065,-0.49093 -0.59375,-0.625 z m 8.9375,0.0312 c 0.0384,0.062 0.0762,0.12052 0.0937,0.1875 0,0 0.375,1.5 0.375,1.5 0.11021,0.41941 -0.22727,0.75 -0.78125,0.75 0,0 -5,0 -5,0 -0.21963,0 -0.43702,-0.0674 -0.625,-0.15625 0.19124,0.32159 0.62991,0.5625 1.09375,0.5625 0,0 5,0 5,0 0.55398,0 0.89146,-0.33059 0.78125,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.0641,-0.24386 -0.28571,-0.45643 -0.5625,-0.59375 z m 8.90625,0 c 0.041,0.062 0.0732,0.12052 0.0937,0.1875 0,0 0.4375,1.5 0.4375,1.5 0.12858,0.41941 -0.19602,0.75 -0.75,0.75 0,0 -5,0 -5,0 -0.22947,0 -0.45874,-0.06 -0.65625,-0.15625 0.20495,0.32159 0.66116,0.5625 1.125,0.5625 0,0 5,0 5,0 0.55398,0 0.87858,-0.33059 0.75,-0.75 0,0 -0.4375,-1.5 -0.4375,-1.5 -0.0739,-0.24111 -0.28468,-0.45619 -0.5625,-0.59375 z m 20.75,0.0312 c 0.0361,0.0521 0.0711,0.10084 0.0937,0.15625 0,0 0.62501,1.5 0.625,1.5 0.17143,0.41941 -0.13349,0.75 -0.6875,0.75 0,0 -14,0 -14,0 -0.22947,0 -0.45564,-0.06 -0.65625,-0.15625 0.22212,0.31924 0.66333,0.5625 1.125,0.5625 0,0 14,0 14,0 0.55401,0 0.85893,-0.33059 0.6875,-0.75 10e-6,0 -0.625,-1.5 -0.625,-1.5 -0.0913,-0.22346 -0.30326,-0.42463 -0.5625,-0.5625 z m 8.875,0 c 0.0405,0.0542 0.0988,0.0985 0.125,0.15625 0,0 0.6875,1.5 0.6875,1.5 0.1898,0.41941 -0.10224,0.75 -0.65625,0.75 0,0 -5,0 -5,0 -0.25487,0 -0.52536,-0.0711 -0.75,-0.1875 0.23998,0.33847 0.73933,0.59375 1.21875,0.59375 0,0 5,0 5,0 0.55401,0 0.84605,-0.33059 0.65625,-0.75 0,0 -0.6875,-1.5 -0.6875,-1.5 -0.10112,-0.22346 -0.3289,-0.42463 -0.59375,-0.5625 z" - id="path2749" - inkscape:connector-curvature="0" /> - </g> - <g - transform="translate(-2.0196324,-147.75)" - id="g2699" - style="display:inline;opacity:0.65753425;fill:url(#linearGradient3812);fill-opacity:1;enable-background:new"> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - id="path2701" - d="m 57.797201,392 c -0.50195,0 -1.04457,0.3305 -1.21721,0.74243 0,0 -0.62865,1.49994 -0.62865,1.49994 -0.17565,0.41909 0.0921,0.75763 0.60083,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 1.05052,-0.33854 1.21411,-0.75763 0,0 0.58552,-1.49994 0.58552,-1.49994 C 63.104421,392.3305 62.829351,392 62.327401,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -1.03235,0.3305 -1.18975,0.74243 0,0 -0.5732,1.49994 -0.5732,1.49994 -0.16014,0.41909 0.12009,0.75763 0.62886,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 1.038,-0.33854 1.18608,-0.75763 0,0 0.53006,-1.49994 0.53006,-1.49994 C 71.271001,392.3305 70.983711,392 70.481761,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -1.02012,0.3305 -1.16229,0.74243 0,0 -0.51772,1.49994 -0.51772,1.49994 -0.14465,0.41909 0.14809,0.75763 0.65687,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 1.02548,-0.33854 1.15808,-0.75763 0,0 0.47458,-1.49994 0.47458,-1.49994 C 79.437591,392.3305 79.138071,392 78.636131,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -1.00791,0.3305 -1.13484,0.74243 0,0 -0.46225,1.49994 -0.46225,1.49994 -0.12915,0.41909 0.17611,0.75763 0.68488,0.75763 0,0 4.59184,0 4.59184,0 0.50878,0 1.01296,-0.33854 1.13006,-0.75763 0,0 0.4191,-1.49994 0.4191,-1.49994 C 87.604171,392.3305 87.292431,392 86.790491,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.99568,0.3305 -1.10738,0.74243 0,0 -0.40679,1.49994 -0.40679,1.49994 -0.11365,0.41909 0.20413,0.75763 0.71291,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 1.00044,-0.33854 1.10203,-0.75763 0,0 0.36364,-1.49994 0.36364,-1.49994 0.0999,-0.41193 -0.2241,-0.74243 -0.72605,-0.74243 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.98346,0.3305 -1.07993,0.74243 0,0 -0.35131,1.49994 -0.35131,1.49994 -0.0982,0.41909 0.23215,0.75763 0.74093,0.75763 0,0 4.591819,0 4.591819,0 0.50879,0 0.98793,-0.33854 1.07403,-0.75763 0,0 0.30817,-1.49994 0.30817,-1.49994 0.0846,-0.41193 -0.25156,-0.74243 -0.75352,-0.74242 0,0 -4.530189,-10e-6 -4.530189,-10e-6 0,0 0,0 0,0 m 8.154359,0 c -0.50194,0 -0.97123,0.3305 -1.05248,0.74243 0,0 -0.29584,1.49994 -0.29584,1.49994 -0.0827,0.41909 0.26017,0.75763 0.76895,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.9754,-0.33854 1.046,-0.75763 0,0 0.2527,-1.49994 0.2527,-1.49994 C 112.10394,392.3305 111.75552,392 111.25357,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,10e-6 c -0.50193,-10e-6 -0.959,0.33049 -1.02501,0.74242 0,0 -0.24037,1.49994 -0.24037,1.49994 -0.0672,0.41909 0.28818,0.75763 0.79696,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.96288,-0.33854 1.01799,-0.75763 0,0 0.19723,-1.49994 0.19723,-1.49994 C 120.27056,392.3305 119.90988,392 119.40794,392 c 0,0 -4.53021,10e-6 -4.53021,10e-6 0,0 0,0 0,0 M 123.0321,392 c -0.50194,0 -0.94678,0.3305 -0.99756,0.74243 0,0 -0.1849,1.49994 -0.1849,1.49994 -0.0517,0.41909 0.31621,0.75763 0.82497,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.95036,-0.33854 0.98997,-0.75763 0,0 0.14175,-1.49994 0.14175,-1.49994 C 128.43707,392.33049 128.06424,392 127.5623,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,10e-6 -0.93456,0.3305 -0.9701,0.74243 0,0 -0.12943,1.49994 -0.12943,1.49994 -0.0362,0.41909 0.34421,0.75763 0.85299,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.93785,-0.33854 0.96196,-0.75763 0,0 0.0863,-1.49994 0.0863,-1.49994 C 136.60371,392.3305 136.21864,392 135.71668,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -0.92233,0.33049 -0.94265,0.74243 0,0 -0.074,1.49994 -0.074,1.49994 -0.0207,0.41909 0.37224,0.75763 0.88101,0.75763 0,0 4.59184,0 4.59184,0 0.50879,0 0.92532,-0.33854 0.93393,-0.75763 0,0 0.0308,-1.49994 0.0308,-1.49994 0.008,-0.41193 -0.38883,-0.74243 -0.89079,-0.74243 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -0.91011,0.3305 -0.91519,0.74243 0,0 -0.0185,1.49994 -0.0185,1.49994 -0.005,0.41909 0.40025,0.75763 0.90903,0.75763 0,0 4.59185,0 4.59185,0 0.50876,0 0.91279,-0.33854 0.9059,-0.75763 0,0 -0.0247,-1.49994 -0.0247,-1.49994 -0.007,-0.41193 -0.4163,-0.74242 -0.91824,-0.74243 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -0.8979,0.3305 -0.88774,0.74243 0,0 0.037,1.49994 0.037,1.49994 0.0103,0.41909 0.42827,0.75763 0.93705,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.90029,-0.33854 0.8779,-0.75763 0,0 -0.0801,-1.49994 -0.0801,-1.49994 -0.022,-0.41193 -0.44376,-0.74243 -0.9457,-0.74242 0,0 -4.5302,-10e-6 -4.5302,-10e-6 0,0 0,0 0,0 m 8.15437,0 c -0.50196,0 -0.88568,0.3305 -0.86029,0.74243 0,0 0.0925,1.49994 0.0925,1.49994 0.0258,0.41909 0.45629,0.75763 0.96506,0.75763 0,0 11.93878,0 11.93878,0 0.50877,0 0.87663,-0.33854 0.82497,-0.75763 0,0 -0.1849,-1.49994 -0.1849,-1.49994 -0.0508,-0.41193 -0.49561,-0.74242 -0.99755,-0.74243 0,0 -11.77852,0 -11.77852,0 0,0 0,0 0,0 m 20.83891,0 c -0.50194,0 -0.85443,0.33049 -0.79011,0.74243 0,0 0.2342,1.49994 0.2342,1.49994 0.0654,0.41909 0.52789,0.75763 1.03667,0.75763 0,0 4.59184,0 4.59184,0 0.50878,0 0.85577,-0.33854 0.77827,-0.75763 0,0 -0.27735,-1.49994 -0.27735,-1.49994 C 190.14014,392.3305 189.67498,392 189.17303,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -0.84222,0.3305 -0.76266,0.74243 0,0 0.28967,1.49994 0.28967,1.49994 0.0809,0.41909 0.55591,0.75763 1.06469,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.84324,-0.33854 0.75025,-0.75763 0,0 -0.33282,-1.49994 -0.33282,-1.49994 -0.0914,-0.41193 -0.56882,-0.74242 -1.07076,-0.74243 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.82999,0.3305 -0.73521,0.74243 0,0 0.34515,1.49994 0.34515,1.49994 0.0964,0.41909 0.58393,0.75763 1.0927,0.75763 0,0 4.59185,0 4.59185,0 0.50876,0 0.83072,-0.33854 0.72223,-0.75763 0,0 -0.38829,-1.49994 -0.38829,-1.49994 C 206.47335,392.3305 205.9837,392 205.48176,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 10.87248,0 c -0.50194,10e-6 -0.81369,0.3305 -0.6986,0.74243 0,0 0.41911,1.49994 0.41911,1.49994 0.1171,0.41909 0.62128,0.75763 1.13006,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.81403,-0.33854 0.68488,-0.75763 0,0 -0.46225,-1.49994 -0.46225,-1.49994 C 217.36212,392.33049 216.85618,392 216.35423,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -0.80147,0.33049 -0.67114,0.74243 0,0 0.47458,1.49994 0.47458,1.49994 0.1326,0.41909 0.6493,0.75763 1.15808,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.80152,-0.33854 0.65687,-0.75763 0,0 -0.51772,-1.49994 -0.51772,-1.49994 C 225.52871,392.3305 225.01055,392 224.5086,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -0.78926,0.3305 -0.64369,0.74243 0,0 0.53005,1.49994 0.53005,1.49994 0.14809,0.41909 0.67732,0.75763 1.18609,0.75763 0,0 4.59184,0 4.59184,0 0.50878,0 0.789,-0.33854 0.62885,-0.75763 0,0 -0.57319,-1.49994 -0.57319,-1.49994 C 233.6953,392.3305 233.16491,392 232.66297,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.77703,0.3305 -0.61623,0.74243 0,0 0.58551,1.49994 0.58551,1.49994 0.1636,0.41909 0.70534,0.75763 1.21412,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.77647,-0.33854 0.60082,-0.75763 0,0 -0.62865,-1.49994 -0.62865,-1.49994 -0.17265,-0.41193 -0.71526,-0.74242 -1.2172,-0.74243 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0" - style="display:inline;fill:url(#linearGradient3796);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - id="path2703" - d="m 59.562374,387.99172 c -0.492566,0 -1.02148,0.33244 -1.186454,0.74672 0,0 -0.600568,1.50823 -0.600568,1.50823 -0.167765,0.42132 0.09855,0.76162 0.597605,0.76162 0,0 4.50446,0 4.50446,0 0.499096,0 1.027112,-0.3403 1.183361,-0.76162 0,0 0.559364,-1.50823 0.559364,-1.50823 0.153638,-0.41428 -0.11962,-0.74672 -0.612187,-0.74672 0,0 -4.445581,0 -4.445581,0 0,0 0,0 0,0 m 16.004072,0 c -0.492566,0 -0.998121,0.33244 -1.133975,0.74672 0,0 -0.494591,1.50823 -0.494591,1.50823 -0.138162,0.42132 0.152036,0.76162 0.651132,0.76162 0,0 4.50446,0 4.50446,0 0.499096,0 1.00319,-0.3403 1.129833,-0.76162 0,0 0.453378,-1.50823 0.453378,-1.50823 0.124537,-0.41428 -0.172079,-0.74672 -0.664645,-0.74672 0,0 -4.445592,0 -4.445592,0 0,0 0,0 0,0 m 8.002041,0 c -0.492566,0 -0.986442,0.33244 -1.107745,0.74672 0,0 -0.441599,1.50823 -0.441599,1.50823 -0.123358,0.42132 0.1788,0.76162 0.677896,0.76162 0,0 4.50445,0 4.50445,0 0.499096,0 0.991238,-0.3403 1.10309,-0.76162 0,0 0.400375,-1.50823 0.400375,-1.50823 0.109986,-0.41428 -0.198319,-0.74672 -0.690895,-0.74672 0,0 -4.445572,0 -4.445572,0 0,0 0,0 0,0 m 8.002042,0 c -0.492567,0 -0.974764,0.33244 -1.081506,0.74672 0,0 -0.388616,1.50823 -0.388616,1.50823 -0.108546,0.42132 0.205563,0.76162 0.70465,0.76162 0,0 4.504469,-10e-6 4.504469,-10e-6 0.499086,10e-6 0.979278,-0.34029 1.076316,-0.76161 0,0 0.347392,-1.50823 0.347392,-1.50823 0.09543,-0.41428 -0.224568,-0.74672 -0.717124,-0.74672 0,0 -4.445581,0 -4.445581,0 0,0 0,0 0,0 m 8.002041,0 c -0.492567,0 -0.963095,0.33244 -1.055277,0.74672 0,0 -0.335612,1.50823 -0.335612,1.50823 -0.09371,0.42132 0.232307,0.76162 0.731413,0.76161 0,0 4.504446,10e-6 4.504446,10e-6 0.4991,0 0.96733,-0.3403 1.04957,-0.76162 0,0 0.2944,-1.50823 0.2944,-1.50823 0.0808,-0.41428 -0.2508,-0.74672 -0.74337,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 11.5585,0 c -0.49257,0 -0.94622,0.33244 -1.01738,0.74672 0,0 -0.25908,1.50823 -0.25908,1.50823 -0.0724,0.42132 0.27098,0.76162 0.77008,0.76161 0,0 4.50445,10e-6 4.50445,10e-6 0.49909,0 0.95005,-0.3403 1.01091,-0.76162 0,0 0.21785,-1.50823 0.21785,-1.50823 0.0599,-0.41428 -0.28868,-0.74672 -0.78126,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 8.00203,0 c -0.49256,0 -0.93454,0.33244 -0.99114,0.74672 0,0 -0.20607,1.50823 -0.20607,1.50823 -0.0575,0.42132 0.29773,0.76161 0.79683,0.76161 0,0 4.50445,10e-6 4.50445,10e-6 0.4991,0 0.9381,-0.3403 0.98415,-0.76162 0,0 0.16486,-1.50823 0.16486,-1.50823 0.0452,-0.41428 -0.31492,-0.74672 -0.80749,-0.74672 0,0 -4.44559,0 -4.44559,0 0,0 0,0 0,0 m 8.00205,0 c -0.49257,0 -0.92286,0.33244 -0.96491,0.74672 0,0 -0.15309,1.50823 -0.15309,1.50823 -0.0427,0.42132 0.32449,0.76161 0.82358,0.76162 0,0 4.50447,0 4.50447,0 0.49909,0 0.92613,-0.3403 0.95737,-0.76162 0,0 0.11188,-1.50823 0.11188,-1.50823 0.0307,-0.41428 -0.34115,-0.74672 -0.83372,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00203,0 c -0.49257,-10e-6 -0.91117,0.33244 -0.93867,0.74672 0,0 -0.10006,1.50823 -0.10006,1.50823 -0.028,0.42132 0.35124,0.76161 0.85034,0.76162 0,0 4.50446,0 4.50446,0 0.4991,0 0.91418,-0.3403 0.93062,-0.76162 0,0 0.0588,-1.50823 0.0588,-1.50823 0.0162,-0.41428 -0.36739,-0.74672 -0.85996,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 11.55851,0 c -0.49258,0 -0.89431,0.33244 -0.90079,0.74672 0,0 -0.0236,1.50823 -0.0236,1.50823 -0.007,0.42132 0.38991,0.76161 0.88901,0.76162 0,0 4.50445,0 4.50445,0 0.49909,0 0.89692,-0.3403 0.89198,-0.76162 0,0 -0.0176,-1.50823 -0.0176,-1.50823 -0.005,-0.41428 -0.40529,-0.74672 -0.89786,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 8.00203,0 c -0.49257,0 -0.88262,0.33244 -0.87454,0.74672 0,0 0.0294,1.50823 0.0294,1.50823 0.008,0.42132 0.41666,0.76162 0.91576,0.76162 0,0 4.50445,0 4.50445,0 0.4991,-10e-6 0.88495,-0.3403 0.86521,-0.76162 0,0 -0.0706,-1.50823 -0.0706,-1.50823 -0.0195,-0.41428 -0.43153,-0.74672 -0.9241,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00204,0 c -0.49257,0 -0.87095,0.33244 -0.84829,0.74672 0,0 0.0824,1.50823 0.0824,1.50823 0.0231,0.42132 0.44341,0.76162 0.9425,0.76162 0,0 4.50447,-10e-6 4.50447,-10e-6 0.49909,0 0.87298,-0.34029 0.83845,-0.76161 0,0 -0.12365,-1.50823 -0.12365,-1.50823 -0.034,-0.41428 -0.45777,-0.74672 -0.95034,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 8.00203,0 c -0.49256,0 -0.85926,0.33244 -0.82206,0.74672 0,0 0.13542,1.50823 0.13542,1.50823 0.0379,0.42132 0.47018,0.76162 0.96928,0.76162 0,0 4.50446,-10e-6 4.50446,-10e-6 0.49909,10e-6 0.86103,-0.34029 0.81169,-0.76161 0,0 -0.17664,-1.50823 -0.17664,-1.50823 -0.0485,-0.41428 -0.484,-0.74672 -0.97656,-0.74672 0,0 -4.44559,0 -4.44559,0 0,0 0,0 0,0 m 13.33673,0 c -0.49256,0 -0.83979,0.33244 -0.77832,0.74672 0,0 0.22373,1.50823 0.22373,1.50823 0.0625,0.42132 0.51479,0.76162 1.01387,0.76162 0,0 4.50446,-10e-6 4.50446,-10e-6 0.4991,0 0.8411,-0.34029 0.7671,-0.76161 0,0 -0.26496,-1.50823 -0.26496,-1.50823 -0.0727,-0.41428 -0.52773,-0.74672 -1.0203,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00204,0 c -0.49257,0 -0.82812,0.33244 -0.75211,0.74672 0,0 0.27674,1.50823 0.27674,1.50823 0.0773,0.42132 0.54154,0.76162 1.04064,0.76162 0,0 4.50446,-10e-6 4.50446,-10e-6 0.49908,10e-6 0.82915,-0.34029 0.74034,-0.76161 0,0 -0.31796,-1.50823 -0.31796,-1.50823 -0.0874,-0.41428 -0.55396,-0.74672 -1.04653,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00204,0 c -0.49257,0 -0.81644,0.33244 -0.72587,0.74672 0,0 0.32973,1.50823 0.32973,1.50823 0.0921,0.42132 0.56829,0.76162 1.06739,0.76161 0,0 4.50446,0 4.50446,0 0.49909,10e-6 0.8172,-0.34029 0.71358,-0.76161 0,0 -0.37094,-1.50823 -0.37094,-1.50823 -0.1019,-0.41428 -0.5802,-0.74672 -1.07278,-0.74673 0,0 -4.44557,10e-6 -4.44557,10e-6 0,0 0,0 0,0" - style="display:inline;fill:url(#linearGradient3798);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - id="path2705" - d="m 55.676858,396 c -0.51226,0 -1.06894,0.33042 -1.24878,0.74227 0,0 -0.65494,1.49995 -0.65494,1.49995 -0.18302,0.41915 0.0872,0.75778 0.60663,0.75778 0,0 8.4375,0 8.4375,0 0.51937,0 1.0694,-0.33863 1.23269,-0.75778 0,0 0.58431,-1.49995 0.58431,-1.49995 0.16044,-0.41185 -0.12324,-0.74227 -0.6355,-0.74227 0,0 -8.32191,0 -8.32191,0 0,0 0,0 0,0 m 12.02054,0 c -0.51226,0 -1.05054,0.33042 -1.20746,0.74227 0,0 -0.57147,1.49995 -0.57147,1.49995 -0.1597,0.41915 0.12942,0.75778 0.6488,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.05635,-0.33863 1.20349,-0.75778 0,0 0.52652,-1.49995 0.52652,-1.49995 C 73.129358,396.33042 72.832948,396 72.320688,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -1.03781,0.33042 -1.17887,0.74227 0,0 -0.51368,1.49995 -0.51368,1.49995 -0.14354,0.41915 0.15862,0.75778 0.678,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.04332,-0.33863 1.17429,-0.75778 0,0 0.46874,-1.49995 0.46874,-1.49995 C 81.464008,396.33042 81.154868,396 80.642608,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -1.02509,0.33042 -1.15027,0.74227 0,0 -0.45589,1.49995 -0.45589,1.49995 -0.1274,0.41915 0.18781,0.75778 0.70719,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.03026,-0.33863 1.1451,-0.75778 0,0 0.41094,-1.49995 0.41094,-1.49995 C 89.798658,396.33042 89.476788,396 88.964528,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -1.01236,0.33042 -1.12168,0.74227 0,0 -0.3981,1.49995 -0.3981,1.49995 -0.11125,0.41915 0.21701,0.75778 0.73639,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.01722,-0.33863 1.1159,-0.75778 0,0 0.35316,-1.49995 0.35316,-1.49995 0.097,-0.41185 -0.23763,-0.74227 -0.74989,-0.74227 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.321912,0 c -0.51226,0 -0.999622,0.33043 -1.093072,0.74227 0,0 -0.34031,1.49995 -0.34031,1.49995 -0.0951,0.41915 0.2462,0.75778 0.765582,0.75778 0,0 4.6875,0 4.6875,0 0.51936,0 1.00417,-0.33863 1.08671,-0.75778 0,0 0.29536,-1.49995 0.29536,-1.49995 0.0811,-0.41185 -0.26623,-0.74227 -0.77848,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.98689,0.33042 -1.06447,0.74227 0,0 -0.28252,1.49995 -0.28252,1.49995 -0.079,0.41915 0.27539,0.75778 0.79477,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 0.99113,-0.33863 1.05752,-0.75778 0,0 0.23758,-1.49995 0.23758,-1.49995 0.0652,-0.41185 -0.29483,-0.74227 -0.80709,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.97416,0.33042 -1.03587,0.74227 0,0 -0.22474,1.49995 -0.22474,1.49995 -0.0628,0.41915 0.30459,0.75778 0.82397,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 0.97808,-0.33863 1.02833,-0.75779 0,0 0.17978,-1.49994 0.17978,-1.49994 C 123.13728,396.33042 122.76446,396 122.2522,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.96144,0.33042 -1.00728,0.74227 0,0 -0.16694,1.49995 -0.16694,1.49995 -0.0467,0.41915 0.33378,0.75778 0.85316,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 0.96504,-0.33863 0.99913,-0.75779 0,0 0.122,-1.49994 0.122,-1.49994 C 131.4719,396.33042 131.08637,396 130.57411,396 c 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32191,0 c -0.51225,0 -0.9487,0.33042 -0.97867,0.74227 0,0 -0.10916,1.49994 -0.10916,1.49994 -0.0305,0.41916 0.36298,0.75779 0.88236,0.75779 0,0 4.6875,0 4.6875,0 0.51937,0 0.95199,-0.33863 0.96993,-0.75779 0,0 0.0642,-1.49995 0.0642,-1.49995 C 139.8065,396.33042 139.40828,396 138.89602,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.93596,0.33042 -0.95008,0.74226 0,0 -0.0514,1.49995 -0.0514,1.49995 -0.0144,0.41916 0.39217,0.75779 0.91154,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.93895,-0.33863 0.94074,-0.75778 0,0 0.006,-1.49995 0.006,-1.49995 0.002,-0.41184 -0.40921,-0.74227 -0.92147,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.92323,0.33042 -0.92148,0.74226 0,0 0.006,1.49995 0.006,1.49995 0.002,0.41916 0.42137,0.75779 0.94074,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.92591,-0.33863 0.91155,-0.75778 0,0 -0.0514,-1.49995 -0.0514,-1.49995 -0.0141,-0.41185 -0.4378,-0.74227 -0.95007,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.91052,0.33043 -0.89289,0.74227 0,0 0.0642,1.49995 0.0642,1.49995 0.018,0.41915 0.45057,0.75778 0.96994,0.75778 0,0 4.6875,0 4.6875,0 0.51938,0 0.91286,-0.33863 0.88236,-0.75778 0,0 -0.10916,-1.49995 -0.10916,-1.49995 -0.03,-0.41185 -0.46641,-0.74227 -0.97868,-0.74227 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32191,0 c -0.51226,0 -0.89778,0.33042 -0.86428,0.74227 0,0 0.122,1.49995 0.122,1.49995 0.0341,0.41915 0.47976,0.75778 0.99913,0.75778 0,0 8.4375,0 8.4375,0 0.51938,0 0.89402,-0.33863 0.84019,-0.75778 0,0 -0.19263,-1.49995 -0.19263,-1.49995 C 176.84849,396.33042 176.39366,396 175.8814,396 c 0,0 -8.32192,0 -8.32192,0 0,0 0,0 0,0 m 17.5685,0 c -0.51226,0 -0.8709,0.33042 -0.80392,0.74226 0,0 0.244,1.49995 0.244,1.49995 0.0682,0.41916 0.5414,0.75779 1.06077,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.87227,-0.33863 0.79153,-0.75778 0,0 -0.28895,-1.49995 -0.28895,-1.49995 C 190.73961,396.33042 190.26353,396 189.75126,396 c 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32192,0 c -0.51227,0 -0.85818,0.33043 -0.77532,0.74227 0,0 0.30178,1.49995 0.30178,1.49995 0.0843,0.41915 0.5706,0.75778 1.08997,0.75778 0,0 4.6875,0 4.6875,0 0.51938,0 0.85923,-0.33863 0.76233,-0.75778 0,0 -0.34673,-1.49995 -0.34673,-1.49995 C 199.07423,396.33042 198.58544,396 198.07318,396 c 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32191,0 c -0.51226,0 -0.84544,0.33042 -0.74671,0.74227 0,0 0.35957,1.49995 0.35957,1.49995 0.10049,0.41915 0.59979,0.75778 1.11916,0.75778 0,0 4.68751,0 4.68751,0 0.51937,0 0.84617,-0.33863 0.73312,-0.75778 0,0 -0.40452,-1.49995 -0.40452,-1.49995 C 207.40887,396.33042 206.90736,396 206.39511,396 c 0,0 -4.6233,0 -4.6233,0 0,0 0,0 0,0 m 11.09589,0 c -0.51226,0 -0.82846,0.33042 -0.70858,0.74227 0,0 0.43662,1.49994 0.43662,1.49994 0.12202,0.41916 0.63872,0.75779 1.15809,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.82878,-0.33863 0.6942,-0.75779 0,0 -0.48157,-1.49995 -0.48157,-1.49995 C 218.52174,396.33042 218.00325,396 217.49099,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.81573,0.33042 -0.67999,0.74226 0,0 0.49442,1.49995 0.49442,1.49995 0.13816,0.41916 0.66791,0.75779 1.18728,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.81574,-0.33863 0.66501,-0.75778 0,0 -0.53936,-1.49995 -0.53936,-1.49995 C 226.85638,396.33043 226.32517,396 225.81291,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.80301,0.33043 -0.6514,0.74227 0,0 0.5522,1.49995 0.5522,1.49995 0.15433,0.41915 0.69712,0.75778 1.21649,0.75778 0,0 4.6875,0 4.6875,0 0.51938,0 0.80269,-0.33863 0.63582,-0.75778 0,0 -0.59716,-1.49995 -0.59716,-1.49995 C 235.19103,396.33042 234.64709,396 234.13483,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0" - style="display:inline;fill:url(#linearGradient3800);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccsccccccsccccccscscsccccscscccsccccsccccccscsccccccccccccccccccccccccccccsccccscccscccccccccccccscccccsccsccccccccccscscsccccsccccccscscccsc" - id="path2707" - d="m 54.028132,400 c -0.523009,0 -1.09378,0.33823 -1.28125,0.75 0,0 -0.6875,1.5 -0.6875,1.5 -0.190879,0.41924 0.09455,0.75 0.625,0.75 10e-7,0 11.46875,0 11.46875,0 0.53043,0 1.08532,-0.33076 1.25,-0.75 -10e-7,0 0.59375,-1.5 0.59375,-1.5 0.16174,-0.41177 -0.13325,-0.75 -0.65625,-0.75 10e-7,0 -11.3125,0 -11.3125,0 z m 15.09375,0 c -0.523008,0 -1.06068,0.33823 -1.21875,0.75 0,0 -0.59375,1.5 -0.59375,1.5 -0.160941,0.41924 0.15707,0.75 0.6875,0.75 -4e-6,0 4.78125,0 4.78125,0 0.530433,0 1.07092,-0.33076 1.21875,-0.75 -10e-7,0 0.53125,-1.5 0.53125,-1.5 0.145203,-0.41177 -0.16449,-0.75 -0.6875,-0.75 -10e-7,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523003,0 -1.04598,0.33823 -1.1875,0.75 -2e-6,0 -0.53125,1.5 -0.53125,1.5 -0.144088,0.41924 0.15707,0.75 0.6875,0.75 2e-6,0 4.8125,0 4.8125,0 0.530431,0 1.05651,-0.33076 1.1875,-0.75 -2e-6,0 0.46875,-1.5 0.46875,-1.5 0.128662,-0.41177 -0.19574,-0.75 -0.71875,-0.75 10e-7,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523009,0 -1.06251,0.33823 -1.1875,0.75 2e-6,0 -0.4375,1.5 -0.4375,1.5 -0.127249,0.41924 0.18832,0.75 0.71875,0.75 -3e-6,0 4.78125,0 4.78125,0 0.530423,0 1.07335,-0.33076 1.1875,-0.75 0,0 0.40625,-1.5 0.40625,-1.5 0.112118,-0.41177 -0.227,-0.75 -0.75,-0.75 -3e-6,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523007,0 -1.04781,0.33823 -1.15625,0.75 10e-7,0 -0.375,1.5 -0.375,1.5 -0.11041,0.41924 0.21958,0.75 0.75,0.75 -3e-6,0 4.78125,0 4.78125,0 0.530418,0 1.02769,-0.33076 1.125,-0.75 -10e-7,0 0.374998,-1.5 0.374998,-1.5 0.0956,-0.41177 -0.258238,-0.75 -0.781248,-0.75 -10e-7,0 -4.71875,0 -4.71875,0 z m 8.499998,0 c -0.523,0 -1.0331,0.33823 -1.125,0.75 0,0 -0.34375,1.5 -0.34375,1.5 -0.0936,0.41924 0.28208,0.75 0.8125,0.75 0,0 4.78125,0 4.78125,0 0.53042,0 1.01329,-0.33076 1.09375,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.079,-0.41177 -0.25824,-0.75 -0.78125,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -1.01839,0.33823 -1.09375,0.75 0,0 -0.28125,1.5 -0.28125,1.5 -0.0767,0.41924 0.28208,0.75 0.8125,0.75 0,0 4.8125,0 4.8125,0 0.53042,0 0.99888,-0.33076 1.0625,-0.75 0,0 0.21875,-1.5 0.21875,-1.5 0.0625,-0.41177 -0.2895,-0.75 -0.8125,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.46875,0 c -0.52301,0 -0.97245,0.33823 -1.03125,0.75 0,0 -0.21875,1.5 -0.21875,1.5 -0.0599,0.41924 0.31333,0.75 0.84375,0.75 0,0 4.78125,0 4.78125,0 0.53042,0 1.01571,-0.33075 1.0625,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0459,-0.41179 -0.32074,-0.75 -0.84375,-0.75 0,0 -4.75,0 -4.75,0 z m 8.5,0 c -0.523,0 -0.95773,0.33823 -1,0.75 0,0 -0.15625,1.5 -0.15625,1.5 -0.043,0.41924 0.34457,0.75 0.875,0.75 0,0 4.78125,0 4.78125,0 0.53044,0 0.97006,-0.33075 1,-0.75 1e-5,0 0.125,-1.5 0.125,-1.5 0.0294,-0.41177 -0.38324,-0.75 -0.90625,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -0.94302,0.33822 -0.96875,0.75 0,-10e-6 -0.0937,1.5 -0.0937,1.5 -0.0262,0.41925 0.37582,0.75 0.90625,0.75 0,0 4.78125,0 4.78125,0 0.53043,0 0.95565,-0.33076 0.96875,-0.75 1e-5,0 0.0625,-1.5 0.0625,-1.5 0.0129,-0.41177 -0.4145,-0.75 -0.9375,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -0.95956,0.33823 -0.96875,0.75 0,0 -0.0312,1.5 -0.0312,1.5 -0.009,0.41925 0.40707,0.75 0.9375,0.75 0,0 4.8125,0 4.8125,0 0.53043,0 0.94124,-0.33076 0.9375,-0.75 0,0 0,-1.5 0,-1.5 -0.004,-0.41177 -0.44574,-0.75 -0.96875,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523,0 -0.94485,0.33823 -0.9375,0.75 1e-5,0 0.0312,1.5 0.0312,1.5 0.007,0.41924 0.43832,0.75 0.96875,0.75 0,0 4.78125,0 4.78125,0 0.53043,0 0.95809,-0.33076 0.9375,-0.75 0,0 -0.0937,-1.5 -0.0937,-1.5 -0.0202,-0.41177 -0.44574,-0.75 -0.96875,-0.75 -1e-5,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52302,0 -0.93014,0.33823 -0.90625,0.75 -1e-5,0 0.0937,1.5 0.0937,1.5 0.0243,0.41924 0.46957,0.75 1,0.75 l 14.34375,0 c 0.53043,0 0.93114,-0.33076 0.875,-0.75 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0551,-0.41177 -0.50825,-0.75 -1.03125,-0.75 l -14.15625,0 z m 51.90625,0 c -0.523,0 -0.84374,0.33823 -0.71875,0.75 0,0 0.46875,1.5 0.46875,1.5 0.12725,0.41924 0.65708,0.75 1.1875,0.75 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.8591,-0.33076 0.71875,-0.75 1e-5,0 -0.5,-1.5 -0.5,-1.5 -0.13785,-0.41177 -0.69574,-0.75 -1.21875,-0.75 1e-5,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52302,0 -0.82902,0.33823 -0.6875,0.75 0,0 0.53125,1.5 0.53125,1.5 0.14408,0.41924 0.68833,0.75 1.21875,0.75 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.81345,-0.33075 0.65625,-0.75 0,0 -0.5625,-1.5 -0.5625,-1.5 -0.15438,-0.41177 -0.69575,-0.75 -1.21875,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -0.81432,0.33822 -0.65625,0.75 0,-10e-6 0.59375,1.5 0.59375,1.5 0.16095,0.41925 0.71958,0.75 1.25,0.75 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.79903,-0.33075 0.625,-0.75 0,0 -0.625,-1.5 -0.625,-1.5 -0.17093,-0.41177 -0.72699,-0.75 -1.25,-0.75 1e-5,0 -4.71875,0 -4.71875,0 z" - style="display:inline;fill:url(#linearGradient3802);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - id="path2709" - d="m 51.903041,404.00001 c -0.53421,0 -1.12119,0.33025 -1.31681,0.74194 0,0 -0.7127,1.49993 -0.7127,1.49993 -0.19925,0.41932 0.0761,0.75812 0.61802,0.75812 0,0 15.65218,0 15.65218,0 0.54195,0 1.11084,-0.3388 1.27492,-0.75812 0,0 0.58694,-1.49993 0.58694,-1.49993 0.16109,-0.41169 -0.13976,-0.74194 -0.67398,-0.74194 0,0 -15.42857,0 -15.42857,0 0,0 0,0 0,0 m 19.28572,0 c -0.53422,0 -1.09043,0.33025 -1.24769,0.74194 0,0 -0.57296,1.49993 -0.57296,1.49993 -0.16017,0.41932 0.1467,0.75812 0.68866,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 1.09664,-0.3388 1.24315,-0.75812 0,0 0.52404,-1.49993 0.52404,-1.49993 0.14384,-0.41169 -0.17086,-0.74194 -0.70508,-0.74194 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -1.07658,0.33025 -1.21658,0.74194 0,0 -0.51008,1.49993 -0.51008,1.49993 -0.14259,0.41932 0.17849,0.75812 0.72045,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 1.08244,-0.3388 1.21136,-0.75812 0,0 0.46116,-1.49993 0.46116,-1.49993 0.12657,-0.41169 -0.20197,-0.74194 -0.73619,-0.74194 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -1.06274,0.33025 -1.18548,0.74194 0,0 -0.44718,1.49993 -0.44718,1.49993 -0.12502,0.41932 0.21027,0.75812 0.75222,0.75812 0,0 4.89131,0 4.89131,0 0.54195,0 1.06823,-0.3388 1.17957,-0.75812 0,0 0.39828,-1.49993 0.39828,-1.49993 0.10931,-0.41169 -0.23308,-0.74194 -0.76729,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -1.04889,0.33025 -1.15437,0.74194 0,0 -0.3843,1.49993 -0.3843,1.49993 -0.10744,0.41932 0.24205,0.75812 0.78401,0.75812 0,0 4.891309,0 4.891309,0 0.54195,0 1.05402,-0.3388 1.14778,-0.75812 0,0 0.33539,-1.49993 0.33539,-1.49993 0.0921,-0.41169 -0.26418,-0.74194 -0.79839,-0.74194 0,0 -4.821429,0 -4.821429,0 0,0 0,0 0,0 m 8.678579,0 c -0.53421,0 -1.03506,0.33025 -1.12327,0.74194 0,0 -0.32142,1.49993 -0.32142,1.49993 -0.0898,0.41932 0.27385,0.75812 0.81581,0.75812 0,0 4.89129,0 4.89129,0 0.54197,0 1.03982,-0.3388 1.11601,-0.75812 0,0 0.2725,-1.49993 0.2725,-1.49993 0.0748,-0.41169 -0.29528,-0.74194 -0.82949,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 M 114.58162,404 c -0.53421,10e-6 -1.02121,0.33026 -1.09217,0.74195 0,0 -0.25853,1.49993 -0.25853,1.49993 -0.0723,0.41932 0.30564,0.75812 0.8476,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 1.02561,-0.3388 1.08421,-0.75812 0,0 0.20962,-1.49993 0.20962,-1.49993 0.0575,-0.41169 -0.32639,-0.74194 -0.8606,-0.74194 0,0 -4.82143,-10e-6 -4.82143,-10e-6 0,0 0,0 0,0 m 8.67857,10e-6 c -0.53421,-10e-6 -1.00736,0.33025 -1.06106,0.74194 0,0 -0.19564,1.49993 -0.19564,1.49993 -0.0547,0.41932 0.33742,0.75812 0.87936,0.75812 0,0 4.89132,0 4.89132,0 0.54195,0 1.0114,-0.3388 1.05242,-0.75812 0,0 0.14674,-1.49993 0.14674,-1.49993 0.0403,-0.41169 -0.3575,-0.74194 -0.89171,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53421,0 -0.99351,0.33025 -1.02995,0.74194 0,0 -0.13276,1.49993 -0.13276,1.49993 -0.0371,0.41932 0.36919,0.75812 0.91116,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 0.99721,-0.3388 1.02065,-0.75812 0,0 0.0839,-1.49993 0.0839,-1.49993 0.023,-0.41169 -0.3886,-0.74194 -0.92282,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53421,0 -0.97967,0.33025 -0.99884,0.74194 0,0 -0.0699,1.49993 -0.0699,1.49993 -0.0195,0.41932 0.40099,0.75812 0.94295,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 0.983,-0.3388 0.98886,-0.75812 0,0 0.021,-1.49993 0.021,-1.49993 0.006,-0.41169 -0.4197,-0.74194 -0.95392,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53421,0 -0.96582,0.33025 -0.96774,0.74194 0,0 -0.007,1.49993 -0.007,1.49993 -0.002,0.41932 0.43277,0.75812 0.97472,0.75812 0,0 4.89131,0 4.89131,0 0.54196,0 0.96879,-0.3388 0.95707,-0.75812 0,0 -0.0419,-1.49993 -0.0419,-1.49993 -0.0115,-0.41169 -0.45081,-0.74195 -0.98503,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67858,0 c -0.53422,0 -0.95198,0.33025 -0.93664,0.74194 0,0 0.0559,1.49993 0.0559,1.49993 0.0156,0.41932 0.46456,0.75812 1.00651,0.75812 0,0 19.56522,0 19.56522,0 0.54195,0 0.93091,-0.3388 0.87231,-0.75812 0,0 -0.20962,-1.49993 -0.20962,-1.49993 -0.0575,-0.41169 -0.53377,-0.74194 -1.06797,-0.74194 0,0 -19.28571,0 -19.28571,0 0,0 0,0 0,0 m 37.60714,0 c -0.53422,0 -0.89198,0.33025 -0.80185,0.74194 0,0 0.32841,1.49993 0.32841,1.49993 0.0918,0.41932 0.60229,0.75812 1.14424,0.75812 0,0 4.89131,0 4.89131,0 0.54195,0 0.89303,-0.3388 0.78755,-0.75812 0,0 -0.37731,-1.49993 -0.37731,-1.49993 -0.10356,-0.41169 -0.61671,-0.74194 -1.15092,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 20.25,0 c -0.53423,0 -0.85968,0.33025 -0.72927,0.74194 0,0 0.47514,1.49993 0.47514,1.49993 0.13283,0.41932 0.67645,0.75812 1.21841,0.75812 0,0 4.89131,0 4.89131,0 0.54195,0 0.8599,-0.3388 0.71339,-0.75812 0,0 -0.52404,-1.49993 -0.52404,-1.49993 -0.14385,-0.41169 -0.6893,-0.74194 -1.22352,-0.74194 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -0.84583,0.33025 -0.69816,0.74194 0,0 0.53802,1.49993 0.53802,1.49993 0.15042,0.41932 0.70824,0.75812 1.2502,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 0.84569,-0.3388 0.68161,-0.75812 0,0 -0.58694,-1.49993 -0.58694,-1.49993 -0.16109,-0.41169 -0.72039,-0.74194 -1.2546,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -0.83198,0.33025 -0.66705,0.74194 0,0 0.60091,1.49993 0.60091,1.49993 0.16799,0.41932 0.74002,0.75812 1.28198,0.75812 0,0 4.8913,0 4.8913,0 0.54195,0 0.83148,-0.3388 0.64982,-0.75812 0,0 -0.64982,-1.49993 -0.64982,-1.49993 -0.17835,-0.41169 -0.7515,-0.74195 -1.28571,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0" - style="display:inline;fill:url(#linearGradient3804);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - id="path2711" - d="m 49.781741,408 c -0.54591,0 -1.14928,0.33016 -1.35357,0.74176 0,0 -0.7445,1.49994 -0.7445,1.49994 -0.20817,0.41941 0.0696,0.7583 0.62362,0.7583 0,0 9,0 9,0 0.554,0 1.15007,-0.33889 1.33579,-0.7583 0,0 0.66421,-1.49994 0.66421,-1.49994 0.18226,-0.4116 -0.11102,-0.74176 -0.65694,-0.74176 0,0 -8.86861,0 -8.86861,0 0,0 0,0 0,0 m 12.81022,0 c -0.54591,0 -1.1284,0.33016 -1.30665,0.74176 0,0 -0.64961,1.49994 -0.64961,1.49994 -0.18164,0.41941 0.11759,0.7583 0.67159,0.7583 0,0 7,0 7,0 0.554,0 1.13193,-0.33889 1.2952,-0.7583 0,0 0.58392,-1.49994 0.58392,-1.49994 0.16023,-0.4116 -0.15073,-0.74176 -0.69664,-0.74176 0,0 -6.89781,0 -6.89781,0 0,0 0,0 0,0 m 10.83942,0 c -0.54592,0 -1.11072,0.33016 -1.26695,0.74176 0,0 -0.56932,1.49994 -0.56932,1.49994 -0.15919,0.41941 0.15818,0.7583 0.71218,0.7583 0,0 8,0 8,0 0.554,0 1.11214,-0.33889 1.25092,-0.7583 0,0 0.49633,-1.49994 0.49633,-1.49994 0.1362,-0.4116 -0.19404,-0.74176 -0.73995,-0.74176 0,0 -7.88321,0 -7.88321,0 0,0 0,0 0,0 m 11.82481,0 c -0.54591,0 -1.09144,0.33016 -1.22363,0.74176 0,0 -0.48174,1.49994 -0.48174,1.49994 -0.13469,0.41941 0.20247,0.7583 0.75647,0.7583 0,0 48.999999,0 48.999999,0 0.554,0 1.02473,-0.33889 1.05535,-0.7583 0,0 0.10948,-1.49994 0.10948,-1.49994 0.03,-0.4116 -0.38535,-0.74176 -0.93126,-0.74175 0,0 -48.284669,-10e-6 -48.284669,-10e-6 0,0 0,0 0,0 m 52.226289,0 c -0.54591,0 -1.0063,0.33016 -1.03234,0.74176 0,0 -0.0949,1.49994 -0.0949,1.49994 -0.0265,0.41941 0.39803,0.7583 0.95204,0.7583 0,0 7.99999,0 7.99999,0 0.55401,0 1.00494,-0.33889 1.01107,-0.7583 0,0 0.0219,-1.49994 0.0219,-1.49994 0.006,-0.4116 -0.42865,-0.74176 -0.97457,-0.74176 0,0 -7.8832,0 -7.8832,0 0,0 0,0 0,0 m 11.8248,0 c -0.54591,0 -0.987,0.33016 -0.98901,0.74176 0,0 -0.007,1.49994 -0.007,1.49994 -0.002,0.41941 0.44231,0.7583 0.9963,0.7583 0,0 7,0 7,0 0.55401,0 0.98681,-0.33889 0.97048,-0.7583 0,0 -0.0584,-1.49994 -0.0584,-1.49994 -0.016,-0.4116 -0.46835,-0.74176 -1.01428,-0.74176 0,0 -6.89781,0 -6.89781,0 0,0 0,0 0,0 m 10.83942,0 c -0.54591,0 -0.96934,0.33016 -0.94931,0.74176 0,0 0.073,1.49994 0.073,1.49994 0.0201,0.41941 0.48262,0.7583 1.03662,0.7583 0,0 7,0 7,0 0.55401,0 0.96867,-0.33889 0.92989,-0.7583 0,0 -0.13868,-1.49994 -0.13868,-1.49994 -0.038,-0.4116 -0.50806,-0.74176 -1.05397,-0.74176 0,0 -6.89782,0 -6.89782,0 0,0 0,0 0,0 m 10.83942,0 c -0.54592,0 -0.95167,0.33016 -0.90961,0.74176 0,0 0.15328,1.49994 0.15328,1.49994 0.0429,0.41941 0.52349,0.7583 1.07749,0.7583 0,0 7,0 7,0 0.554,0 0.95053,-0.33889 0.8893,-0.7583 0,0 -0.21897,-1.49994 -0.21897,-1.49994 -0.0601,-0.4116 -0.54777,-0.74175 -1.09367,-0.74176 0,0 -6.89782,0 -6.89782,0 0,0 0,0 0,0 m 16.75182,0 c -0.54591,0 -0.92435,0.33015 -0.84824,0.74176 0,0 0.27736,1.49994 0.27736,1.49994 0.0776,0.41941 0.58622,0.7583 1.14022,0.7583 0,0 5,0 5,0 0.55401,0 0.92579,-0.33889 0.83395,-0.7583 0,0 -0.32845,-1.49994 -0.32845,-1.49994 -0.0901,-0.4116 -0.60191,-0.74176 -1.14783,-0.74176 0,0 -4.92701,0 -4.92701,0 0,0 0,0 0,0 m 8.86861,0 c -0.54591,0 -0.90989,0.33016 -0.81575,0.74176 0,0 0.34305,1.49994 0.34305,1.49994 0.0959,0.41941 0.61943,0.7583 1.17343,0.7583 0,0 5.00001,0 5.00001,0 0.55399,0 0.91094,-0.33889 0.80073,-0.7583 0,0 -0.39414,-1.49994 -0.39414,-1.49994 -0.10816,-0.4116 -0.63441,-0.74175 -1.18031,-0.74176 0,0 -4.92702,0 -4.92702,0 0,0 0,0 0,0 m 8.86862,0 c -0.54592,0 -0.89544,0.33016 -0.78327,0.74176 0,0 0.40874,1.49994 0.40874,1.49994 0.11429,0.41941 0.65264,0.7583 1.20664,0.7583 0,0 5.00001,0 5.00001,0 0.55399,0 0.8961,-0.33889 0.76752,-0.7583 0,0 -0.45984,-1.49994 -0.45984,-1.49994 C 211.48879,408.33016 210.94809,408 210.40218,408 c 0,0 -4.92701,0 -4.92701,0 0,0 0,0 0,0 m 11.82481,0 c -0.54591,10e-6 -0.87615,0.33016 -0.73995,0.74176 0,0 0.49633,1.49994 0.49633,1.49994 0.13878,0.41941 0.69692,0.7583 1.25092,0.7583 0,0 14,0 14,0 0.55401,0 0.86147,-0.33889 0.69004,-0.7583 0,0 -0.61312,-1.49994 -0.61312,-1.49994 C 232.21596,408.33016 231.64152,408 231.0956,408 c 0,0 -13.79562,0 -13.79562,0 0,0 0,0 0,0 m 17.73723,0 c -0.54591,0 -0.84724,0.33016 -0.67498,0.74176 0,0 0.62771,1.49994 0.62771,1.49994 0.17552,0.41941 0.76334,0.7583 1.31734,0.7583 0,0 5,0 5,0 0.55401,0 0.84663,-0.33889 0.65683,-0.7583 0,0 -0.67881,-1.49994 -0.67881,-1.49994 C 241.09903,408.33016 240.51014,408 239.96423,408 c 0,0 -4.92702,0 -4.92702,0 0,0 0,0 0,0" - style="display:inline;fill:url(#linearGradient3806);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccc" - id="path2713" - d="m 241.87787,404 c -0.53421,0 -0.81814,0.30153 -0.63594,0.67742 0,0 2.71396,5.59933 2.71396,5.59933 0.19472,0.40003 0.79739,0.72325 1.35139,0.72325 0,0 5.00001,0 5.00001,0 0.55399,0 0.83178,-0.32322 0.62361,-0.72325 0,0 -2.91394,-5.59933 -2.91394,-5.59933 C 247.82134,404.30153 247.23435,404 246.70013,404 c 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0" - style="display:inline;fill:url(#linearGradient3808);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccc" - id="path2716" - d="m 238.07345,396 c -0.51226,0 -0.79028,0.30198 -0.6228,0.67834 0,0 2.49171,5.5994 2.49171,5.5994 0.17778,0.39951 0.74843,0.72226 1.27885,0.72226 0,0 4.78724,0 4.78724,0 0.53042,0 0.80324,-0.32276 0.61236,-0.72226 0,0 -2.67531,-5.5994 -2.67531,-5.5994 C 243.76567,396.30197 243.20899,396 242.69674,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0" - style="display:inline;fill:url(#linearGradient3810);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - </g> - </g> - <use - style="display:inline;enable-background:new" - x="0" - y="0" - xlink:href="#g5060" - id="use5107" - width="2000" - height="600" /> - <g - style="display:inline;enable-background:new" - id="g2770" - transform="translate(-20.000023,744.14152)"> - <path - transform="matrix(0.46199322,0,0,0.4937608,3.0222567,-10.79137)" - id="path5623" - d="m 115.15625,245.5 c -3.34118,3.24479 -8.07617,5.35516 -13.15625,7.8125 -0.65659,0.31761 -1.28407,0.68883 -1.65625,1.25 C 101.9707,256.99291 108.875,257 115,257 l 66,0 c 6.125,0 13.0293,-0.007 14.65625,-2.4375 -0.37218,-0.56117 -0.99967,-0.93239 -1.65625,-1.25 -5.08008,-2.45734 -9.81507,-4.56771 -13.15625,-7.8125 l -65.6875,0 z" - style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5659);enable-background:new" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.46199322,0,0,0.4937608,3.0222568,-10.79137)" - id="path5663" - d="m 115.15625,245.5 c -3.34118,3.24479 -8.07617,5.35516 -13.15625,7.8125 -0.65659,0.31761 -1.28407,0.68883 -1.65625,1.25 C 101.9707,256.99291 108.875,257 115,257 l 66,0 c 6.125,0 13.0293,-0.007 14.65625,-2.4375 -0.37218,-0.56117 -0.99967,-0.93239 -1.65625,-1.25 -5.08008,-2.45734 -9.81507,-4.56771 -13.15625,-7.8125 l -65.6875,0 z" - style="display:inline;opacity:0.3;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5677);enable-background:new" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient8775);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - d="m 58.7304,92.955372 0.436788,8.979548 c 0.284503,5.84882 -3.494307,7.39493 -7.862191,9.50777 -0.44935,0.21736 -0.873576,0.47116 -0.873576,1.05642 l 0,1.58463 c 0,1.58462 3.494307,1.58462 6.551826,1.58462 l 28.828033,0 c 3.057519,0 6.551826,0 6.551826,-1.58462 l 0,-1.58463 c 0,-0.58526 -0.42423,-0.83906 -0.873576,-1.05642 -4.367884,-2.11284 -8.146694,-3.65895 -7.862192,-9.50777 l 0.436789,-8.979548 -25.333727,0 z" - id="path5383" - sodipodi:nodetypes="czsccccccszcc" - inkscape:connector-curvature="0" /> - <path - d="m 119.48438,204.46094 0.97656,20.08008 c 0.33058,6.79614 -1.73679,11.20248 -5.15039,14.43945 -3.41361,3.23697 -8.11681,5.33108 -13.10938,7.74609 -0.5002,0.24196 -0.95339,0.49935 -1.25781,0.81055 -0.30442,0.3112 -0.48242,0.65432 -0.48242,1.21289 l 0,3.625 c 0,0.73754 0.36065,1.24302 1.13281,1.70117 0.77216,0.45816 1.94648,0.79404 3.35352,1.01563 2.81407,0.44316 6.55267,0.44726 10.05273,0.44726 l 66,0 c 3.50006,0 7.23866,-0.004 10.05273,-0.44726 1.40704,-0.22159 2.58136,-0.55747 3.35352,-1.01563 0.77216,-0.45815 1.13281,-0.96363 1.13281,-1.70117 l 0,-3.625 c 0,-0.55857 -0.178,-0.90169 -0.48242,-1.21289 -0.30442,-0.3112 -0.75762,-0.56859 -1.25781,-0.81055 -4.99257,-2.41501 -9.69577,-4.50912 -13.10938,-7.74609 -3.4136,-3.23697 -5.48097,-7.64331 -5.15039,-14.43945 l 0.97656,-20.08008 -57.03124,0 z" - id="path4469" - style="display:inline;opacity:0.50700001;fill:url(#radialGradient8777);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter4465);enable-background:new" - inkscape:original="M 119 204 L 120 224.5625 C 120.65135 237.953 112 241.47529 102 246.3125 C 100.97124 246.81013 100 247.41009 100 248.75 L 100 252.375 C 99.999997 256.0029 108 256 115 256 L 181 256 C 188 256 196 256.0029 196 252.375 L 196 248.75 C 196 247.41009 195.02875 246.81013 194 246.3125 C 184 241.47529 175.34865 237.953 176 224.5625 L 177 204 L 119 204 z " - inkscape:radius="-0.46100891" - sodipodi:type="inkscape:offset" /> - <path - id="path5598" - d="m 58.730391,92.955372 0.436789,8.954158 24.46015,0 0.436788,-8.954158 -25.333727,0 z" - style="display:inline;opacity:0.35;fill:url(#linearGradient8779);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.43678839,0,0,0.43678839,6.7525729,-44.196187)" - clip-path="url(#clipPath5584)" - style="display:inline;fill:none;stroke:url(#linearGradient8781);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999993;stroke-opacity:1;filter:url(#filter5592);enable-background:new" - d="m 119.00002,314 1,20.55814 c 0.65135,13.3905 -8,16.93023 -18,21.76744 -1.02876,0.49763 -2,1.0787 -2,2.41861 l 0,3.62791 c 0,3.6279 8,3.6279 15,3.6279 l 66,0 c 7,0 15,0 15,-3.6279 l 0,-3.62791 c 0,-1.33991 -0.97125,-1.92098 -2,-2.41861 -10,-4.83721 -18.65135,-8.37694 -18,-21.76744 l 1,-20.55814 -58,0 z" - id="path5580" - sodipodi:nodetypes="czsccccccszcc" - inkscape:connector-curvature="0" /> - <rect - ry="0.94092482" - rx="0.92817533" - y="29.169882" - x="22.476974" - height="65.532639" - width="97.840584" - id="rect4022" - style="display:inline;fill:url(#radialGradient8783);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - <rect - y="34.862511" - x="25.534473" - height="55.035339" - width="91.725586" - id="rect5233" - style="display:inline;opacity:0.3;fill:url(#linearGradient8785);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - <rect - y="35.299297" - x="25.971262" - height="54.161762" - width="90.852005" - id="rect3248" - style="display:inline;fill:url(#radialGradient8787);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - <rect - y="35.299297" - x="25.971262" - height="54.161762" - width="90.852005" - id="rect5685" - style="display:inline;opacity:0.19178084;fill:url(#linearGradient8789);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - <path - style="display:inline;opacity:0.24497992;fill:url(#radialGradient8791);fill-opacity:1;stroke:none;enable-background:new" - d="m 94.348502,36.172878 22.037958,0 0,53.288184 -48.483512,0 26.445554,-53.288184 z" - id="path5379" - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" /> - <rect - transform="matrix(0.43678839,0,0,0.43678839,6.7525729,-122.8181)" - clip-path="url(#clipPath5221)" - y="362" - x="44" - height="125" - width="208.75005" - id="rect5217" - style="display:inline;opacity:0.6;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5252);enable-background:new" /> - <path - sodipodi:nodetypes="ccccccccc" - id="rect5262" - d="m 38.125046,-270 219.749954,0 c 1.17725,0 2.125,0.94775 2.125,2.125 l 0,143.75 c 0,1.17725 -0.94775,2.125 -2.125,2.125 l -219.749954,0 c -1.17725,0 -2.125,-0.94775 -2.125,-2.125 l 0,-143.75 c 0,-1.17725 0.94775,-2.125 2.125,-2.125 z" - clip-path="url(#clipPath5266)" - style="display:inline;opacity:0.7;fill:none;stroke:url(#linearGradient8793);stroke-width:1.98621953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5681);enable-background:new" - transform="matrix(0.43678839,0,0,0.44287032,6.7525729,148.73878)" - inkscape:connector-curvature="0" /> - <path - id="rect5338" - d="m 22.953898,30.358132 c -0.06696,0.07181 -0.135052,0.141497 -0.176651,0.232044 0.109453,0.20427 0.320057,0.341241 0.570721,0.341241 l 96.098582,0 c 0.25066,0 0.46127,-0.136971 0.57072,-0.341241 -0.0416,-0.09055 -0.10969,-0.16023 -0.17665,-0.232044 -0.10828,0.08433 -0.24253,0.136496 -0.39407,0.136496 l -96.098582,0 c -0.151538,0 -0.285791,-0.05216 -0.39407,-0.136496 z" - style="display:inline;fill:url(#radialGradient8795);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <rect - transform="scale(1,-1)" - y="-90.334648" - x="25.534473" - height="0.43678838" - width="91.725586" - id="rect5359" - style="display:inline;fill:url(#radialGradient8797);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - <rect - transform="scale(-1,1)" - y="34.862511" - x="-117.69682" - height="55.035339" - width="0.43676841" - id="rect5369" - style="display:inline;fill:url(#radialGradient8799);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - <path - id="path5491" - d="m 50.472361,112.18771 c -0.03094,0.0931 -0.04095,0.19649 -0.04095,0.31394 l 0,1.58336 c -10e-7,1.58462 3.494307,1.58335 6.551826,1.58335 l 28.828034,0 c 3.057518,0 6.551826,10e-4 6.551826,-1.58335 l 0,-1.58336 c 0,-0.11745 -0.01,-0.22081 -0.04093,-0.31394 -0.411468,1.29361 -3.653338,1.29671 -6.510899,1.29671 l -28.828034,0 c -2.857557,0 -6.099431,-0.003 -6.510877,-1.29671 z" - style="display:inline;fill:url(#linearGradient8801);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - id="path5525" - d="m 50.472361,112.18771 c -0.03092,0.0581 -0.04093,0.12251 -0.04093,0.19575 l 0,0.98727 c 0,0.98806 3.494307,0.98727 6.551826,0.98727 l 28.828034,0 c 3.057518,0 6.551825,8.7e-4 6.551825,-0.98727 l 0,-0.98727 c 0,-0.0732 -0.01,-0.13768 -0.04093,-0.19575 -0.411446,0.8066 -3.653315,0.80853 -6.510877,0.80853 l -28.828034,0 c -2.857557,0 -6.099431,-0.002 -6.510877,-0.80853 z" - style="display:inline;fill:url(#linearGradient8803);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - id="path5531" - d="m 50.472361,112.18771 c 0.411446,1.29361 3.65332,1.29671 6.510877,1.29671 l 28.828034,0 c 2.857561,0 6.099431,-0.003 6.510877,-1.29671 -0.411446,0.8066 -3.653316,0.80532 -6.510877,0.80532 l -28.828034,0 c -2.857557,0 -6.099431,10e-4 -6.510877,-0.80532 z m 0,0 c -0.02416,0.0453 -0.02346,0.0959 -0.0273,0.15014 0.0064,-0.0522 0.01184,-0.10357 0.0273,-0.15014 z m -0.0273,0.15014 c -8.74e-4,0.0153 -0.01363,0.0249 -0.01363,0.0409 l 0,0.12285 c 0,-0.0587 0.0073,-0.11164 0.01363,-0.1638 z m 41.877087,-0.15014 c 0.01546,0.0466 0.02092,0.098 0.0273,0.15014 -0.0039,-0.0542 -0.0031,-0.10485 -0.0273,-0.15014 z m 0.0273,0.15014 c 0.0064,0.0522 0.01363,0.10507 0.01363,0.1638 l 0,-0.12285 c 0,-0.0161 -0.01258,-0.0257 -0.01363,-0.0409 z" - style="display:inline;opacity:0.75;fill:url(#radialGradient8805);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - id="path5575" - d="m 50.431412,113.85296 0,0.23205 c -1e-6,1.58462 3.494307,1.58335 6.551826,1.58335 l 28.828034,0 c 3.057518,0 6.551826,10e-4 6.551826,-1.58335 l 0,-0.23205 c 0,1.38577 -3.494308,1.37861 -6.551826,1.37861 l -28.828034,0 c -3.057519,0 -6.551827,0.007 -6.551826,-1.37861 z" - style="display:inline;opacity:0.19178084;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <circle - id="path5553" - style="display:inline;fill:url(#radialGradient8807);fill-opacity:1;stroke:none;enable-background:new" - cx="52.12397" - cy="113.04763" - r="1.1465695" /> - <rect - transform="matrix(0.43678839,0,0,0.44002814,6.7525729,3.4147904)" - ry="1" - rx="0.5" - y="63" - x="38" - height="143" - width="1" - id="rect5695" - style="display:inline;fill:url(#radialGradient8809);fill-opacity:1;stroke:none;filter:url(#filter5713);enable-background:new" /> - <rect - transform="matrix(0.43678839,0,0,-0.44002814,7.1893613,121.78236)" - ry="1" - rx="0.5" - y="63" - x="257" - height="143" - width="1" - id="rect5717" - style="display:inline;opacity:0.38356162;fill:url(#radialGradient8811);fill-opacity:1;stroke:none;filter:url(#filter5713);enable-background:new" /> - <circle - id="path4066" - style="display:inline;fill:url(#radialGradient8813);fill-opacity:1;stroke:none;enable-background:new" - cx="90.51062" - cy="112.97042" - r="0.68328547" /> - <rect - transform="scale(1,-1)" - y="-93.828949" - x="23.449694" - height="0.43678838" - width="95.895142" - id="rect4473" - style="display:inline;opacity:0.36529679;fill:url(#radialGradient8815);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - <g - id="g4477" - transform="matrix(0.43678839,0,0,0.43678839,6.7525729,3.8505364)"> - <path - style="display:inline;opacity:0.18264842;fill:url(#linearGradient8817);fill-opacity:1;stroke:none;enable-background:new" - d="m 240,200 c -2.19965,0 -4,1.80035 -4,4 l 0,4 12,0 0,-4 c 0,-2.19965 -1.80035,-4 -4,-4 l -4,0 z" - id="path4088" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient8819);fill-opacity:1;stroke:none;enable-background:new" - d="m 240,201 c -1.66165,0 -3,1.33835 -3,3 l 0,4 10,0 0,-4 c 0,-1.66165 -1.33835,-3 -3,-3 l -4,0 z" - id="rect4080" - inkscape:connector-curvature="0" /> - <path - style="display:inline;opacity:0.55707762;fill:url(#radialGradient8821);fill-opacity:1;stroke:none;enable-background:new" - d="m 240,201 c -1.66165,0 -3,1.33835 -3,3 l 0,4 10,0 0,-4 c 0,-1.66165 -1.33835,-3 -3,-3 l -4,0 z" - id="path4247" - sodipodi:nodetypes="ccccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient8823);fill-opacity:1;stroke:none;enable-background:new" - d="m 240,203 c -0.58774,0 -1,0.41226 -1,1 l 0,3 6,0 0,-3 c 0,-0.58774 -0.41226,-1 -1,-1 l -4,0 z" - id="path4148" - sodipodi:nodetypes="ccccccc" - transform="matrix(1,0,0,0.75,0,51.75)" - inkscape:connector-curvature="0" /> - <path - style="display:inline;opacity:0.65;fill:none;stroke:url(#linearGradient8825);stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4461);enable-background:new" - d="m 240,211.32322 c -1.66165,0 -3,1.33835 -3,3 l 0,6.67678 10,0 0,-6.67678 c 0,-1.66165 -1.33835,-3 -3,-3 l -4,0 z" - id="path4361" - clip-path="url(#clipPath4367)" - sodipodi:nodetypes="ccccccc" - transform="translate(0,-10)" - inkscape:connector-curvature="0" /> - </g> - <path - sodipodi:nodetypes="ccccc" - id="path10688" - d="m 67.70441,36.172878 15.049343,0 -13.977229,38.874164 -7.425402,-0.43679 6.353288,-38.437374 z" - style="display:inline;opacity:0.24497992;fill:url(#radialGradient8827);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - </g> - </g> -</svg> diff --git a/kpov_judge/web/kpov_judge/icons/drive-harddisk.svg b/kpov_judge/web/kpov_judge/icons/drive-harddisk.svg deleted file mode 100644 index 5f36f85..0000000 --- a/kpov_judge/web/kpov_judge/icons/drive-harddisk.svg +++ /dev/null @@ -1,491 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - sodipodi:docname="drive-harddisk.svg" - inkscape:version="0.91 r13725" - sodipodi:version="0.32" - id="svg2913" - height="60" - width="48" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - version="1.1"> - <defs - id="defs3"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 24 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="48 : 24 : 1" - inkscape:persp3d-origin="24 : 16 : 1" - id="perspective79" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5060" - id="radialGradient6719" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)" - cx="605.71429" - cy="486.64789" - fx="605.71429" - fy="486.64789" - r="117.14286" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5060"> - <stop - style="stop-color:black;stop-opacity:1;" - offset="0" - id="stop5062" /> - <stop - style="stop-color:black;stop-opacity:0;" - offset="1" - id="stop5064" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5060" - id="radialGradient6717" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)" - cx="605.71429" - cy="486.64789" - fx="605.71429" - fy="486.64789" - r="117.14286" /> - <linearGradient - id="linearGradient5048"> - <stop - style="stop-color:black;stop-opacity:0;" - offset="0" - id="stop5050" /> - <stop - id="stop5056" - offset="0.5" - style="stop-color:black;stop-opacity:1;" /> - <stop - style="stop-color:black;stop-opacity:0;" - offset="1" - id="stop5052" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5048" - id="linearGradient6715" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)" - x1="302.85715" - y1="366.64789" - x2="302.85715" - y2="609.50507" /> - <linearGradient - id="linearGradient2555"> - <stop - id="stop2557" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#e6e6e6;stop-opacity:1.0000000;" - offset="0.50000000" - id="stop2561" /> - <stop - id="stop2563" - offset="0.75000000" - style="stop-color:#ffffff;stop-opacity:1.0000000;" /> - <stop - style="stop-color:#e1e1e1;stop-opacity:1.0000000;" - offset="0.84166664" - id="stop2565" /> - <stop - id="stop2559" - offset="1.0000000" - style="stop-color:#ffffff;stop-opacity:1.0000000;" /> - </linearGradient> - <linearGradient - id="linearGradient4274"> - <stop - style="stop-color:#ffffff;stop-opacity:0.25490198;" - offset="0.0000000" - id="stop4276" /> - <stop - style="stop-color:#ffffff;stop-opacity:1.0000000;" - offset="1.0000000" - id="stop4278" /> - </linearGradient> - <linearGradient - id="linearGradient4264" - inkscape:collect="always"> - <stop - id="stop4266" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop4268" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient4254" - inkscape:collect="always"> - <stop - id="stop4256" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4258" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient4244"> - <stop - id="stop4246" - offset="0.0000000" - style="stop-color:#e4e4e4;stop-opacity:1.0000000;" /> - <stop - id="stop4248" - offset="1.0000000" - style="stop-color:#d3d3d3;stop-opacity:1.0000000;" /> - </linearGradient> - <linearGradient - id="linearGradient4236" - inkscape:collect="always"> - <stop - id="stop4238" - offset="0" - style="stop-color:#eeeeee;stop-opacity:1;" /> - <stop - id="stop4240" - offset="1" - style="stop-color:#eeeeee;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient4228"> - <stop - id="stop4230" - offset="0.0000000" - style="stop-color:#bbbbbb;stop-opacity:1.0000000;" /> - <stop - id="stop4232" - offset="1.0000000" - style="stop-color:#9f9f9f;stop-opacity:1.0000000;" /> - </linearGradient> - <linearGradient - id="linearGradient4184"> - <stop - id="stop4186" - offset="0.0000000" - style="stop-color:#838383;stop-opacity:1.0000000;" /> - <stop - id="stop4188" - offset="1.0000000" - style="stop-color:#bbbbbb;stop-opacity:0.0000000;" /> - </linearGradient> - <linearGradient - gradientTransform="translate(0.795493,-19.887374)" - y2="35.28125" - x2="24.6875" - y1="35.28125" - x1="7.0625" - gradientUnits="userSpaceOnUse" - id="linearGradient4209" - xlink:href="#linearGradient4184" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="40.943935" - x2="36.183067" - y1="28.481176" - x1="7.6046205" - id="linearGradient4234" - xlink:href="#linearGradient4228" - inkscape:collect="always" - gradientTransform="translate(0,-18.561553)" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="33.758667" - x2="12.221823" - y1="37.205811" - x1="12.277412" - id="linearGradient4242" - xlink:href="#linearGradient4236" - inkscape:collect="always" - gradientTransform="translate(0,-18.561553)" /> - <radialGradient - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.286242,0.781698,-0.710782,1.169552,-2.354348,-23.438415)" - r="20.935818" - fy="2.958519" - fx="15.571491" - cy="2.958519" - cx="15.571491" - id="radialGradient4250" - xlink:href="#linearGradient4244" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="47.620636" - x2="44.0961" - y1="4.433136" - x1="12.378357" - id="linearGradient4260" - xlink:href="#linearGradient4254" - inkscape:collect="always" - gradientTransform="translate(0,-18.561553)" /> - <radialGradient - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.651032,0,9.455693)" - r="23.555494" - fy="27.096155" - fx="23.201941" - cy="27.096155" - cx="23.201941" - id="radialGradient4270" - xlink:href="#linearGradient4264" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="26.357183" - x2="23.688078" - y1="11.318835" - x1="23.688078" - id="linearGradient4272" - xlink:href="#linearGradient4274" - inkscape:collect="always" - gradientTransform="translate(0,-18.561553)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2555" - id="linearGradient2553" - x1="33.431175" - y1="31.964777" - x2="21.747974" - y2="11.780679" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.037815,0,0,1.060747,-1.632878,-20.656179)" /> - </defs> - <sodipodi:namedview - inkscape:window-y="31" - inkscape:window-x="435" - inkscape:window-height="818" - inkscape:window-width="999" - inkscape:document-units="px" - inkscape:grid-bbox="true" - showgrid="false" - inkscape:current-layer="layer2" - inkscape:cy="5.2373352" - inkscape:cx="-9.3185683" - inkscape:zoom="5.6568543" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - inkscape:window-maximized="0" /> - <metadata - id="metadata4"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title>Drive - Hard Disk</dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Jakub Steiner</dc:title> - </cc:Agent> - </dc:creator> - <dc:subject> - <rdf:Bag> - <rdf:li>hdd</rdf:li> - <rdf:li>hard drive</rdf:li> - <rdf:li>fixed</rdf:li> - <rdf:li>media</rdf:li> - <rdf:li>solid</rdf:li> - </rdf:Bag> - </dc:subject> - <cc:license - rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" /> - <dc:identifier /> - <dc:source>http://jimmac.musichall.cz</dc:source> - </cc:Work> - <cc:License - rdf:about="http://creativecommons.org/publicdomain/zero/1.0/"> - <cc:permits - rdf:resource="http://creativecommons.org/ns#Reproduction" /> - <cc:permits - rdf:resource="http://creativecommons.org/ns#Distribution" /> - <cc:permits - rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> - </cc:License> - </rdf:RDF> - </metadata> - <g - inkscape:label="pix" - id="layer2" - inkscape:groupmode="layer" - transform="translate(0,12)"> - <g - transform="matrix(0.0245274,0,0,0.02086758,45.69054,17.592047)" - id="g6707"> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40206185;fill:url(#linearGradient6715);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="rect6709" - width="1339.6335" - height="478.35718" - x="-1559.2523" - y="-150.69685" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40206185;fill:url(#radialGradient6717);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - d="m -219.61876,-150.68038 c 0,0 0,478.33079 0,478.33079 142.874166,0.90045 345.40022,-107.16966 345.40014,-239.196175 0,-132.026537 -159.436816,-239.134595 -345.40014,-239.134615 z" - id="path6711" - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccc" - id="path6713" - d="m -1559.2523,-150.68038 c 0,0 0,478.33079 0,478.33079 -142.8742,0.90045 -345.4002,-107.16966 -345.4002,-239.196175 0,-132.026537 159.4368,-239.134595 345.4002,-239.134615 z" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40206185;fill:url(#radialGradient6719);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - inkscape:connector-curvature="0" /> - </g> - <path - sodipodi:nodetypes="cccsccccccccc" - id="path4196" - d="m 11.28569,-10.598925 c -0.625,0 -1.031249,0.29018 -1.281248,0.8437528 -10e-7,0 -6.4687505,17.1035572 -6.4687505,17.1035572 0,0 -0.25,0.671559 -0.25,1.78125 0,0 0,9.649968 0,9.649968 0,1.082613 0.6577855,1.625002 1.65625,1.625 l 38.5624985,0 c 0.984853,0 1.59375,-0.71818 1.59375,-1.84375 l 0,-9.649968 c 0,0 0.105963,-0.770423 -0.09375,-1.3125 L 38.28569,-9.5989216 c -0.184525,-0.5119064 -0.636905,-0.9880984 -1.125,-1.0000034 l -25.875,0 z" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#535353;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccccccccc" - id="path4170" - d="m 3.2735915,8.435259 0.7646021,-0.692215 37.6096894,0.0625 3.462407,0.317298 0,10.438532 c 0,1.125569 -0.607018,1.843331 -1.591871,1.843331 l -38.5829876,0 c -0.9984647,0 -1.6618399,-0.542051 -1.6618399,-1.624664 l 0,-10.344782 z" - style="fill:url(#linearGradient4234);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.02044296px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="csccccccs" - id="path3093" - d="m 3.5490842,7.352851 c -0.7142857,1.464286 -6.156e-4,2.392857 1.0357143,2.392857 0,0 38.9999985,0 38.9999985,0 1.119047,-0.02381 1.845238,-1.011905 1.428571,-2.142858 L 38.299082,-9.6078486 C 38.114558,-10.119755 37.64432,-10.595947 37.156225,-10.607852 l -25.857142,0 c -0.625,0 -1.035714,0.303573 -1.285713,0.8571458 0,0 -6.4642858,17.1035572 -6.4642858,17.1035572 z" - style="fill:url(#radialGradient4250);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <rect - y="12.61263" - x="7.857996" - height="5.5625" - width="17.625" - id="rect4174" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4209);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.40899992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" /> - <path - sodipodi:nodetypes="cscc" - id="path4194" - d="m 7.8579947,18.175127 c 0,0 0,-4.011485 0,-4.011485 1.8355274,3.179226 8.2964903,4.011485 12.9374973,4.011485 0,0 -12.9374973,0 -12.9374973,0 z" - style="opacity:0.81142853;fill:url(#linearGradient4242);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccc" - id="path4201" - d="m 44.796162,7.067135 c 0.06352,1.249974 -0.414003,2.31584 -1.322116,2.34375 0,0 -38.1187164,-1e-6 -38.1187163,0 -1.2892319,0 -1.867736,-0.324947 -2.0840507,-0.868056 0.091761,0.944332 0.8258174,1.649306 2.0840507,1.649306 -1e-7,-1e-6 38.1187163,0 38.1187163,0 1.076007,-0.03307 1.752805,-1.424024 1.352164,-2.994791 L 44.79616,7.067135 Z" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - id="path4211" - d="m 10.96875,-8.405303 c -0.04608,0.200321 -0.1875,0.386797 -0.1875,0.59375 0,0.948605 0.59098,1.789474 1.34375,2.59375 0.240268,-0.154075 0.365117,-0.354408 0.625,-0.5 -0.940309,-0.816004 -1.553396,-1.716582 -1.78125,-2.6875 z m 26.65625,0 c -0.228727,0.969616 -0.842012,1.872426 -1.78125,2.6875 0.274144,0.153582 0.403988,0.36824 0.65625,0.53125 0.757262,-0.806656 1.3125,-1.673044 1.3125,-2.625 0,-0.206953 -0.141594,-0.393429 -0.1875,-0.59375 z m 2.1875,8.43750001 C 39.198709,4.072308 32.513887,7.282197 24.28125,7.282197 c -8.212254,1e-6 -14.8601499,-3.192786 -15.5,-7.21874999 -0.032357,0.197132 -0.125,0.391882 -0.125,0.59375 3e-7,4.31794699 6.989104,7.84375099 15.625,7.84374999 8.635896,0 15.656249,-3.525802 15.65625,-7.84374999 0,-0.212924 -0.08905,-0.417356 -0.125,-0.625 z" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.69142857;fill:url(#linearGradient4272);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - inkscape:connector-curvature="0" /> - <ellipse - id="path4224" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:0.45762712;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="7.2920389" - cy="7.2087765" - rx="1.3700194" - ry="1.016466" /> - <ellipse - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:0.45762712;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="path4226" - cx="41.1707" - cy="7.1203885" - rx="1.3700194" - ry="1.016466" /> - <path - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4260);stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 11.642515,-10.14583 c -0.601692,0 -0.992791,0.2793583 -1.233466,0.812287 -10e-7,0 -6.4150149,16.590722 -6.4150149,16.590722 0,0 -0.2406768,0.646515 -0.2406768,1.714823 0,0 0,9.290096 0,9.290096 0,1.35474 0.4440561,1.626899 1.5944841,1.626899 l 37.6869046,0 c 1.323126,0 1.534316,-0.316397 1.534316,-1.837492 l 0,-9.290096 c 0,0 0.10201,-0.741691 -0.09025,-1.263553 L 37.885616,-9.3081194 C 37.707973,-9.8009359 37.334964,-10.134369 36.865071,-10.14583 l -25.222556,0 z" - id="path4252" - sodipodi:nodetypes="cccsccccccccc" - inkscape:connector-curvature="0" /> - <path - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885" - d="m 40.5,12.867613 0,5.020935" - id="path4282" - inkscape:connector-curvature="0" /> - <path - id="path4284" - d="m 38.5,12.92739 0,5.020935" - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885" - inkscape:connector-curvature="0" /> - <path - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885" - d="m 36.5,12.92739 0,5.020935" - id="path4286" - inkscape:connector-curvature="0" /> - <path - id="path4288" - d="m 34.5,12.92739 0,5.020935" - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885" - inkscape:connector-curvature="0" /> - <path - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885" - d="m 32.5,12.92739 0,5.020935" - id="path4290" - inkscape:connector-curvature="0" /> - <path - id="path4292" - d="m 30.5,12.92739 0,5.020935" - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885" - inkscape:connector-curvature="0" /> - <path - id="path4294" - d="m 39.5,12.917512 0,5.020935" - style="opacity:0.09714284;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.09714284;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" - d="m 37.5,12.977289 0,5.020935" - id="path4296" - inkscape:connector-curvature="0" /> - <path - id="path4298" - d="m 35.5,12.977289 0,5.020935" - style="opacity:0.09714284;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.09714284;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" - d="m 33.5,12.977289 0,5.020935" - id="path4300" - inkscape:connector-curvature="0" /> - <path - id="path4302" - d="m 31.5,12.977289 0,5.020935" - style="opacity:0.09714284;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - id="path4572" - d="m 7.875,12.625947 0,5.53125 12.5625,0 -12.21875,-0.34375 -0.34375,-5.1875 z" - style="opacity:0.43999999;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <ellipse - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.20571427;fill:url(#linearGradient2553);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.93365198;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.42372879;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="path2545" - cx="24.312496" - cy="0.094684198" - rx="15.437498" - ry="7.0937457" /> - </g> -</svg> diff --git a/kpov_judge/web/kpov_judge/icons/internet.svg b/kpov_judge/web/kpov_judge/icons/internet.svg deleted file mode 100644 index 5efbd24..0000000 --- a/kpov_judge/web/kpov_judge/icons/internet.svg +++ /dev/null @@ -1,3398 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="72.355682" - height="80" - viewBox="0 0 72.355684 79.999999" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="internet.svg"> - <defs - id="defs4"> - <linearGradient - id="linearGradient5513"> - <stop - id="stop5515" - offset="0" - style="stop-color:#d3d7cf;stop-opacity:1" /> - <stop - style="stop-color:#979894;stop-opacity:1" - offset="0.11058617" - id="stop5517" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1" - offset="0.21474838" - id="stop5519" /> - <stop - id="stop5521" - offset="0.35913071" - style="stop-color:#ffffff;stop-opacity:1" /> - <stop - id="stop5523" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5567" - inkscape:collect="always"> - <stop - id="stop5569" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5571" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient5615"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop5617" /> - <stop - id="stop5619" - offset="0.59850603" - style="stop-color:#000000;stop-opacity:0.31506849" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop5621" /> - </linearGradient> - <linearGradient - id="linearGradient5316" - inkscape:collect="always"> - <stop - id="stop5318" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5320" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <clipPath - id="clipPath5584" - clipPathUnits="userSpaceOnUse"> - <path - style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - d="m 119.00002,314 1,20.55814 c 0.65135,13.3905 -8,16.93023 -18,21.76744 -1.02876,0.49763 -2,1.0787 -2,2.41861 l 0,3.62791 c 0,3.6279 8,3.6279 15,3.6279 l 66,0 c 7,0 15,0 15,-3.6279 l 0,-3.62791 c 0,-1.33991 -0.97125,-1.92098 -2,-2.41861 -10,-4.83721 -18.65135,-8.37694 -18,-21.76744 l 1,-20.55814 -58,0 z" - id="path5586" - sodipodi:nodetypes="czsccccccszcc" - inkscape:connector-curvature="0" /> - </clipPath> - <linearGradient - id="linearGradient10629-2"> - <stop - id="stop10631-8" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop10633-2" - offset="1" - style="stop-color:#959595;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient12756-7"> - <stop - id="stop12758-4" - offset="0" - style="stop-color:#5789ca;stop-opacity:1" /> - <stop - id="stop12760-6" - offset="1" - style="stop-color:#023c88;stop-opacity:1" /> - </linearGradient> - <clipPath - id="clipPath5221" - clipPathUnits="userSpaceOnUse"> - <rect - y="362" - x="44" - height="124" - width="208.00005" - id="rect5223" - style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - </clipPath> - <clipPath - id="clipPath5266" - clipPathUnits="userSpaceOnUse"> - <rect - ry="2.125" - rx="2.125" - y="-270" - x="36.000046" - height="148" - width="223.99995" - id="rect5268" - style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - </clipPath> - <linearGradient - id="linearGradient5496"> - <stop - id="stop5498" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0.0312636" - id="stop5505" /> - <stop - id="stop5507" - offset="0.19532859" - style="stop-color:#d3d7cf;stop-opacity:1" /> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="0.82031411" - id="stop5509" /> - <stop - id="stop5511" - offset="0.95833272" - style="stop-color:#ffffff;stop-opacity:1" /> - <stop - id="stop5500" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient4070"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4072" /> - <stop - id="stop4074" - offset="0.52789462" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4076" /> - </linearGradient> - <linearGradient - id="linearGradient5555"> - <stop - id="stop5557" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.59523809" - id="stop5563" /> - <stop - id="stop5559" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient4134"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop4136" /> - <stop - id="stop3378" - offset="0.56766391" - style="stop-color:#2e3436;stop-opacity:1" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop4138" /> - </linearGradient> - <clipPath - id="clipPath4367" - clipPathUnits="userSpaceOnUse"> - <path - id="path4369" - d="m 240,211 c -1.66165,0 -3,1.33835 -3,3 l 0,4 10,0 0,-4 c 0,-1.66165 -1.33835,-3 -3,-3 l -4,0 z" - style="display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - </clipPath> - <clipPath - id="clipPath4287" - clipPathUnits="userSpaceOnUse"> - <path - id="path4289" - d="m 164.5,171.375 c -1.80944,16.18787 3.57797,26.96266 12.53125,33.84375 8.95328,6.88109 21.33929,9.97794 33.65625,11.5 12.31696,1.52206 24.61016,1.44261 33.34375,1.8125 4.36679,0.18494 7.85588,0.49346 9.875,1.09375 1.00956,0.30014 1.60095,0.69442 1.78125,0.9375 0.1803,0.24308 0.21449,0.38792 -0.0937,1 -0.5676,1.12711 -1.88943,1.92802 -4.03125,2.4375 -2.14182,0.50948 -4.98306,0.67251 -8.125,0.65625 -6.28389,-0.0325 -13.813,-0.76309 -20.09375,-0.59375 -3.14038,0.0847 -5.97092,0.38298 -8.25,1.1875 -2.27908,0.80452 -4.09475,2.22183 -4.6875,4.40625 -0.59275,2.18442 0.001,4.85419 1.8125,8.25 1.81134,3.39581 4.88283,7.55678 9.53125,12.75 l 1.5,-1.3125 c -4.58534,-5.12274 -7.56231,-9.211 -9.25,-12.375 -1.68769,-3.164 -2.04477,-5.34946 -1.65625,-6.78125 0.38852,-1.43179 1.47822,-2.3819 3.40625,-3.0625 1.92803,-0.6806 4.61811,-0.98059 7.65625,-1.0625 6.07628,-0.16382 13.59915,0.56045 20.03125,0.59375 3.21605,0.0166 6.13826,-0.14209 8.5625,-0.71875 2.42424,-0.57666 4.45416,-1.60938 5.40625,-3.5 0.51688,-1.0264 0.50003,-2.21986 -0.125,-3.0625 -0.62503,-0.84264 -1.60421,-1.29702 -2.8125,-1.65625 -2.41658,-0.71845 -5.96364,-1.00067 -10.375,-1.1875 -8.82271,-0.37366 -21.00798,-0.31129 -33.15625,-1.8125 -12.14827,-1.50121 -24.21446,-4.58175 -32.6875,-11.09375 -8.47304,-6.512 -13.50101,-16.33486 -11.75,-32 l -2,-0.25 z" - style="display:inline;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - </clipPath> - <clipPath - id="clipPath3519" - clipPathUnits="userSpaceOnUse"> - <path - style="display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new" - d="m 49.053018,377.91849 c -0.710706,0.0727 -1.339556,0.49196 -1.68004,1.12002 l -14.280335,26.38285 c -0.171895,0.32432 -0.254644,0.67287 -0.248894,1.02669 1.72e-4,0.0106 -3.28e-4,0.0205 0,0.0311 l 0,2.98673 0,0.31112 0.06222,0 c 0.04534,0.25962 0.109053,0.51286 0.248895,0.74669 0.388063,0.64889 1.079535,1.05365 1.835599,1.0578 l 220.862957,0 c 0.76537,0.002 1.4767,-0.39926 1.86671,-1.0578 0.13743,-0.23204 0.20572,-0.48851 0.2489,-0.74669 0.0487,-0.29136 0.0622,-0.87113 0.0622,-0.87113 l 0,-2.08449 c 0,-0.49198 -0.0355,-0.98746 -0.28001,-1.43115 L 242.9109,379.0074 c -0.38858,-0.68003 -1.11464,-1.09662 -1.89783,-1.08891 l -191.742269,0 c -0.07255,-0.004 -0.145236,-0.004 -0.217783,0 z" - id="path3521" - sodipodi:nodetypes="cccsccccsccsscsccccc" - inkscape:connector-curvature="0" /> - </clipPath> - <clipPath - id="clipPath3599" - clipPathUnits="userSpaceOnUse"> - <path - id="path3601" - d="m 208.28125,157.9375 c -0.008,0.10327 -0.005,0.2131 0.0312,0.3125 l 1.09375,3.0625 c 0.10951,0.28392 0.3832,0.47053 0.6875,0.46875 l 2,0 c 0.23532,-0.002 0.45756,-0.12059 0.59375,-0.3125 0.1362,-0.19191 0.16975,-0.43353 0.0937,-0.65625 l -1.03125,-2.875 -3.46875,0 z m 7.96875,0 c -0.0101,0.11643 0.0164,0.23327 0.0625,0.34375 l 1.28125,3.0625 c 0.11937,0.27165 0.39086,0.44442 0.6875,0.4375 l 2,0 c 0.24322,0.002 0.45595,-0.11207 0.59375,-0.3125 0.1378,-0.20044 0.18268,-0.46111 0.0937,-0.6875 l -1.1875,-2.84375 -3.53125,0 z m 8.03125,0 c -0.0114,0.12934 0.005,0.25506 0.0625,0.375 l 1.53125,3.0625 c 0.12384,0.24906 0.3781,0.40646 0.65625,0.40625 l 2,0 c 0.24601,-0.004 0.46165,-0.13617 0.59375,-0.34375 0.13209,-0.20758 0.16299,-0.46291 0.0625,-0.6875 l -1.40625,-2.8125 -3.5,0 z" - style="display:inline;fill:#888a85;fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - </clipPath> - <clipPath - id="clipPath3655" - clipPathUnits="userSpaceOnUse"> - <path - id="path3657" - d="m 55.5625,287.96875 c -0.954459,-2e-5 -1.753046,0.47221 -2.125,1.40625 0,0 -0.59375,1.5 -0.59375,1.5 -0.155151,0.38964 -0.144272,0.90146 0.0625,1.3125 -0.5424,0.20441 -0.994862,0.57872 -1.25,1.1875 0,0 -0.625,1.46875 -0.625,1.46875 -0.01064,0.0102 -0.02106,0.0206 -0.03125,0.0312 -0.147112,0.351 -0.147348,0.80716 0,1.1875 -0.654855,0.16843 -1.194974,0.58271 -1.5,1.28125 0,0 -0.65625,1.5 -0.65625,1.5 -0.179615,0.41135 -0.163645,0.96978 0.09375,1.40625 -0.456605,0.2136 -0.850785,0.56008 -1.09375,1.09375 0,0 -0.6875,1.5 -0.6875,1.5 -0.166596,0.3659 -0.171331,0.84393 0,1.25 -0.62588,0.17262 -1.15115,0.55035 -1.46875,1.21875 0,0 -0.71875,1.5 -0.71875,1.5 -0.176959,0.37241 -0.209116,0.89133 -0.03125,1.3125 -0.590006,0.18007 -1.095835,0.56208 -1.40625,1.1875 0,0 -0.75,1.5 -0.75,1.5 -0.230425,0.46425 -0.217387,1.17845 0.15625,1.625 0.373637,0.44655 0.898009,0.5625 1.375,0.5625 0,0 9,0 9,0 0.953978,0 1.816699,-0.36523 2.25,-1.34375 0,0 0.108824,-0.25767 0.1875,-0.4375 -0.05805,0.4359 -0.07391,0.93458 0.21875,1.25 0.380339,0.40991 0.866761,0.53125 1.34375,0.53125 0,0 7,0 7,0 0.953978,0 1.836332,-0.39264 2.21875,-1.375 0,0 0.114925,-0.25416 0.1875,-0.4375 -0.06545,0.45383 -0.06104,0.9589 0.25,1.28125 0.379673,0.39347 0.866761,0.53125 1.34375,0.53125 0,0 8,0 8,0 0.953978,0 1.877328,-0.40568 2.21875,-1.4375 0,0 0.07819,-0.23457 0.125,-0.375 -0.05472,0.45853 -0.005,0.99507 0.3125,1.3125 0.378095,0.37806 0.866761,0.5 1.34375,0.5 0,0 49,0 49,0 0.47699,0 0.93217,-0.13944 1.3125,-0.40625 0.38033,-0.26681 0.70843,-0.71185 0.75,-1.28125 0.0146,0.52272 0.27443,1.01257 0.625,1.28125 0.3817,0.29252 0.83551,0.40625 1.3125,0.40625 0,0 8,0 8,0 0.47699,0 0.93469,-0.12271 1.3125,-0.40625 0.37781,-0.28354 0.67936,-0.78654 0.6875,-1.34375 -0.003,0.56895 0.30769,1.06032 0.6875,1.34375 0.37981,0.28343 0.83551,0.40625 1.3125,0.40625 0,0 7,0 7,0 0.47699,0 0.93334,-0.11356 1.3125,-0.40625 0.35741,-0.2759 0.64298,-0.75536 0.65625,-1.28125 0.0269,0.56108 0.34012,1.00636 0.71875,1.28125 0.37863,0.27489 0.83551,0.40625 1.3125,0.40625 0,0 7,0 7,0 0.47699,0 0.93189,-0.13504 1.3125,-0.4375 0.33417,-0.26556 0.5727,-0.72805 0.59375,-1.21875 0.0587,0.57406 0.39957,1.02196 0.78125,1.28125 0.38168,0.25929 0.83551,0.375 1.3125,0.375 0,0 7,0 7,0 0.47699,0 0.93486,-0.14417 1.3125,-0.46875 0.37764,-0.32458 0.64177,-0.89451 0.5625,-1.4375 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0846,-0.57915 -0.39998,-0.99087 -0.8125,-1.25 0.26304,-0.33524 0.43753,-0.80255 0.375,-1.25 0,0 -0.1875,-1.46875 -0.1875,-1.46875 -0.0771,-0.55194 -0.38883,-0.96029 -0.75,-1.21875 0.28697,-0.32745 0.46979,-0.80673 0.40625,-1.28125 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0863,-0.64445 -0.46892,-1.08991 -0.96875,-1.34375 0.21754,-0.31446 0.3334,-0.71895 0.28125,-1.125 0,0 -0.1875,-1.5 -0.1875,-1.5 -0.0628,-0.48882 -0.28162,-0.88199 -0.59375,-1.15625 0.3204,-0.33632 0.49776,-0.85491 0.4375,-1.34375 0,0 -0.15625,-1.46875 -0.15625,-1.46875 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 -0.0652,-0.52853 -0.32297,-0.94463 -0.6875,-1.21875 0.29245,-0.33453 0.46156,-0.80893 0.40625,-1.28125 0,0 -0.1875,-1.5 -0.1875,-1.5 -0.12129,-1.03687 -1.01431,-1.65625 -1.96875,-1.65625 0,0 -4.46875,0 -4.46875,0 -0.83019,-2e-5 -1.54501,0.68576 -1.6875,1.53125 -0.17843,-0.9173 -0.95265,-1.53125 -1.84375,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.84102,-2e-5 -1.56875,0.66895 -1.71875,1.53125 -0.16424,-0.90063 -0.93185,-1.53125 -1.8125,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.82937,-2e-5 -1.55984,0.62799 -1.75,1.46875 -0.1816,-0.84615 -0.93291,-1.46875 -1.78125,-1.46875 0,0 -4.46875,0 -4.46875,0 -0.95446,-2e-5 -1.92074,0.6785 -1.9375,1.75 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0,0 0,1.5 0,1.5 -0.0127,0.7602 0.51176,1.35605 1.15625,1.625 -0.12836,0.20924 -0.21851,0.45518 -0.25,0.71875 C 141.54605,292.6745 140.75707,292 139.875,292 c 0,0 -1.36761,0 -2.65625,0 0.10967,-0.21224 0.17748,-0.46182 0.1875,-0.71875 0,0 0.0312,-1.5 0.0312,-1.5 0.0104,1.6e-4 0.0208,1.6e-4 0.0312,0 0.0406,-1.03535 -0.92056,-1.8125 -1.875,-1.8125 0,0 -4.46875,0 -4.46875,0 -0.8829,-4e-5 -1.66429,0.61268 -1.84375,1.53125 -0.13633,-0.84769 -0.8474,-1.53125 -1.6875,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.88361,-2e-5 -1.66805,0.58302 -1.875,1.5 -0.0558,-0.35964 -0.0917,-0.72331 -0.34375,-0.96875 -0.34903,-0.33981 -0.83528,-0.53125 -1.3125,-0.53125 0,0 -4.46875,0 -4.46875,0 -0.91613,-2e-5 -1.71751,0.62448 -1.90625,1.5625 -0.048,-0.38038 -0.0844,-0.78197 -0.34375,-1.03125 -0.35372,-0.33993 -0.83528,-0.53125 -1.3125,-0.53125 0,0 -4.4375,0 -4.4375,0 -0.95446,-2e-5 -1.827,0.58662 -2,1.59375 0,0 -0.28125,1.5 -0.28125,1.5 -0.0536,0.31226 0.002,0.64303 0.125,0.9375 -1.12495,0 -2.25,0 -2.25,0 -0.91516,0 -1.75034,0.50557 -2,1.46875 -0.0327,-0.2552 -0.0561,-0.53156 -0.15625,-0.75 0.44269,-0.26266 0.79037,-0.68755 0.90625,-1.28125 0,0 0.28125,-1.5 0.28125,-1.5 0.0966,-0.49519 -0.0595,-1.03926 -0.40625,-1.40625 -0.34672,-0.36699 -0.83528,-0.5625 -1.3125,-0.5625 0,0 -4.46875,0 -4.46875,0 -0.915444,-2e-5 -1.710844,0.56161 -1.96875,1.46875 -0.03828,-0.3233 -0.03241,-0.66466 -0.25,-0.90625 -0.343882,-0.38181 -0.835278,-0.5625 -1.3125,-0.5625 0,0 -4.46875,0 -4.46875,0 -0.939161,-2e-5 -1.734609,0.55554 -2,1.5 -0.04106,-0.35142 -0.01918,-0.73118 -0.25,-0.96875 -0.356725,-0.36715 -0.835278,-0.53125 -1.3125,-0.53125 0,0 -4.4375,0 -4.4375,0 -0.93898,-2e-5 -1.735581,0.53284 -2.03125,1.46875 -0.03961,-0.3294 -0.0041,-0.67482 -0.21875,-0.90625 -0.354335,-0.38205 -0.835278,-0.5625 -1.3125,-0.5625 0,0 -4.4375,0 -4.4375,0 -0.954458,-2e-5 -1.780034,0.51209 -2.09375,1.46875 0,0 -0.5,1.5 -0.5,1.5 -0.12705,0.38743 -0.100069,0.86623 0.09375,1.25 -0.488335,0.2274 -0.859572,0.66202 -1.0625,1.25 -0.01042,-1.6e-4 -0.02083,-1.6e-4 -0.03125,0 0,0 -0.02942,0.057 -0.03125,0.0625 -0.02217,-0.33391 0.05809,-0.69358 -0.15625,-0.9375 C 67.430108,292.16289 66.945446,292 66.46875,292 c 0,0 -4.53125,0 -4.53125,0 -0.95339,0 -1.765397,0.46514 -2.125,1.40625 0,0 -0.02922,0.0571 -0.03125,0.0625 -0.01147,-0.19812 0.02259,-0.40569 0,-0.59375 0.545726,-0.21265 0.981483,-0.64147 1.21875,-1.28125 0,0 0.5625,-1.5 0.5625,-1.5 0.179465,-0.48392 0.129105,-1.11671 -0.21875,-1.53125 -0.347855,-0.41454 -0.866528,-0.59375 -1.34375,-0.59375 0,0 -4.4375,0 -4.4375,0 z m 124.46875,0 c -0.47723,-10e-6 -0.95826,0.19131 -1.3125,0.53125 -0.35424,0.33994 -0.54646,0.8825 -0.46875,1.40625 0,0 0.21875,1.5 0.21875,1.5 0.0798,0.53832 0.34906,0.94708 0.71875,1.21875 -0.26977,0.33547 -0.41592,0.81906 -0.34375,1.28125 0,0 0.25,1.5 0.25,1.5 0.0761,0.48761 0.32391,0.85876 0.65625,1.125 -0.32612,0.33975 -0.52016,0.86671 -0.4375,1.375 0,0 0.25,1.5 0.25,1.5 0.17473,1.07374 1.11146,1.625 2.0625,1.625 0,0 4.6875,0 4.6875,0 0.47552,0 0.94708,-0.17982 1.3125,-0.53125 0.26989,-0.25956 0.31039,-0.66816 0.34375,-1.0625 0.21406,1.06435 1.14271,1.59375 2.09375,1.59375 0,0 4.6875,0 4.6875,0 0.47552,0 0.94205,-0.14878 1.3125,-0.5 0.254,-0.24081 0.26705,-0.65396 0.3125,-1.03125 0.25227,1.05222 1.17396,1.53125 2.125,1.53125 0,0 4.6875,0 4.6875,0 0.47552,0 0.943,-0.16609 1.3125,-0.53125 0.3695,-0.36516 0.54773,-0.97545 0.40625,-1.5 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 0,0 -0.40625,-1.5 -0.40625,-1.5 -0.14437,-0.53537 -0.44735,-0.90971 -0.84375,-1.15625 0.27003,-0.37065 0.3959,-0.86963 0.28125,-1.3125 0,0 -0.375,-1.5 -0.375,-1.5 -0.1461,-0.56436 -0.46062,-0.9773 -0.875,-1.21875 0.23847,-0.36882 0.35298,-0.86254 0.25,-1.28125 0,0 -0.375,-1.5 -0.375,-1.5 -0.2439,-0.99158 -1.10808,-1.53123 -2.0625,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.47723,-10e-6 -0.96239,0.1954 -1.3125,0.5625 -0.22033,0.23102 -0.20073,0.57924 -0.25,0.90625 -0.25187,-0.92205 -1.05332,-1.46875 -1.96875,-1.46875 0,0 -4.46875,0 -4.46875,0 -0.47723,-10e-6 -0.96015,0.17815 -1.3125,0.53125 -0.22952,0.23 -0.22498,0.60044 -0.28125,0.9375 -0.24104,-0.9479 -1.0622,-1.46875 -1.96875,-1.46875 0,0 -4.4375,0 -4.4375,0 z m -23.03125,3.5 c 0.11392,0.71011 0.60204,1.21996 1.21875,1.4375 -0.0803,0.19647 -0.12542,0.43348 -0.15625,0.65625 -0.10414,-0.74332 -0.62988,-1.26775 -1.28125,-1.46875 -0.002,-6.2e-4 0.002,-0.0306 0,-0.0312 0.10195,-0.18702 0.1833,-0.37752 0.21875,-0.59375 z M 113.0625,291.5 c 0.0232,0.17627 0.0518,0.33615 0.0937,0.5 -0.14062,0 -0.14256,0 -0.28125,0 0.0799,-0.15281 0.14914,-0.31838 0.1875,-0.5 z m 8.09375,0 c 0.0253,0.16913 0.0512,0.33704 0.0937,0.5 -0.14056,0 -0.14357,0 -0.28125,0 0.0809,-0.15546 0.15147,-0.316 0.1875,-0.5 z m 8.0625,0 c 0.0288,0.17533 0.0701,0.33742 0.125,0.5 -0.15589,0 -0.16167,0 -0.3125,0 0.0805,-0.15519 0.15026,-0.31679 0.1875,-0.5 z m 35.875,0 c 0.0358,0.18021 0.0807,0.34922 0.15625,0.5 -0.13979,0 -0.14281,0 -0.28125,0 0.054,-0.16157 0.0958,-0.32771 0.125,-0.5 z M 85.25,291.53125 c 0.02875,0.25051 0.04355,0.49985 0.125,0.71875 -0.484087,0.24213 -0.869524,0.65358 -1.03125,1.25 -0.02549,-0.23994 -0.02276,-0.50632 -0.09375,-0.71875 0.468832,-0.23903 0.826246,-0.64776 1,-1.25 z m 8.0625,0 c 0.02955,0.2599 0.05336,0.52424 0.15625,0.75 -0.452621,0.25373 -0.80225,0.67248 -0.9375,1.25 -0.01405,-0.27176 -0.01907,-0.55064 -0.125,-0.78125 0.430938,-0.25455 0.755853,-0.67751 0.90625,-1.21875 z m 93.3125,0 c 0.12103,0.48859 0.38382,0.86798 0.75,1.125 -0.13851,0.23531 -0.14573,0.54366 -0.1875,0.84375 -0.11163,-0.49842 -0.37712,-0.90209 -0.75,-1.15625 0.12578,-0.23421 0.1418,-0.52798 0.1875,-0.8125 z m 8.0625,0 c 0.13351,0.51897 0.4448,0.90296 0.84375,1.15625 -0.12884,0.24326 -0.13258,0.54787 -0.15625,0.84375 -0.12652,-0.57023 -0.43216,-0.97059 -0.84375,-1.21875 0.1121,-0.22611 0.12149,-0.51306 0.15625,-0.78125 z m -117.5,0.0312 c 0.02271,0.22423 0.0083,0.45614 0.0625,0.65625 -0.505646,0.23167 -0.907219,0.64465 -1.09375,1.25 -0.02243,-0.21779 -0.0086,-0.45496 -0.0625,-0.65625 0.505308,-0.23158 0.903706,-0.64438 1.09375,-1.25 z m 71.75,0 c 0.13694,0.63587 0.57541,1.1227 1.125,1.34375 -0.10731,0.19071 -0.18825,0.42039 -0.21875,0.65625 -0.0945,-0.70073 -0.55073,-1.21702 -1.15625,-1.4375 0.10413,-0.1725 0.20436,-0.3551 0.25,-0.5625 z M 207.8125,292 c -0.47669,10e-6 -0.96403,0.14754 -1.3125,0.53125 -0.34847,0.38371 -0.48153,1.00687 -0.34375,1.5 0,0 0.40625,1.46875 0.40625,1.46875 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0.15326,0.54851 0.47111,0.92148 0.875,1.15625 -0.26953,0.37604 -0.38211,0.88987 -0.25,1.34375 0,0 0.4375,1.5 0.4375,1.5 0.20696,0.71088 0.71164,1.13723 1.3125,1.34375 -0.17301,0.35148 -0.23787,0.78441 -0.125,1.15625 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0,0 0.46875,1.5 0.46875,1.5 0.18013,0.59348 0.5592,0.96558 1.03125,1.1875 -0.23244,0.37715 -0.3224,0.88665 -0.1875,1.3125 0,0 0.46875,1.5 0.46875,1.5 0.20149,0.63607 0.60949,1.06043 1.125,1.28125 -0.19851,0.36992 -0.25428,0.82807 -0.125,1.21875 0,0 0.5,1.5 0.5,1.5 0.34141,1.03186 1.26477,1.4375 2.21875,1.4375 0,0 14,0 14,0 0.47699,0 0.96692,-0.12094 1.34375,-0.53125 0.30265,-0.32953 0.28895,-0.83915 0.21875,-1.28125 0.0757,0.18181 0.1875,0.4375 0.1875,0.4375 0.40896,0.97722 1.29602,1.375 2.25,1.375 0,0 5,0 5,0 0.47699,0 0.99947,-0.13458 1.375,-0.5625 0.28026,-0.31936 0.21383,-0.76948 0.15625,-1.1875 0.0345,0.0709 0.21875,0.46875 0.21875,0.46875 0.45552,0.93579 1.31037,1.28125 2.25,1.28125 0,0 5,0 5,0 0.4698,0 0.96276,-0.12535 1.34375,-0.5625 0.38099,-0.43715 0.42703,-1.16472 0.1875,-1.625 0,0 -2.90625,-5.59375 -2.90625,-5.59375 -0.24412,-0.46911 -0.62253,-0.71361 -1,-0.90625 -0.12981,-0.0663 -0.26794,-0.10913 -0.40625,-0.15625 0.18708,-0.41717 0.17843,-0.93905 0,-1.3125 0,0 -2.6875,-5.59375 -2.6875,-5.59375 -0.28954,-0.606 -0.74663,-0.97865 -1.28125,-1.15625 0.17429,-0.39877 0.1839,-0.85454 0.0312,-1.21875 0,0 -0.625,-1.5 -0.625,-1.5 -0.38797,-0.92567 -1.20289,-1.37498 -2.15625,-1.375 0,0 -4.53125,0 -4.53125,0 -0.4767,0 -0.99594,0.1461 -1.34375,0.5625 -0.20167,0.24144 -0.1066,0.58828 -0.125,0.90625 -0.004,-0.0105 -0.0312,-0.0937 -0.0312,-0.0937 -0.35961,-0.94108 -1.17161,-1.375 -2.125,-1.375 0,0 -4.53125,0 -4.53125,0 -0.4767,0 -1.00187,0.17747 -1.34375,0.59375 -0.21329,0.25971 -0.11615,0.60621 -0.125,0.9375 -0.007,-0.0208 -0.0625,-0.125 -0.0625,-0.125 C 222.264,292.4508 221.45339,292 220.5,292 c 0,0 -4.53125,0 -4.53125,0 -0.47669,0 -0.967,0.16295 -1.3125,0.5625 -0.20868,0.24132 -0.16061,0.58629 -0.1875,0.90625 -0.31214,-1.01288 -1.17162,-1.46875 -2.125,-1.46875 0,0 -4.53125,0 -4.53125,0 z m -99,1.03125 c 0.14052,0 0.14195,0 0.28125,0 -0.0731,0.14235 -0.14938,0.29892 -0.1875,0.46875 -0.0203,-0.15567 -0.0597,-0.31979 -0.0937,-0.46875 z m 8.1875,0 c 0.12499,0 0.12672,0 0.25,0 -0.0752,0.151 -0.12215,0.31918 -0.15625,0.5 -0.0209,-0.16583 -0.0547,-0.33885 -0.0937,-0.5 z m 8.1875,0 c 0.12478,0 0.12792,0 0.25,0 -0.0726,0.14998 -0.12577,0.32201 -0.15625,0.5 -0.024,-0.16864 -0.0441,-0.34041 -0.0937,-0.5 z m 8.125,0 c 0.15589,0 0.16167,0 0.3125,0 -0.075,0.15438 -0.12806,0.31685 -0.15625,0.5 -0.0268,-0.17766 -0.0842,-0.34576 -0.15625,-0.5 z m 16.5625,2.375 c 0.0239,0.2109 0.10105,0.38806 0.1875,0.5625 -0.16254,0 -0.1952,0 -0.375,0 0.0835,-0.17221 0.16307,-0.35958 0.1875,-0.5625 z m -24.65625,0.0312 c 0.023,0.18371 0.0696,0.35656 0.125,0.53125 -0.1213,0 -0.17408,0 -0.3125,0 0.0825,-0.16202 0.15759,-0.33744 0.1875,-0.53125 z m 8.21875,0 c 0.0276,0.18367 0.0649,0.35908 0.125,0.53125 -0.11595,0 -0.15305,0 -0.28125,0 0.0797,-0.16191 0.12809,-0.33603 0.15625,-0.53125 z m 8.21875,0 c 0.0246,0.19338 0.0777,0.36717 0.15625,0.53125 -0.13225,0 -0.16655,0 -0.3125,0 0.0801,-0.16357 0.13106,-0.33955 0.15625,-0.53125 z m 16.4375,0 c 0.0288,0.19433 0.0763,0.36963 0.15625,0.53125 -0.1282,0 -0.14496,0 -0.28125,0 0.0601,-0.17205 0.0977,-0.34684 0.125,-0.53125 z m 64.9375,0 c 0.0106,0.03 0.0625,0.15625 0.0625,0.15625 0.1907,0.53967 0.54101,0.89931 0.96875,1.125 -0.10149,0.23628 -0.0556,0.51099 -0.0625,0.78125 -0.004,-0.0108 -0.0312,-0.0937 -0.0312,-0.0937 -0.19143,-0.5323 -0.5393,-0.92059 -0.96875,-1.15625 0.0883,-0.23974 0.0282,-0.53205 0.0312,-0.8125 z m -155.46875,0.0312 c 0.0053,0.16384 -0.01296,0.3426 0,0.5 -0.05944,0 -0.146306,0 -0.21875,0 0.06702,-0.1161 0.138979,-0.23768 0.1875,-0.375 0,0 0.02491,-0.10709 0.03125,-0.125 z m 16.5,0 c 0.01245,0.17268 0.0072,0.33612 0.03125,0.5 -0.0767,0 -0.157962,0 -0.25,0 0.07505,-0.13545 0.141781,-0.27388 0.1875,-0.4375 0,0 0.02964,-0.057 0.03125,-0.0625 z m 16.4375,0 c 0.0186,0.17047 0.0558,0.33728 0.0937,0.5 -0.0958,0 -0.16812,0 -0.28125,0 0.0825,-0.15181 0.14554,-0.31695 0.1875,-0.5 z m 8.25,0 c 0.019,0.16767 0.0561,0.33742 0.0937,0.5 -0.10157,0 -0.16374,0 -0.28125,0 0.0813,-0.15267 0.14925,-0.31661 0.1875,-0.5 z m 8.21875,0 c 0.0234,0.16909 0.044,0.34013 0.0937,0.5 -0.0954,0 -0.1429,0 -0.25,0 0.0781,-0.15225 0.11996,-0.31575 0.15625,-0.5 z m 78.625,0 c 0.11843,0.51484 0.41332,0.90215 0.78125,1.15625 -0.15679,0.2413 -0.18933,0.56519 -0.21875,0.875 -0.11938,-0.51647 -0.4076,-0.90255 -0.78125,-1.15625 0.15015,-0.24651 0.20261,-0.56323 0.21875,-0.875 z m -136.25,0.0312 c 0.004,0.1554 -2.92e-4,0.31702 0,0.46875 -0.03636,0 -0.201432,0 -0.25,0 0.06802,-0.11114 0.13696,-0.21428 0.1875,-0.34375 0,0 0.05444,-0.10464 0.0625,-0.125 z m 32.9375,0 c 0.01738,0.16178 0.03674,0.31231 0.0625,0.46875 -0.08081,0 -0.154584,0 -0.25,0 0.07835,-0.14513 0.144613,-0.29183 0.1875,-0.46875 z m 95.0625,0 c 0.11072,0.47751 0.37245,0.84265 0.71875,1.09375 -0.19253,0.26397 -0.22687,0.62366 -0.25,0.96875 -0.0972,-0.50472 -0.36667,-0.88885 -0.71875,-1.15625 0.18184,-0.24133 0.20466,-0.57877 0.25,-0.90625 z M 75.8125,295.5625 c 0.01414,0.13328 0.01808,0.27612 0.03125,0.40625 -0.06336,0 -0.14295,0 -0.21875,0 0.06957,-0.1235 0.140972,-0.25919 0.1875,-0.40625 z m 139,0 c 0.17186,0.5432 0.50926,0.92378 0.9375,1.15625 -0.0968,0.23218 -0.0736,0.50527 -0.0937,0.78125 -0.002,-0.005 -0.0312,-0.0625 -0.0312,-0.0625 -0.1691,-0.5267 -0.49666,-0.88221 -0.90625,-1.125 0.10625,-0.2185 0.0799,-0.49118 0.0937,-0.75 z m 16.46875,0 c 0.002,0.005 0.0312,0.0625 0.0312,0.0625 0.24708,0.63291 0.7014,1.02234 1.25,1.21875 -0.14466,0.34735 -0.1449,0.77463 -0.0312,1.125 -0.11357,-0.28692 -0.25,-0.59375 -0.25,-0.59375 -0.21366,-0.53666 -0.5906,-0.89672 -1.03125,-1.125 0.003,-0.01 -0.002,-0.0215 0,-0.0312 0.0468,-0.20004 0.0174,-0.43325 0.0312,-0.65625 z M 61.5,297 c 0.06363,0 0.168784,0 0.25,0 -0.0674,0.11338 -0.137272,0.24317 -0.1875,0.375 0,0 -0.04703,0.14842 -0.0625,0.1875 0.0032,-0.18773 0.01582,-0.38226 0,-0.5625 z m 8.3125,0 c 0.06599,0 0.166794,0 0.25,0 -0.07222,0.124 -0.136773,0.25814 -0.1875,0.40625 0,0 -0.02743,0.083 -0.03125,0.0937 -0.01278,-0.16362 -0.01929,-0.34006 -0.03125,-0.5 z m 8.375,0 c 0.0656,0 0.140964,0 0.21875,0 -0.08368,0.14372 -0.134381,0.29399 -0.1875,0.46875 0,0 -0.02963,0.0569 -0.03125,0.0625 -0.01059,-0.17702 0.01519,-0.35737 0,-0.53125 z m 8.3125,0 c 0.0771,0 0.157539,0 0.25,0 -0.07973,0.1463 -0.140423,0.32264 -0.1875,0.5 -0.01042,-1.6e-4 -0.02083,-1.6e-4 -0.03125,0 C 86.51416,297.3362 86.51741,297.15986 86.5,297 Z m 8.34375,0 c 0.09361,0 0.169838,0 0.28125,0 -0.08852,0.16017 -0.173934,0.33374 -0.21875,0.53125 -0.01533,-0.17821 -0.02522,-0.36064 -0.0625,-0.53125 z m 8.3125,0 c 0.10644,0 0.18495,0 0.3125,0 -0.0924,0.17064 -0.17874,0.35009 -0.21875,0.5625 -0.0165,-0.1869 -0.0508,-0.3861 -0.0937,-0.5625 z m 8.375,0 c 0.10402,0 0.16177,0 0.28125,0 -0.0879,0.1645 -0.14922,0.32969 -0.1875,0.53125 -0.0215,-0.1772 -0.05,-0.36188 -0.0937,-0.53125 z m 8.3125,0 c 0.11772,0 0.17656,0 0.3125,0 -0.0835,0.16697 -0.15657,0.35948 -0.1875,0.5625 -0.0238,-0.19642 -0.0707,-0.37982 -0.125,-0.5625 z m 8.375,0 c 0.1257,0 0.17089,0 0.3125,0 -0.0903,0.17889 -0.15687,0.37299 -0.1875,0.59375 -0.0217,-0.20009 -0.0632,-0.40681 -0.125,-0.59375 z m 8.3125,0 c 0.14031,0 0.18525,0 0.34375,0 -0.0944,0.18241 -0.16109,0.37448 -0.1875,0.59375 -0.0211,-0.2096 -0.0712,-0.4138 -0.15625,-0.59375 z m 8.34375,0 c 0.15931,0 0.19695,0 0.375,0 -0.0845,0.1707 -0.16118,0.36274 -0.1875,0.5625 -0.0264,-0.20128 -0.10201,-0.39074 -0.1875,-0.5625 z m 8.375,0 c 0.13792,0 0.16285,0 0.3125,0 -0.0653,0.17768 -0.099,0.36254 -0.125,0.5625 -0.0308,-0.21088 -0.0979,-0.38865 -0.1875,-0.5625 z m 8.34375,0 c 0.0723,0 0.22863,0 0.3125,0 -0.0618,0.18694 -0.10331,0.39366 -0.125,0.59375 -0.0302,-0.21439 -0.0977,-0.41562 -0.1875,-0.59375 z m 71.28125,1.90625 c 0.15952,0.35694 0.34653,0.81108 0.625,1.4375 -0.19094,-0.11045 -0.40429,-0.19734 -0.625,-0.25 0.15181,-0.38001 0.13123,-0.83554 0,-1.1875 z m -113,0.5 c 0.0166,0.20569 0.0638,0.40737 0.125,0.59375 -0.0913,0 -0.1974,0 -0.3125,0 0.0922,-0.17797 0.15541,-0.37226 0.1875,-0.59375 z m 8.40625,0 c 0.0194,0.20067 0.0639,0.40789 0.125,0.59375 -0.097,0 -0.19277,0 -0.3125,0 0.0914,-0.1792 0.16004,-0.37189 0.1875,-0.59375 z m 8.375,0 c 0.0229,0.20293 0.0534,0.41075 0.125,0.59375 -0.10674,0 -0.1852,0 -0.3125,0 0.0903,-0.17835 0.15943,-0.37858 0.1875,-0.59375 z m 16.8125,0 c 0.0281,0.21514 0.0972,0.41541 0.1875,0.59375 -0.11562,0 -0.17851,0 -0.3125,0 0.0716,-0.183 0.10206,-0.39084 0.125,-0.59375 z m 8.375,0 c 0.0275,0.22183 0.0961,0.41456 0.1875,0.59375 l -0.3125,0 c 0.0612,-0.18565 0.10571,-0.39202 0.125,-0.59375 z M 61.0625,299.4375 c 0.0018,0.18095 -0.0092,0.38327 0,0.5625 -0.01212,0 -0.227622,0 -0.25,0 0.07154,-0.11698 0.133214,-0.23565 0.1875,-0.375 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 0,0 0.05139,-0.12664 0.0625,-0.15625 z m 16.8125,0 c 0.0046,0.18382 0.0087,0.3847 0.03125,0.5625 -0.04732,0 -0.208622,0 -0.28125,0 0.08053,-0.13746 0.166148,-0.26915 0.21875,-0.4375 0,0 0.02548,-0.10655 0.03125,-0.125 z m 8.40625,0 c 0.0097,0.18584 0.0029,0.38442 0.03125,0.5625 -0.04995,0 -0.180924,0 -0.25,0 0.07667,-0.13996 0.140666,-0.29781 0.1875,-0.46875 0,0 0.02818,-0.0824 0.03125,-0.0937 z m 16.8125,0 c 0.0162,0.18621 0.051,0.38628 0.0937,0.5625 -0.0748,0 -0.21053,0 -0.3125,0 0.0942,-0.17053 0.17658,-0.34835 0.21875,-0.5625 z m 8.40625,0 c 0.0197,0.19025 0.0455,0.37946 0.0937,0.5625 -0.0836,0 -0.20346,0 -0.3125,0 0.0925,-0.17124 0.18161,-0.34818 0.21875,-0.5625 z m 33.5625,0 c 0.0288,0.20294 0.0996,0.3909 0.1875,0.5625 -0.13085,0 -0.21613,0 -0.375,0 0.0879,-0.17163 0.15881,-0.35946 0.1875,-0.5625 z m 70.9375,0 c 0.006,0.0182 0.0312,0.125 0.0312,0.125 0.10743,0.32589 0.26224,0.5975 0.46875,0.8125 -0.17497,-0.10717 -0.36377,-0.18562 -0.5625,-0.25 0.05,-0.21334 0.0559,-0.45666 0.0625,-0.6875 z m -121.3125,0.0312 c 0.01487,0.17753 0.02541,0.36084 0.0625,0.53125 -0.06187,0 -0.196287,0 -0.28125,0 0.08995,-0.15984 0.172007,-0.33271 0.21875,-0.53125 z m 129.71875,0 c 0.006,0.0178 0.0312,0.125 0.0312,0.125 0.0906,0.24615 0.22723,0.44408 0.375,0.625 -0.13677,-0.0643 -0.28699,-0.0882 -0.4375,-0.125 0.0376,-0.19534 0.025,-0.41266 0.0312,-0.625 z M 69.46875,299.5 c 0.01223,0.16271 0.01946,0.34021 0.03125,0.5 -0.03377,0 -0.195002,0 -0.25,0 0.0747,-0.12517 0.134634,-0.25565 0.1875,-0.40625 0,0 0.02742,-0.0829 0.03125,-0.0937 z m 147.46875,1.21875 c 0.17393,0.10324 0.36367,0.16528 0.5625,0.21875 -0.0324,0.2092 -0.0311,0.43342 -0.0312,0.65625 -0.0101,-0.0302 -0.0625,-0.15625 -0.0625,-0.15625 -0.10227,-0.30547 -0.27043,-0.52901 -0.46875,-0.71875 z m 8.625,0.0937 c 0.14127,0.0646 0.28355,0.0888 0.4375,0.125 -0.0524,0.23853 -0.0478,0.49744 -0.0312,0.75 -0.0314,-0.0836 -0.0937,-0.28125 -0.0937,-0.28125 -0.0847,-0.22596 -0.18028,-0.42421 -0.3125,-0.59375 z m -162.6875,0.2188 c 0.03111,0 0.1972,0 0.25,0 -0.05965,0.10267 -0.110571,0.22476 -0.15625,0.34375 0,0 -0.06131,0.19931 -0.09375,0.28125 0.01019,-0.20533 0.02323,-0.42655 0,-0.625 z m 8.53125,0 c 0.04452,0 0.21085,0 0.28125,0 -0.07174,0.12356 -0.137189,0.25986 -0.1875,0.40625 0,0 -0.06293,0.19425 -0.09375,0.28125 0.01634,-0.22839 0.0348,-0.46361 0,-0.6875 z m 8.5,0 c 0.045,0 0.185089,0 0.25,0 -0.07155,0.12918 -0.140183,0.28162 -0.1875,0.4375 0,0 -0.0258,0.10631 -0.03125,0.125 -0.0063,-0.19176 -0.0019,-0.37772 -0.03125,-0.5625 z m 8.5,0 c 0.05652,0 0.20065,0 0.28125,0 -0.07583,0.14054 -0.142124,0.29645 -0.1875,0.46875 0,0 -0.02648,0.1059 -0.03125,0.125 -0.0027,-0.1956 -0.02451,-0.40623 -0.0625,-0.59375 z m 8.53125,0 c 0.065,0 0.193525,0 0.28125,0 -0.07896,0.15072 -0.145729,0.31284 -0.1875,0.5 0,0 -0.02685,0.10581 -0.03125,0.125 -0.0029,-0.21507 -0.0132,-0.42414 -0.0625,-0.625 z m 8.5,0 c 0.0704,0 0.18903,0 0.28125,0 -0.0845,0.16147 -0.15032,0.32812 -0.1875,0.53125 -0.01,-0.17696 -0.0483,-0.36316 -0.0937,-0.53125 z m 8.5,0 c 0.084,0 0.20294,0 0.3125,0 -0.086,0.1689 -0.15765,0.35345 -0.1875,0.5625 -0.0154,-0.19411 -0.0688,-0.38097 -0.125,-0.5625 z m 8.53125,0 c 0.0923,0 0.19636,0 0.3125,0 -0.092,0.17883 -0.16128,0.37318 -0.1875,0.59375 -0.0125,-0.20883 -0.0632,-0.40138 -0.125,-0.59375 z m 8.5625,0 c 0.10247,0 0.18836,0 0.3125,0 -0.094,0.18828 -0.16705,0.39347 -0.1875,0.625 -0.0118,-0.21932 -0.0513,-0.43031 -0.125,-0.625 z m 8.5,0 c 0.11798,0 0.20124,0 0.34375,0 -0.0865,0.1796 -0.16704,0.37244 -0.1875,0.59375 -0.0191,-0.20908 -0.0763,-0.41113 -0.15625,-0.59375 z m 8.53125,0 c 0.114,0 0.17961,0 0.3125,0 -0.0845,0.19351 -0.13825,0.40554 -0.15625,0.625 -0.0206,-0.22708 -0.0664,-0.4325 -0.15625,-0.625 z m 8.5,0 c 0.11822,0 0.1765,0 0.3125,0 -0.0735,0.19525 -0.11114,0.40856 -0.125,0.625 -0.0177,-0.23522 -0.0942,-0.43579 -0.1875,-0.625 z m -59.78125,2.25 c -0.004,0.2312 0.0066,0.4681 0.0625,0.6875 -0.116166,0 -0.178413,0 -0.3125,0 0.07952,-0.14874 0.14523,-0.31789 0.1875,-0.5 0,0 0.05158,-0.14385 0.0625,-0.1875 z m -25.75,0.0312 c -0.01444,0.21617 -0.02925,0.44718 0,0.65625 -0.09044,0 -0.173095,0 -0.28125,0 0.06827,-0.11707 0.138386,-0.23571 0.1875,-0.375 0,0 0.06378,-0.19662 0.09375,-0.28125 z m 17.1875,0 c -0.0051,0.21211 -0.01184,0.44872 0.03125,0.65625 -0.100302,0 -0.165355,0 -0.28125,0 0.07853,-0.14169 0.139853,-0.29376 0.1875,-0.46875 0,0 0.05106,-0.14528 0.0625,-0.1875 z m 42.875,0 c 0.009,0.22119 0.0517,0.45572 0.125,0.65625 -0.13559,0 -0.16479,0 -0.3125,0 0.0991,-0.19477 0.17001,-0.41138 0.1875,-0.65625 z m 95.28125,0 c 0.0409,0.10334 0.125,0.3125 0.125,0.3125 0.23531,0.613 0.67015,0.98581 1.1875,1.1875 -0.10001,0.27331 -0.0614,0.60038 -0.0312,0.90625 -0.0472,-0.11917 -0.125,-0.34375 -0.125,-0.34375 -0.23797,-0.60818 -0.67176,-1.00632 -1.1875,-1.21875 0.0855,-0.25983 0.0546,-0.55609 0.0312,-0.84375 z m -163.90625,0.0312 c -0.0066,0.21022 -0.02078,0.41967 0,0.625 -0.03007,0 -0.242275,0 -0.28125,0 0.0617,-0.10371 0.108765,-0.22286 0.15625,-0.34375 0,0 0.09013,-0.19317 0.125,-0.28125 z m 77.1875,0 c 0.0174,0.21963 0.0466,0.43019 0.125,0.625 -0.14107,0 -0.16142,0 -0.3125,0 0.0944,-0.18856 0.16991,-0.39236 0.1875,-0.625 z m 8.5625,0 c 0.0156,0.23222 0.0908,0.43406 0.1875,0.625 -0.14308,0 -0.16031,0 -0.3125,0 0.0781,-0.19368 0.10919,-0.40313 0.125,-0.625 z m 8.59375,0 c 0.0195,0.2318 0.096,0.43936 0.1875,0.625 -0.0828,0 -0.2368,0 -0.3125,0 0.0776,-0.19368 0.10851,-0.40655 0.125,-0.625 z m 61,0 c 0.0249,0.0703 0.0937,0.25 0.0937,0.25 0.20621,0.60006 0.60808,0.9746 1.09375,1.1875 -0.10205,0.26379 -0.0738,0.5763 -0.0625,0.875 -0.0249,-0.0703 -0.0937,-0.25 -0.0937,-0.25 -0.21193,-0.60649 -0.62154,-0.998 -1.125,-1.21875 0.0974,-0.25403 0.0998,-0.54802 0.0937,-0.84375 z M 79.625,303.375 c 1.16e-4,0.19735 0.0022,0.40453 0.03125,0.59375 -0.09471,0 -0.16968,0 -0.28125,0 0.07077,-0.12486 0.140653,-0.25632 0.1875,-0.40625 0,0 0.04954,-0.14603 0.0625,-0.1875 z m 42.90625,0 c 0.0146,0.20111 0.0337,0.41104 0.0937,0.59375 -0.13205,0 -0.16718,0 -0.3125,0 0.10338,-0.17695 0.19301,-0.36309 0.21875,-0.59375 z m -8.59375,0.0312 c 0.0146,0.18699 0.0713,0.38527 0.125,0.5625 -0.12579,0 -0.17143,0 -0.3125,0 0.0892,-0.17019 0.15516,-0.3494 0.1875,-0.5625 z m -8.59375,0.0312 c 0.0122,0.18277 0.0432,0.35703 0.0937,0.53125 -0.10989,0 -0.15792,0 -0.28125,0 0.0852,-0.15954 0.14956,-0.33356 0.1875,-0.53125 z m 129.75,0.40625 c 0.1383,0.25978 0.30082,0.487 0.5,0.65625 -0.18041,-0.14876 -0.40725,-0.22818 -0.625,-0.3125 0.0556,-0.10812 0.0965,-0.22521 0.125,-0.34375 z m -43.5,0.125 c -0.48167,10e-6 -0.97091,0.1564 -1.34375,0.5 -0.37284,0.3436 -0.58813,0.9547 -0.46875,1.5 0,0 0.3125,1.5 0.3125,1.5 0.13454,0.61454 0.50983,1.00267 0.96875,1.25 -0.19447,0.31868 -0.26793,0.73391 -0.21875,1.125 -0.0234,-0.10195 -0.0625,-0.3125 -0.0625,-0.3125 -0.23834,-1.08893 -1.16359,-1.53125 -2.125,-1.53125 0,0 -4.90625,0 -4.90625,0 -0.4807,0 -0.93472,0.14757 -1.3125,0.46875 -0.37778,0.32118 -0.66752,0.90082 -0.5625,1.46875 0,0 0.28125,1.5 0.28125,1.5 0.10392,0.56188 0.4614,0.9417 0.84375,1.1875 0.38235,0.2458 0.83551,0.375 1.3125,0.375 0,0 5,0 5,0 0.47699,0 0.96234,-0.1324 1.34375,-0.46875 0.35019,-0.30882 0.49552,-0.86372 0.4375,-1.375 0.0234,0.10198 0.0625,0.3125 0.0625,0.3125 0.12617,0.55168 0.46107,0.91654 0.84375,1.15625 0.38268,0.23971 0.83551,0.375 1.3125,0.375 0,0 5,0 5,0 0.47699,0 0.96738,-0.13646 1.34375,-0.5 0.34517,-0.3334 0.45294,-0.88634 0.375,-1.375 0.0377,0.13925 0.0937,0.375 0.0937,0.375 0.29434,1.08024 1.23352,1.5 2.1875,1.5 0,0 5,0 5,0 0.47699,0 0.9676,-0.12175 1.34375,-0.5 0.37615,-0.37825 0.53048,-1.02409 0.375,-1.53125 0,0 -0.4375,-1.5 -0.4375,-1.5 -0.31942,-1.04196 -1.2261,-1.46875 -2.1875,-1.46875 0,0 -4.9375,0 -4.9375,0 -0.4807,0 -0.97092,0.1405 -1.34375,0.5 -0.32549,0.31386 -0.39796,0.83448 -0.34375,1.3125 -0.0261,-0.10438 -0.0937,-0.3125 -0.0937,-0.3125 -0.16114,-0.61323 -0.53109,-1.01741 -1,-1.25 0.24094,-0.35949 0.35631,-0.82739 0.25,-1.25 0,0 -0.375,-1.5 -0.375,-1.5 -0.26724,-1.06227 -1.19288,-1.53125 -2.15625,-1.53125 0,0 -4.8125,0 -4.8125,0 z m 44.0625,0.5625 c 0.20033,0.15912 0.41486,0.26271 0.65625,0.34375 -0.0526,0.1327 -0.0796,0.29324 -0.0937,0.4375 -0.14262,-0.32013 -0.33227,-0.57839 -0.5625,-0.78125 z M 64.875,305 c 0.09345,0 0.195825,0 0.3125,0 -0.0705,0.11664 -0.134533,0.23634 -0.1875,0.375 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0,0 -0.07975,0.22308 -0.125,0.34375 0.02837,-0.24846 0.04353,-0.51004 0,-0.75 z m 8.6875,0 c 0.110535,0 0.207386,0 0.34375,0 -0.083,0.13625 -0.162469,0.272 -0.21875,0.4375 0,0 -0.07008,0.17899 -0.09375,0.25 0.0078,-0.23111 0.01071,-0.46928 -0.03125,-0.6875 z m 8.6875,0 c 0.116301,0 0.202896,0 0.34375,0 -0.08265,0.14217 -0.136557,0.29788 -0.1875,0.46875 0,0 -0.07075,0.1764 -0.09375,0.25 C 82.3215,305.47708 82.29923,305.23177 82.25,305 Z m 8.71875,0 c 0.101211,0 0.164468,0 0.28125,0 -0.0825,0.14826 -0.140798,0.31772 -0.1875,0.5 0,0 -0.02648,0.1059 -0.03125,0.125 -0.0029,-0.20253 -0.01957,-0.42927 -0.0625,-0.625 z m 8.71875,0 c 0.118704,0 0.176441,0 0.3125,0 -0.08977,0.16242 -0.175047,0.32728 -0.21875,0.53125 0,0 -0.02519,0.12718 -0.03125,0.15625 -5.26e-4,-0.22666 -0.0068,-0.47432 -0.0625,-0.6875 z m 8.6875,0 c 0.12397,0 0.17272,0 0.3125,0 -0.0864,0.16653 -0.15147,0.35345 -0.1875,0.5625 0,0 -0.0276,0.10568 -0.0312,0.125 -0.005,-0.23102 -0.0243,-0.47488 -0.0937,-0.6875 z m 8.6875,0 c 0.14085,0 0.18545,0 0.34375,0 -0.0998,0.1878 -0.18748,0.38524 -0.21875,0.625 -0.007,-0.21127 -0.0551,-0.43335 -0.125,-0.625 z m 8.71875,0 c 0.13302,0 0.1664,0 0.3125,0 -0.10035,0.19545 -0.16535,0.40598 -0.1875,0.65625 -0.01,-0.22348 -0.0491,-0.45173 -0.125,-0.65625 z m 8.6875,0 c 0.13606,0 0.16443,0 0.3125,0 -0.0962,0.19908 -0.14446,0.43439 -0.15625,0.6875 -0.0118,-0.24264 -0.0683,-0.47892 -0.15625,-0.6875 z m 8.75,0 c 0.15654,0 0.17605,0 0.34375,0 -0.0948,0.1868 -0.1662,0.40235 -0.1875,0.625 -0.0198,-0.22604 -0.0661,-0.43224 -0.15625,-0.625 z m 8.6875,0 c 0.15953,0 0.17453,0 0.34375,0 -0.0947,0.20211 -0.17211,0.41863 -0.1875,0.65625 -0.017,-0.23597 -0.0621,-0.46391 -0.15625,-0.65625 z M 64.5,307.25 c -0.02827,0.24795 -0.04384,0.51246 0,0.75 -0.08513,0 -0.23601,0 -0.34375,0 0.07064,-0.11473 0.134744,-0.24018 0.1875,-0.375 0,0 0.100062,-0.23305 0.15625,-0.375 z m 8.75,0.0312 c -0.0183,0.23709 -0.01907,0.48953 0.03125,0.71875 -0.156161,0 -0.157913,0 -0.3125,0 0.07515,-0.12533 0.134585,-0.2548 0.1875,-0.40625 0,0 0.05841,-0.21273 0.09375,-0.3125 z m 26.28125,0 c -0.0051,0.23958 0.02395,0.49249 0.09375,0.71875 -0.147337,0 -0.166155,0 -0.3125,0 0.08695,-0.15716 0.144348,-0.33826 0.1875,-0.53125 0,0 0.02212,-0.14766 0.03125,-0.1875 z m 128.53125,0 c 0.0471,0.11886 0.125,0.34375 0.125,0.34375 0.26907,0.67165 0.75803,1.05738 1.34375,1.25 -0.099,0.292 -0.0854,0.62542 -0.0312,0.9375 -0.0758,-0.18199 -0.1875,-0.4375 -0.1875,-0.4375 -0.26058,-0.63751 -0.75003,-0.99263 -1.3125,-1.1875 0.0977,-0.273 0.088,-0.60113 0.0625,-0.90625 z m -146.03125,0.0312 c -0.0071,0.22601 -0.01023,0.47232 0.03125,0.6875 -0.01034,0 -0.306095,0 -0.3125,0 0.07227,-0.12899 0.139476,-0.2813 0.1875,-0.4375 0,0 0.07142,-0.17853 0.09375,-0.25 z m 26.28125,0 c 0.007,0.23642 0.0494,0.46765 0.125,0.6875 -0.18451,0 -0.1898,0 -0.375,0 0.0913,-0.16927 0.17966,-0.34736 0.21875,-0.5625 0,0 0.0276,-0.10556 0.0312,-0.125 z m 26.28125,0 c 0.007,0.24577 0.0613,0.48095 0.15625,0.6875 -0.10185,0 -0.29889,0 -0.375,0 0.10823,-0.20644 0.20411,-0.42559 0.21875,-0.6875 z m -43.8125,0.0312 c 0.0012,0.21448 0.01339,0.448 0.0625,0.65625 -0.09951,0 -0.21545,0 -0.3125,0 0.08382,-0.14934 0.138377,-0.315 0.1875,-0.5 0.01042,1.6e-4 0.02083,1.6e-4 0.03125,0 0,0 0.02412,-0.12773 0.03125,-0.15625 z m 35.03125,0 c 0.009,0.22467 0.0708,0.4571 0.15625,0.65625 -0.047,0 -0.29263,0 -0.34375,0 0.10226,-0.19454 0.16355,-0.41143 0.1875,-0.65625 z m 26.3125,0 c 0.0206,0.2368 0.0911,0.45713 0.1875,0.65625 -0.0299,-10e-4 -0.0639,0 -0.0937,0 0,0 -0.23256,0 -0.25,0 0.0915,-0.20058 0.13925,-0.42677 0.15625,-0.65625 z m 67.15625,0 c 0.0248,0.0701 0.0937,0.25 0.0937,0.25 0.0536,0.14926 0.11205,0.28196 0.1875,0.40625 -0.1549,0 -0.15924,0 -0.3125,0 0.0352,-0.21121 0.0363,-0.44026 0.0312,-0.65625 z m -75.9375,0.0312 c 0.043,0.45235 0.23518,0.88515 0.53125,1.15625 -0.29667,0.28409 -0.51399,0.70517 -0.53125,1.1875 -0.003,-0.49439 -0.24603,-0.90171 -0.5625,-1.1875 0.3006,-0.26481 0.50978,-0.69563 0.5625,-1.15625 z m -26.28125,0.0312 c 0.0125,0.20686 0.0533,0.40553 0.125,0.59375 -0.11894,0 -0.19161,0 -0.3125,0 0.0905,-0.17574 0.15617,-0.36955 0.1875,-0.59375 z m 119.90625,0.0312 c 0.22549,0.46215 0.30682,0.59714 0.59375,1.1875 -0.22129,-0.18962 -0.45412,-0.35991 -0.71875,-0.46875 0.10507,-0.22719 0.1312,-0.46594 0.125,-0.71875 z M 56.1875,309.03125 c 0.147435,0 0.168277,0 0.3125,0 -0.0574,0.0935 -0.109546,0.20465 -0.15625,0.3125 0,0 -0.108062,0.25593 -0.1875,0.4375 0.03623,-0.24719 0.06346,-0.5082 0.03125,-0.75 z m 10.875,0 c 0.122288,0 0.223126,0 0.375,0 -0.07767,0.11626 -0.164862,0.23303 -0.21875,0.375 0,0 -0.09577,0.24497 -0.15625,0.40625 0.03663,-0.25227 0.04604,-0.52819 0,-0.78125 z m 11.875,0 c 0.08681,0 0.254972,0 0.3125,0 -0.07239,0.12568 -0.138784,0.25456 -0.1875,0.40625 0,0 -0.06174,0.21005 -0.09375,0.3125 0.01879,-0.23481 0.01999,-0.49165 -0.03125,-0.71875 z m 52.34375,0 c 0.13472,0 0.23481,0 0.34375,0 -0.0933,0.19118 -0.17209,0.41259 -0.1875,0.65625 -0.005,-0.23357 -0.0669,-0.45584 -0.15625,-0.65625 z m 22.75,0 c 0.0214,6.3e-4 0.041,0 0.0625,0 0,0 0.27328,0 0.28125,0 -0.0939,0.2057 -0.14995,0.44481 -0.15625,0.6875 -0.0103,-0.26444 -0.0811,-0.48076 -0.1875,-0.6875 z m 10.875,0 c 0.16996,0 0.17527,0 0.34375,0 -0.0864,0.19297 -0.1491,0.39999 -0.15625,0.625 -0.0213,-0.23043 -0.0911,-0.44361 -0.1875,-0.625 z" - style="display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - </clipPath> - <linearGradient - id="linearGradient4264"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop4266" /> - <stop - id="stop2689" - offset="0.5" - style="stop-color:#959793;stop-opacity:1;" /> - <stop - style="stop-color:#b5b7b3;stop-opacity:1;" - offset="0.75" - id="stop2691" /> - <stop - style="stop-color:#d6d7d3;stop-opacity:1;" - offset="1" - id="stop4268" /> - </linearGradient> - <linearGradient - id="linearGradient2703"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop2705" /> - <stop - id="stop6528" - offset="0.30842987" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0.62499988" - id="stop6530" /> - <stop - style="stop-color:#d6d7d3;stop-opacity:1;" - offset="1" - id="stop2711" /> - </linearGradient> - <inkscape:perspective - id="perspective95" - inkscape:persp3d-origin="24.000001 : 16 : 1" - inkscape:vp_z="48 : 23.999999 : 1" - inkscape:vp_y="0 : 999.99997 : 0" - inkscape:vp_x="0 : 23.999999 : 1" - sodipodi:type="inkscape:persp3d" /> - <linearGradient - id="linearGradient3962"> - <stop - id="stop3964" - offset="0.0000000" - style="stop-color:#d3e9ff;stop-opacity:1.0000000;" /> - <stop - id="stop4134" - offset="0.15517241" - style="stop-color:#d3e9ff;stop-opacity:1.0000000;" /> - <stop - id="stop4346" - offset="0.75000000" - style="stop-color:#4074ae;stop-opacity:1.0000000;" /> - <stop - id="stop3966" - offset="1.0000000" - style="stop-color:#36486c;stop-opacity:1.0000000;" /> - </linearGradient> - <radialGradient - gradientUnits="userSpaceOnUse" - r="29.993349" - fy="15.716079" - fx="18.247644" - cy="15.716079" - cx="18.247644" - gradientTransform="scale(0.999989,1.000011)" - id="radialGradient3968" - xlink:href="#linearGradient3962" - inkscape:collect="always" /> - <radialGradient - gradientUnits="userSpaceOnUse" - r="12.289036" - fy="63.965389" - fx="15.115514" - cy="63.965389" - cx="15.115514" - gradientTransform="scale(1.64399,0.608276)" - id="radialGradient4120" - xlink:href="#linearGradient5316" - inkscape:collect="always" /> - <radialGradient - gradientUnits="userSpaceOnUse" - r="43.526714" - fy="12.142302" - fx="15.601279" - cy="12.142302" - cx="15.601279" - gradientTransform="scale(0.999989,1.000011)" - id="radialGradient4132" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <radialGradient - r="6.7175145" - fy="12.493138" - fx="12.071323" - cy="12.493138" - cx="12.071323" - gradientUnits="userSpaceOnUse" - id="radialGradient5983" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <radialGradient - r="6.7175145" - fy="12.493138" - fx="12.071323" - cy="12.493138" - cx="12.071323" - gradientUnits="userSpaceOnUse" - id="radialGradient5985" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <radialGradient - r="6.7175145" - fy="12.493138" - fx="12.071323" - cy="12.493138" - cx="12.071323" - gradientUnits="userSpaceOnUse" - id="radialGradient5987" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <radialGradient - r="6.7175145" - fy="12.493138" - fx="12.071323" - cy="12.493138" - cx="12.071323" - gradientUnits="userSpaceOnUse" - id="radialGradient5989" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="21.041553" - x2="-22.252472" - y1="30.057165" - x1="-25.176178" - id="linearGradient6007" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="22.661524" - x2="-22.113543" - y1="30.057165" - x1="-25.176178" - gradientUnits="userSpaceOnUse" - id="linearGradient6011" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="22.661524" - x2="-22.113543" - y1="28.337734" - x1="-22.822565" - gradientUnits="userSpaceOnUse" - id="linearGradient6015" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="21.336346" - x2="-21.962101" - y1="15.649428" - x1="-21.658581" - gradientUnits="userSpaceOnUse" - id="linearGradient6019" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <inkscape:perspective - id="perspective361" - inkscape:persp3d-origin="24.000001 : 16 : 1" - inkscape:vp_z="48 : 23.999999 : 1" - inkscape:vp_y="0 : 999.99997 : 0" - inkscape:vp_x="0 : 23.999999 : 1" - sodipodi:type="inkscape:persp3d" /> - <linearGradient - y2="-436.83109" - x2="288.89954" - y1="-441.23294" - x1="284.80219" - gradientUnits="userSpaceOnUse" - id="linearGradient10670" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.70703" - x2="289.76562" - y1="-439.48358" - x1="286.66589" - gradientUnits="userSpaceOnUse" - id="linearGradient10668" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-431.91833" - x2="279.97546" - y1="-437.10501" - x1="275.94193" - gradientUnits="userSpaceOnUse" - id="linearGradient10666" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.4429" - x2="289.39124" - y1="-439.939" - x1="285.94086" - gradientUnits="userSpaceOnUse" - id="linearGradient10664" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.14453" - x2="289.85379" - y1="-441.29074" - x1="286.51172" - gradientUnits="userSpaceOnUse" - id="linearGradient10662" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.32199" - x2="289.67633" - y1="-439.75281" - x1="287.5173" - gradientUnits="userSpaceOnUse" - id="linearGradient10660" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-431.96991" - x2="285.02859" - y1="-441.05182" - x1="271.0217" - gradientUnits="userSpaceOnUse" - id="linearGradient10658" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.83109" - x2="288.89954" - y1="-441.23294" - x1="284.80219" - gradientUnits="userSpaceOnUse" - id="linearGradient10656" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.70703" - x2="289.76562" - y1="-439.48358" - x1="286.66589" - gradientUnits="userSpaceOnUse" - id="linearGradient10654" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-431.91833" - x2="279.97546" - y1="-437.10501" - x1="275.94193" - gradientUnits="userSpaceOnUse" - id="linearGradient10652" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.4429" - x2="289.39124" - y1="-439.939" - x1="285.94086" - gradientUnits="userSpaceOnUse" - id="linearGradient10650" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.14453" - x2="289.85379" - y1="-441.29074" - x1="286.51172" - gradientUnits="userSpaceOnUse" - id="linearGradient10648" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.32199" - x2="289.67633" - y1="-439.75281" - x1="287.5173" - gradientUnits="userSpaceOnUse" - id="linearGradient10646" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-431.96991" - x2="285.02859" - y1="-441.05182" - x1="271.0217" - gradientUnits="userSpaceOnUse" - id="linearGradient10644" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-96.544556" - x2="-153.0981" - y1="-100.53421" - x1="-156.29044" - gradientUnits="userSpaceOnUse" - id="linearGradient10642" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-4.4493785" - x2="-34.700153" - y1="-37.550461" - x1="-27.006643" - gradientUnits="userSpaceOnUse" - id="linearGradient2861" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-24.88446" - x2="-35.652866" - y1="-1.2491118" - x1="-25.137094" - gradientUnits="userSpaceOnUse" - id="linearGradient2859" - xlink:href="#linearGradient2527" - inkscape:collect="always" /> - <linearGradient - y2="-8.3080902" - x2="4.9625983" - y1="-43.997444" - x1="11.149398" - gradientUnits="userSpaceOnUse" - id="linearGradient2857" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3347" - inkscape:collect="always"> - <stop - id="stop3349" - offset="0" - style="stop-color:#edd400;stop-opacity:1;" /> - <stop - id="stop3351" - offset="1" - style="stop-color:#edd400;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient2527" - inkscape:collect="always"> - <stop - id="stop2529" - offset="0" - style="stop-color:#fcaf3e;stop-opacity:1;" /> - <stop - id="stop2531" - offset="1" - style="stop-color:#fcaf3e;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient2500" - inkscape:collect="always"> - <stop - id="stop2502" - offset="0" - style="stop-color:#fce94f;stop-opacity:1;" /> - <stop - id="stop2504" - offset="1" - style="stop-color:#fce94f;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient2392" - inkscape:collect="always"> - <stop - id="stop2394" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop2396" - offset="1" - style="stop-color:#eeeeec;stop-opacity:0;" /> - </linearGradient> - <linearGradient - gradientTransform="translate(-1.608757,3.097272)" - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientUnits="userSpaceOnUse" - id="linearGradient2263" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(3.55502,0.968578)" - gradientUnits="userSpaceOnUse" - id="linearGradient2267" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(9.263651,3.495228)" - gradientUnits="userSpaceOnUse" - id="linearGradient2271" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(8.497184,-2.330824)" - gradientUnits="userSpaceOnUse" - id="linearGradient2275" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(14.4634,2.014073)" - gradientUnits="userSpaceOnUse" - id="linearGradient2279" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,-0.197462,7.612867)" - gradientUnits="userSpaceOnUse" - id="linearGradient2283" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.284317,0,0,1,14.61983,4.452335)" - gradientUnits="userSpaceOnUse" - id="linearGradient2287" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,14.8761,8.569976)" - gradientUnits="userSpaceOnUse" - id="linearGradient2291" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,-5.687359,1.810269)" - gradientUnits="userSpaceOnUse" - id="linearGradient2295" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,6.38386,6.500432)" - gradientUnits="userSpaceOnUse" - id="linearGradient2299" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(1.707748,-5.784024)" - gradientUnits="userSpaceOnUse" - id="linearGradient2303" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(-0.976307,0,0,1,53.94753,8.563694)" - gradientUnits="userSpaceOnUse" - id="linearGradient2311" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(16.14002,24.6642)" - gradientUnits="userSpaceOnUse" - id="linearGradient2350" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(-0.932144,25.8724)" - gradientUnits="userSpaceOnUse" - id="linearGradient2352" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(5.356636,23.8687)" - gradientUnits="userSpaceOnUse" - id="linearGradient2354" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(11.19027,26.52035)" - gradientUnits="userSpaceOnUse" - id="linearGradient2356" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(10.30638,19.27251)" - gradientUnits="userSpaceOnUse" - id="linearGradient2358" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,0.229156,30.76299)" - gradientUnits="userSpaceOnUse" - id="linearGradient2360" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.284317,0,0,1,16.67145,27.22746)" - gradientUnits="userSpaceOnUse" - id="linearGradient2362" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,17.05272,31.4701)" - gradientUnits="userSpaceOnUse" - id="linearGradient2364" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,-4.010744,24.9604)" - gradientUnits="userSpaceOnUse" - id="linearGradient2366" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,8.185476,29.52556)" - gradientUnits="userSpaceOnUse" - id="linearGradient2368" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(4.207586,21.30544)" - gradientUnits="userSpaceOnUse" - id="linearGradient2370" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(-0.976307,0,0,1,56.12415,32.08882)" - gradientUnits="userSpaceOnUse" - id="linearGradient2372" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - gradientTransform="matrix(0.992367,0,0,0.990713,1.128541,5.404075)" - gradientUnits="userSpaceOnUse" - y2="13.802798" - x2="41.403877" - y1="13.802798" - x1="6.6651416" - id="linearGradient2398" - xlink:href="#linearGradient2392" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(14.4634,2.014073)" - gradientUnits="userSpaceOnUse" - id="linearGradient2426" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(8.497184,-2.330824)" - gradientUnits="userSpaceOnUse" - id="linearGradient2428" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(-1.608757,3.097272)" - gradientUnits="userSpaceOnUse" - id="linearGradient2430" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(3.55502,0.968578)" - gradientUnits="userSpaceOnUse" - id="linearGradient2432" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(9.263651,3.495228)" - gradientUnits="userSpaceOnUse" - id="linearGradient2434" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,-0.197462,7.612867)" - gradientUnits="userSpaceOnUse" - id="linearGradient2436" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.284317,0,0,1,14.61983,4.452335)" - gradientUnits="userSpaceOnUse" - id="linearGradient2438" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,14.8761,8.569976)" - gradientUnits="userSpaceOnUse" - id="linearGradient2440" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,-5.687359,1.810269)" - gradientUnits="userSpaceOnUse" - id="linearGradient2442" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,6.38386,6.500432)" - gradientUnits="userSpaceOnUse" - id="linearGradient2444" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(-0.976307,0,0,1,53.94753,8.563694)" - gradientUnits="userSpaceOnUse" - id="linearGradient2446" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="13.802798" - x2="41.403877" - y1="13.802798" - x1="6.6651416" - gradientTransform="matrix(0.992367,0,0,0.990713,4.378541,10.65407)" - gradientUnits="userSpaceOnUse" - id="linearGradient2451" - xlink:href="#linearGradient2392" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,9.63386,11.75043)" - gradientUnits="userSpaceOnUse" - id="linearGradient2457" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,-2.437359,7.060269)" - gradientUnits="userSpaceOnUse" - id="linearGradient2460" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,18.1261,13.81998)" - gradientUnits="userSpaceOnUse" - id="linearGradient2463" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,3.052538,12.86287)" - gradientUnits="userSpaceOnUse" - id="linearGradient2469" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(12.51365,8.745228)" - gradientUnits="userSpaceOnUse" - id="linearGradient2472" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(6.80502,6.218578)" - gradientUnits="userSpaceOnUse" - id="linearGradient2475" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(1.641243,8.347272)" - gradientUnits="userSpaceOnUse" - id="linearGradient2478" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(0.842481,-3.998086)" - gradientUnits="userSpaceOnUse" - id="linearGradient2483" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="9" - x2="53.75" - y1="-21.75" - x1="37" - id="linearGradient2506" - xlink:href="#linearGradient2500" - inkscape:collect="always" /> - <linearGradient - gradientTransform="matrix(0.889091,0,0,0.617886,-4.771368,39.81402)" - y2="9" - x2="53.75" - y1="-21.75" - x1="37" - gradientUnits="userSpaceOnUse" - id="linearGradient2509" - xlink:href="#linearGradient2500" - inkscape:collect="always" /> - <linearGradient - y2="9" - x2="53.75" - y1="-18.407482" - x1="38.857941" - gradientTransform="matrix(0.605509,0,0,0.710542,-0.224971,42.195)" - gradientUnits="userSpaceOnUse" - id="linearGradient2513" - xlink:href="#linearGradient2500" - inkscape:collect="always" /> - <linearGradient - y2="9" - x2="53.75" - y1="-21.75" - x1="37" - gradientTransform="matrix(0.414169,0,0,0.778853,-1.910724,36.8785)" - gradientUnits="userSpaceOnUse" - id="linearGradient2517" - xlink:href="#linearGradient2500" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(17.33814,3.415985)" - gradientUnits="userSpaceOnUse" - id="linearGradient2537" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(13.40064,1.353485)" - gradientUnits="userSpaceOnUse" - id="linearGradient2541" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(-7.499805,1.708617)" - gradientUnits="userSpaceOnUse" - id="linearGradient2555" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(-0.72683,2.481141)" - gradientUnits="userSpaceOnUse" - id="linearGradient2563" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="46.09293" - x2="29.75" - y1="29.115711" - x1="23.303862" - id="linearGradient3353" - xlink:href="#linearGradient3347" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(13.40064,1.353485)" - gradientUnits="userSpaceOnUse" - id="linearGradient3366" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(1.641243,8.347272)" - gradientUnits="userSpaceOnUse" - id="linearGradient3368" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(6.80502,6.218578)" - gradientUnits="userSpaceOnUse" - id="linearGradient3370" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(12.51365,8.745228)" - gradientUnits="userSpaceOnUse" - id="linearGradient3372" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,3.052538,12.86287)" - gradientUnits="userSpaceOnUse" - id="linearGradient3374" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,18.1261,13.81998)" - gradientUnits="userSpaceOnUse" - id="linearGradient3376" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,-2.437359,7.060269)" - gradientUnits="userSpaceOnUse" - id="linearGradient3378" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,9.63386,11.75043)" - gradientUnits="userSpaceOnUse" - id="linearGradient3380" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,0.795022,6.093572)" - gradientUnits="userSpaceOnUse" - id="linearGradient3383" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,-11.2762,1.403411)" - gradientUnits="userSpaceOnUse" - id="linearGradient3386" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,9.287262,8.163122)" - gradientUnits="userSpaceOnUse" - id="linearGradient3389" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,-5.7863,7.206012)" - gradientUnits="userSpaceOnUse" - id="linearGradient3392" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(3.674812,3.08837)" - gradientUnits="userSpaceOnUse" - id="linearGradient3395" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(-2.033818,0.56172)" - gradientUnits="userSpaceOnUse" - id="linearGradient3398" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(-7.197595,2.690414)" - gradientUnits="userSpaceOnUse" - id="linearGradient3401" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(4.561802,-4.303373)" - gradientUnits="userSpaceOnUse" - id="linearGradient3405" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2916" - x1="-27.006643" - y1="-37.550461" - x2="-34.700153" - y2="-4.4493785" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2912" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(57.97693,-10.56876)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2910" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.976307,0,0,1,123.1162,-5.446357)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2908" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106619,0,0,1,0.795022,6.093572)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,-11.2762,1.403411)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2904" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.834148,0,0,1,9.287262,8.163122)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2902" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.751222,0,0,1,-5.7863,7.206012)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2900" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(3.674812,3.08837)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2898" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.033818,0.56172)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2896" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-7.197595,2.690414)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2892" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.284317,0,0,1,79.36909,-3.193747)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2890" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,56.25514,-12.39388)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2888" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(88.49344,-9.697877)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2886" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(4.561802,-4.303373)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2884" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-7.197595,2.690414)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2882" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.033818,0.56172)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2880" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(3.674812,3.08837)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2878" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.751222,0,0,1,-5.7863,7.206012)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2876" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.834148,0,0,1,9.287262,8.163122)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2874" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,-11.2762,1.403411)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2872" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106619,0,0,1,0.795022,6.093572)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2870" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106619,0,0,1,9.63386,11.75043)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2868" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,-2.437359,7.060269)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2866" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.834148,0,0,1,18.1261,13.81998)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2864" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.751222,0,0,1,3.052538,12.86287)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2862" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(12.51365,8.745228)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2860" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(6.80502,6.218578)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2858" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.641243,8.347272)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2856" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(13.40064,1.353485)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2852" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.72683,2.481141)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2850" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-7.499805,1.708617)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2848" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(13.40064,1.353485)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2846" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(17.33814,3.415985)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2834" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0.842481,-3.998086)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2832" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.641243,8.347272)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2830" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(6.80502,6.218578)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2828" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(12.51365,8.745228)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2826" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.751222,0,0,1,3.052538,12.86287)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2824" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.834148,0,0,1,18.1261,13.81998)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2822" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,-2.437359,7.060269)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2820" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106619,0,0,1,9.63386,11.75043)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2814" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.976307,0,0,1,53.94753,8.563694)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2812" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106619,0,0,1,6.38386,6.500432)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2810" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,-5.687359,1.810269)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2808" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.834148,0,0,1,14.8761,8.569976)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2806" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.284317,0,0,1,14.61983,4.452335)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2804" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.751222,0,0,1,-0.197462,7.612867)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2802" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(9.263651,3.495228)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2800" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(3.55502,0.968578)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2798" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-1.608757,3.097272)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2796" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(8.497184,-2.330824)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2794" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(14.4634,2.014073)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2790" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.976307,0,0,1,56.12415,32.08882)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2788" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(4.207586,21.30544)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2786" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106619,0,0,1,8.185476,29.52556)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2784" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,-4.010744,24.9604)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2782" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.834148,0,0,1,17.05272,31.4701)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2780" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.284317,0,0,1,16.67145,27.22746)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2778" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.751222,0,0,1,0.229156,30.76299)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2776" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(10.30638,19.27251)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2774" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(11.19027,26.52035)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2772" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(5.356636,23.8687)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2770" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.932144,25.8724)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2768" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(16.14002,24.6642)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2766" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.976307,0,0,1,53.94753,8.563694)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2764" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.707748,-5.784024)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2762" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106619,0,0,1,6.38386,6.500432)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2760" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,-5.687359,1.810269)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2758" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.834148,0,0,1,14.8761,8.569976)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2756" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.284317,0,0,1,14.61983,4.452335)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2754" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.751222,0,0,1,-0.197462,7.612867)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2752" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(14.4634,2.014073)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2750" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(8.497184,-2.330824)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2748-5" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(9.263651,3.495228)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2746" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(3.55502,0.968578)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2744" - gradientUnits="userSpaceOnUse" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" - gradientTransform="translate(-1.608757,3.097272)" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(41.44608,-6.716447)" - gradientUnits="userSpaceOnUse" - id="linearGradient4434" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(46.60985,-8.845141)" - gradientUnits="userSpaceOnUse" - id="linearGradient4436" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(52.31848,-6.318491)" - gradientUnits="userSpaceOnUse" - id="linearGradient4438" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,42.85737,-2.200849)" - gradientUnits="userSpaceOnUse" - id="linearGradient4440" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,57.93093,-1.243739)" - gradientUnits="userSpaceOnUse" - id="linearGradient4442" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,37.36747,-8.00345)" - gradientUnits="userSpaceOnUse" - id="linearGradient4444" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,49.43869,-3.313289)" - gradientUnits="userSpaceOnUse" - id="linearGradient4446" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(41.44608,-6.716447)" - gradientUnits="userSpaceOnUse" - id="linearGradient4464" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(46.60985,-8.845141)" - gradientUnits="userSpaceOnUse" - id="linearGradient4466" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(52.31848,-6.318491)" - gradientUnits="userSpaceOnUse" - id="linearGradient4468" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,42.85737,-2.200849)" - gradientUnits="userSpaceOnUse" - id="linearGradient4470" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,57.93093,-1.243739)" - gradientUnits="userSpaceOnUse" - id="linearGradient4472" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,37.36747,-8.00345)" - gradientUnits="userSpaceOnUse" - id="linearGradient4474" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,49.43869,-3.313289)" - gradientUnits="userSpaceOnUse" - id="linearGradient4476" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(41.44608,-6.716447)" - gradientUnits="userSpaceOnUse" - id="linearGradient4538" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(46.60985,-8.845141)" - gradientUnits="userSpaceOnUse" - id="linearGradient4540" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(52.31848,-6.318491)" - gradientUnits="userSpaceOnUse" - id="linearGradient4542" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,42.85737,-2.200849)" - gradientUnits="userSpaceOnUse" - id="linearGradient4544" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,57.93093,-1.243739)" - gradientUnits="userSpaceOnUse" - id="linearGradient4546" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,37.36747,-8.00345)" - gradientUnits="userSpaceOnUse" - id="linearGradient4548" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,49.43869,-3.313289)" - gradientUnits="userSpaceOnUse" - id="linearGradient4550" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="32.443653" - x2="47.342175" - y1="32.443653" - x1="17.18132" - gradientTransform="matrix(0.927204,0,0,0.882329,2.105168,3.373861)" - gradientUnits="userSpaceOnUse" - id="linearGradient4552" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="32.443653" - x2="47.342175" - y1="32.443653" - x1="17.18132" - gradientTransform="matrix(0.926905,0,0,0.881886,2.081767,3.39039)" - gradientUnits="userSpaceOnUse" - id="linearGradient2276" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="32.443653" - x2="47.342175" - y1="32.443653" - x1="17.18132" - gradientTransform="matrix(0.93123,0,0,0.881886,-13.99458,-6.609596)" - gradientUnits="userSpaceOnUse" - id="linearGradient2289" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - id="linearGradient3025" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3029" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3033" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3037" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3041" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3045" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3049" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3053" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - gradientTransform="translate(3.4375,-3)" - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3056" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(1.333333,0,0,1,-6.911612,2.585786)" - gradientUnits="userSpaceOnUse" - id="linearGradient3060" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="translate(-3.146447,0.08838835)" - gradientUnits="userSpaceOnUse" - id="linearGradient3064" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.888889,0,0,0.888889,13.66667,3)" - gradientUnits="userSpaceOnUse" - id="linearGradient3068" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.888889,0,0,0.888889,15.66667,8)" - gradientUnits="userSpaceOnUse" - id="linearGradient3072" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.813402,0,0,0.813402,-0.698434,10.27557)" - gradientUnits="userSpaceOnUse" - id="linearGradient3076" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.613903,0,0,0.613903,17.68234,16.9948)" - gradientUnits="userSpaceOnUse" - id="linearGradient3080" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="translate(3.4375,-3)" - gradientUnits="userSpaceOnUse" - id="linearGradient3107" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(1.333333,0,0,1,-6.911612,2.585786)" - gradientUnits="userSpaceOnUse" - id="linearGradient3109" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="translate(-3.146447,0.08838835)" - gradientUnits="userSpaceOnUse" - id="linearGradient3111" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.888889,0,0,0.888889,13.66667,3)" - gradientUnits="userSpaceOnUse" - id="linearGradient3113" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.888889,0,0,0.888889,15.66667,8)" - gradientUnits="userSpaceOnUse" - id="linearGradient3115" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.813402,0,0,0.813402,-0.698434,10.27557)" - gradientUnits="userSpaceOnUse" - id="linearGradient3117" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.613903,0,0,0.613903,17.68234,16.9948)" - gradientUnits="userSpaceOnUse" - id="linearGradient3119" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-431.96991" - x2="285.02859" - y1="-441.05182" - x1="271.0217" - gradientUnits="userSpaceOnUse" - id="linearGradient10658-2" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.32199" - x2="289.67633" - y1="-439.75281" - x1="287.5173" - gradientUnits="userSpaceOnUse" - id="linearGradient10660-1" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.14453" - x2="289.85379" - y1="-441.29074" - x1="286.51172" - gradientUnits="userSpaceOnUse" - id="linearGradient10662-9" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.4429" - x2="289.39124" - y1="-439.939" - x1="285.94086" - gradientUnits="userSpaceOnUse" - id="linearGradient10664-4" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-431.91833" - x2="279.97546" - y1="-437.10501" - x1="275.94193" - gradientUnits="userSpaceOnUse" - id="linearGradient10666-7" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.70703" - x2="289.76562" - y1="-439.48358" - x1="286.66589" - gradientUnits="userSpaceOnUse" - id="linearGradient10668-8" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.83109" - x2="288.89954" - y1="-441.23294" - x1="284.80219" - gradientUnits="userSpaceOnUse" - id="linearGradient10670-4" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="52.118945" - inkscape:cy="-1.9766715" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1600" - inkscape:window-height="840" - inkscape:window-x="0" - inkscape:window-y="31" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - units="px" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-272.35814,-115.42797)"> - <g - id="g7794" - transform="matrix(1.5956518,0,0,1.7512843,-125.28919,902.24817)"> - <path - sodipodi:nodetypes="ccsscsssscsscc" - id="path7796" - d="m 280.5,-445.5 c -2.27083,0 -4.10991,1.55028 -4.71875,3.625 -0.69323,-0.36383 -1.44451,-0.625 -2.28125,-0.625 -2.76,0 -5.00001,2.23999 -5,5 0,0.57893 0.16252,1.1077 0.34375,1.625 -1.37347,0.77074 -2.34375,2.189 -2.34375,3.875 0,2.484 2.016,4.50001 4.5,4.5 0.17713,0 18.82287,0 19,0 2.48399,0 4.5,-2.016 4.5,-4.5 0,-1.686 -0.97028,-3.10426 -2.34375,-3.875 0.18124,-0.51729 0.34375,-1.04608 0.34375,-1.625 0,-2.76 -2.24,-4.99999 -5,-5 -0.83674,0 -1.58802,0.26117 -2.28125,0.625 -0.60884,-2.07472 -2.44792,-3.625 -4.71875,-3.625 z" - style="fill:#c4c5c2;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsscsssscsscc" - id="path7798" - d="m 280.5,-445 c -2.18972,0 -3.7236,1.33577 -4.39555,3.84352 -0.66846,-0.34362 -1.54759,-0.83335 -2.35445,-0.83335 -2.71651,0 -4.75514,1.93882 -4.75513,4.54554 0,0.54677 0.26721,1.33344 0.44196,1.82201 -1.32443,0.72795 -2.43683,1.8905 -2.43683,3.37255 0,2.34605 1.54617,4.25009 4.33928,4.25009 0.17081,0 18.15064,0 18.32144,0 2.77101,0 4.33928,-1.90404 4.33928,-4.25009 0,-1.59237 -1.1124,-2.66669 -2.43683,-3.39464 0.17476,-0.48856 0.46407,-1.25316 0.46407,-1.79992 0,-2.60671 -2.11581,-4.56763 -4.77723,-4.56764 -0.80687,0 -1.64181,0.48974 -2.31027,0.83336 C 284.29089,-443.60011 282.68973,-445 280.5,-445 Z" - style="opacity:1;fill:url(#linearGradient10644);fill-opacity:1;stroke:none;stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <g - id="g7800"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7802" - transform="matrix(1.056604,0,0,1.056604,-24.19818,21.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10646);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7804" - transform="matrix(1.056604,0,0,1.056604,-24.19818,21.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <rect - y="-438" - x="271" - height="9" - width="20" - id="rect7806" - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <circle - transform="matrix(0.90566,0,0,0.90566,9.830195,-35.68869)" - id="path7808" - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <g - id="g7810"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7812" - transform="matrix(1.056604,0,0,1.056604,-17.19811,24.86321)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10648);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7814" - transform="matrix(1.056604,0,0,1.056604,-17.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <g - id="g7816"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7818" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10650);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7820" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <g - transform="translate(-1,0)" - id="g7822"> - <path - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 280.46875,-440.96875 c -3.57938,0 -6.46875,2.92063 -6.46875,6.5 0,2.37068 1.34943,4.33779 3.25,5.46875 l 6.46875,0 c 1.90057,-1.13096 3.25,-3.12931 3.25,-5.5 0,-3.57938 -2.92063,-6.46875 -6.5,-6.46875 z" - id="path7824" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:url(#linearGradient10652);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 280.5,-441 c -3.588,0 -6.5,2.91201 -6.5,6.5 0,2.3764 1.34485,4.36632 3.25,5.5 l 6.5,0 c 1.90515,-1.13368 3.25,-3.1236 3.25,-5.5 0,-3.588 -2.912,-6.49999 -6.5,-6.5 z" - id="path7826" - inkscape:connector-curvature="0" /> - </g> - <circle - transform="matrix(0.90566,0,0,0.90566,9.830296,-35.68884)" - id="path7828" - style="opacity:1;fill:url(#linearGradient10654);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <path - sodipodi:nodetypes="ccss" - id="path7830" - d="m 292.9564,-437.33396 c -0.002,2.68456 -3.26926,3.71395 -3.26926,3.71395 0,0 2.34874,-1.62595 2.33685,-3.70501 0,0 0.93241,-0.009 0.93241,-0.009 z" - style="fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <g - transform="matrix(1.142857,0,0,1.142857,-28.57139,67.00008)" - id="g7832"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7834" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10656);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7836" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - </g> - <g - inkscape:label="Layer 1" - id="layer1-5" - transform="translate(283.90172,112.03531)"> - <ellipse - transform="matrix(1,0,0,1.243244,0,-10.27241)" - id="path4112" - style="fill:url(#radialGradient4120);fill-opacity:1;stroke:none;stroke-opacity:1" - cx="24.849752" - cy="38.908627" - rx="20.203051" - ry="7.4751287" /> - <path - id="path3214" - d="m 43.959853,23.485499 c 0,10.709718 -8.682103,19.391723 -19.390348,19.391723 -10.709226,0 -19.3908387,-8.682103 -19.3908387,-19.391723 0,-10.709227 8.6816127,-19.3903473 19.3908387,-19.3903473 10.708245,0 19.390348,8.6811203 19.390348,19.3903473 l 0,0 z" - style="fill:url(#radialGradient3968);fill-opacity:1;fill-rule:nonzero;stroke:#39396c;stroke-miterlimit:4;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <g - transform="matrix(0.982371,0,0,0.982371,0.121079,0.232914)" - style="opacity:1;fill:#204a87;fill-opacity:0.71345029;fill-rule:nonzero;stroke:none;stroke-miterlimit:4" - id="g4136"> - <g - style="fill:#204a87" - id="g4138"> - <g - style="fill:#204a87" - id="g4142"> - <path - style="fill:#204a87" - id="path4144" - d="m 44.0713,20.7144 c 0,0.2627 0,0 0,0 l -0.5449,0.6172 c -0.334,-0.3936 -0.709,-0.7246 -1.0898,-1.0703 l -0.8359,0.123 -0.7637,-0.8633 0,1.0684 0.6543,0.4951 0.4355,0.4932 0.582,-0.6582 c 0.1465,0.2744 0.291,0.5488 0.4365,0.8232 l 0,0.8223 -0.6553,0.7402 -1.1992,0.8232 -0.9082,0.9063 -0.582,-0.6602 0.291,-0.7402 -0.5811,-0.6582 -0.9814,-2.0977 -0.8359,-0.9453 -0.2188,0.2461 0.3281,1.1934 0.6172,0.6992 c 0.3525,1.0176 0.7012,1.9902 1.1641,2.9629 0.7178,0 1.3945,-0.0762 2.1074,-0.166 l 0,0.5762 -0.8721,2.1392 -0.7998,0.9043 -0.6543,1.4004 c 0,0.7676 0,1.5352 0,2.3027 l 0.2188,0.9063 -0.3633,0.4102 -0.8008,0.4941 -0.8359,0.6992 0.6914,0.7813 -0.9453,0.8242 0.1816,0.5332 -1.418,1.6055 -0.9443,0 -0.7998,0.4941 -0.5098,0 0,-0.6582 -0.2168,-1.3184 c -0.2813,-0.8262 -0.5742,-1.6465 -0.8721,-2.4668 0,-0.6055 0.0361,-1.2051 0.0723,-1.8105 l 0.3643,-0.8223 -0.5098,-0.9883 0.0371,-1.3574 -0.6914,-0.7813 0.3457,-1.1309 -0.5625,-0.6382 -0.9824,0 -0.3271,-0.3701 -0.9814,0.6177 -0.3994,-0.4536 -0.9092,0.7817 c -0.6172,-0.6997 -1.2354,-1.3989 -1.8535,-2.0981 l -0.7266,-1.7285 0.6543,-0.9863 -0.3633,-0.4111 0.7988,-1.8936 c 0.6563,-0.8164 1.3418,-1.5996 2.0352,-2.3857 l 1.2363,-0.3291 1.3809,-0.1641 0.9453,0.2471 1.3447,1.3564 0.4727,-0.5342 0.6533,-0.082 1.2363,0.4111 0.9453,0 0.6543,-0.5762 0.291,-0.4111 -0.6553,-0.4111 -1.0908,-0.082 c -0.3027,-0.4199 -0.584,-0.8613 -0.9434,-1.2344 l -0.3643,0.1641 -0.1455,1.0703 -0.6543,-0.7402 -0.1445,-0.8242 -0.7266,-0.5742 -0.292,0 0.7275,0.8223 -0.291,0.7402 -0.5811,0.1641 0.3633,-0.7402 -0.6553,-0.3281 -0.5801,-0.6582 -1.0918,0.2461 -0.1445,0.3281 -0.6543,0.4121 -0.3633,0.9053 -0.9082,0.4521 -0.4004,-0.4521 -0.4355,0 0,-1.4814 0.9453,-0.4941 0.7266,0 -0.1465,-0.5752 -0.5801,-0.5762 0.9805,-0.2061 0.5449,-0.6162 0.4355,-0.7412 0.8008,0 -0.2188,-0.5752 0.5098,-0.3291 0,0.6582 1.0898,0.2461 1.0898,-0.9043 0.0732,-0.4121 0.9443,-0.6577 c -0.3418,0.0425 -0.6836,0.0737 -1.0176,0.1646 l 0,-0.7411 0.3633,-0.8228 -0.3633,0 -0.7984,0.7402 -0.2188,0.4116 0.2188,0.5767 -0.3643,0.9863 -0.5811,-0.3291 -0.5078,-0.5752 -0.8008,0.5752 -0.291,-1.3159 1.3809,-0.9048 0,-0.4941 0.873,-0.5757 1.3809,-0.3296 0.9453,0.3296 1.7441,0.3291 -0.4355,0.4932 -0.9453,0 0.9453,0.9873 0.7266,-0.8223 0.2207,-0.3618 c 0,0 2.7871,2.498 4.3799,5.2305 1.5928,2.7334 2.3408,5.9551 2.3408,6.6094 z" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4146"> - <g - style="fill:#204a87" - id="g4150"> - <path - style="fill:#204a87" - id="path4152" - d="m 26.0703,9.2363 -0.0732,0.4932 0.5098,0.3291 0.8711,-0.5757 -0.4355,-0.4937 -0.582,0.3296 -0.29,-0.0825" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4154"> - <g - style="fill:#204a87" - id="g4158"> - <path - style="fill:#204a87" - id="path4160" - d="m 26.8701,5.8633 -1.8906,-0.7407 -2.1797,0.2466 -2.6904,0.7402 -0.5088,0.4941 1.6719,1.1514 0,0.6582 -0.6543,0.6582 0.873,1.729 0.5801,-0.3301 0.7285,-1.1514 c 1.123,-0.3472 2.1299,-0.7407 3.1973,-1.2344 l 0.873,-2.2212" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4162"> - <g - style="fill:#204a87" - id="g4166"> - <path - style="fill:#204a87" - id="path4168" - d="m 28.833,12.7749 -0.291,-0.7412 -0.5098,0.165 0.1465,0.9043 0.6543,-0.3281" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4170"> - <g - style="fill:#204a87" - id="g4174"> - <path - style="fill:#204a87" - id="path4176" - d="m 29.123,12.6089 -0.1455,0.9883 0.7998,-0.165 0.5811,-0.5752 -0.5088,-0.4941 C 29.6787,11.9078 29.4824,11.483 29.2685,11.0465 l -0.4355,0 0,0.4932 0.29,0.3291 0,0.7402" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4178"> - <g - style="fill:#204a87" - id="g4182"> - <path - style="fill:#204a87" - id="path4184" - d="m 18.3652,28.2422 -0.582,-1.1523 -1.0903,-0.2466 -0.5815,-1.5625 -1.4536,0.1641 -1.2354,-0.9043 -1.3091,1.1514 0,0.1816 c -0.396,-0.1143 -0.8828,-0.1299 -1.2354,-0.3467 l -0.291,-0.8223 0,-0.9053 -0.8721,0.082 c 0.0728,-0.5762 0.145,-1.1514 0.2183,-1.7275 l -0.5093,0 -0.5083,0.6582 -0.5093,0.2461 -0.7271,-0.4102 -0.0728,-0.9053 0.1455,-0.9873 1.0908,-0.8223 0.8721,0 0.145,-0.4941 1.0903,0.2461 0.7998,0.9883 0.1455,-1.6465 1.3813,-1.1514 0.5088,-1.2344 1.0176,-0.4111 0.5815,-0.8223 1.3081,-0.248 0.6548,-0.9863 c -0.6543,0 -1.3086,0 -1.9629,0 l 1.2358,-0.5762 0.8716,0 1.2363,-0.4121 0.1455,-0.4922 -0.4365,-0.4121 -0.5088,-0.165 0.1455,-0.4932 -0.3633,-0.7402 -0.8726,0.3281 0.1455,-0.6577 -1.0176,-0.5762 -0.7993,1.3979 0.0723,0.4941 -0.7993,0.3301 -0.5093,1.0693 -0.2178,-0.9873 -1.3813,-0.5762 -0.2183,-0.7402 1.8174,-1.0703 0.7998,-0.7402 0.0728,-0.9048 -0.436,-0.2471 -0.5815,-0.0825 -0.3633,0.9053 c 0,0 -0.6079,0.1191 -0.7642,0.1577 -1.9961,1.8394 -6.0293,5.8101 -6.9663,13.3062 0.0371,0.1738 0.6792,1.1816 0.6792,1.1816 l 1.5264,0.9043 1.5264,0.4121 0.6548,0.8232 1.0171,0.7402 0.5815,-0.082 0.436,0.1963 0,0.1328 -0.5811,1.563 -0.4365,0.6582 0.1455,0.3301 -0.3633,1.2324 1.3086,2.3867 1.3081,1.1523 0.582,0.8223 -0.0732,1.7285 0.4365,0.9863 -0.4365,1.8926 c 0,0 -0.0342,-0.0117 0.0215,0.1777 0.0562,0.1895 2.3291,1.4512 2.4736,1.3438 0.144,-0.1094 0.2671,-0.2051 0.2671,-0.2051 l -0.145,-0.4102 0.5811,-0.5762 0.2183,-0.5762 0.9453,-0.3301 0.7266,-1.8105 -0.2178,-0.4922 0.5078,-0.7402 1.0908,-0.248 0.582,-1.3164 -0.1455,-1.6445 0.8721,-1.2344 0.1455,-1.2344 C 20.7331,29.4607 19.5495,28.8513 18.365,28.242" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4186"> - <g - style="fill:#204a87" - id="g4190"> - <path - style="fill:#204a87" - id="path4192" - d="m 16.7656,9.5649 0.7266,0.4937 0.582,0 0,-0.5757 -0.7266,-0.3291 -0.582,0.4111" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4194"> - <g - style="fill:#204a87" - id="g4198"> - <path - style="fill:#204a87" - id="path4200" - d="m 14.876,8.9072 -0.3638,0.9048 0.7271,0 0.3638,-0.8228 C 15.9166,8.7675 16.2286,8.5444 16.5479,8.331 l 0.7271,0.2471 c 0.4844,0.3291 0.9688,0.6582 1.4536,0.9868 L 19.4561,8.9072 18.6558,8.5781 18.292,7.8374 16.9111,7.6728 16.8383,7.2612 16.184,7.4262 15.8936,8.002 15.5298,7.2613 l -0.145,0.3291 0.0728,0.8228 -0.5816,0.494" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4202"> - <g - id="g4204" - style="opacity:0.75;fill:#204a87"> - <path - style="fill:#204a87" - d="" - id="path4206" - inkscape:connector-curvature="0" /> - </g> - <g - style="fill:#204a87" - id="g4208"> - <path - style="fill:#204a87" - d="" - id="path4210" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4212"> - <g - id="g4214" - style="opacity:0.75;fill:#204a87"> - <path - style="fill:#204a87" - d="" - id="path4216" - inkscape:connector-curvature="0" /> - </g> - <g - style="fill:#204a87" - id="g4218"> - <path - style="fill:#204a87" - d="" - id="path4220" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4222"> - <g - style="fill:#204a87" - id="g4226"> - <path - style="fill:#204a87" - id="path4228" - d="M 17.4922,6.8496 17.856,6.521 18.5831,6.3564 c 0.498,-0.2422 0.998,-0.4053 1.5264,-0.5762 l -0.29,-0.4937 -0.9385,0.1348 -0.4434,0.4419 -0.731,0.106 -0.6499,0.3052 -0.3159,0.1528 -0.1929,0.2583 0.9443,0.1641" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4230"> - <g - style="fill:#204a87" - id="g4234"> - <path - style="fill:#204a87" - id="path4236" - d="m 18.7285,14.6665 0.4365,-0.6582 -0.6548,-0.4932 0.2183,1.1514" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <path - id="path4122" - d="m 42.975093,23.485534 c 0,10.16582 -8.241178,18.406906 -18.4056,18.406906 -10.165354,0 -18.4060669,-8.241179 -18.4060669,-18.406906 0,-10.165354 8.2407129,-18.4056 18.4060669,-18.4056 10.164422,0 18.4056,8.240246 18.4056,18.4056 l 0,0 z" - style="opacity:0.39560439;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient4132);stroke-miterlimit:4;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <ellipse - transform="matrix(1.131034,0.613097,-0.476556,0.879144,54.09058,16.04435)" - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path5991" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6007);stroke-width:0.88164198;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="-18.561554" - cy="21.041553" - rx="15.733126" - ry="9.4575529" /> - <ellipse - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6011);stroke-width:0.88164198;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="path6009" - inkscape:r_cx="true" - inkscape:r_cy="true" - transform="matrix(0.939326,-0.879086,0.683307,0.730131,32.31406,-4.451561)" - cx="-18.561554" - cy="21.041553" - rx="15.733126" - ry="9.4575529" /> - <g - id="g4933" - transform="matrix(-1.045772,0.767251,0.767251,1.045772,35.61651,-22.14396)" - inkscape:r_cx="true" - inkscape:r_cy="true"> - <circle - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient5987);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="path4935" - inkscape:r_cx="true" - inkscape:r_cy="true" - transform="translate(14.95026,22.93047)" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - <circle - transform="matrix(0.308271,0,0,0.308271,23.30035,31.57234)" - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4937" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - </g> - <ellipse - transform="matrix(-1.280316,-0.126159,0.09806226,-0.99518,-2.405125,40.52387)" - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path6013" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6015);stroke-width:0.88164198;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="-18.561554" - cy="21.041553" - rx="15.733126" - ry="9.4575529" /> - <ellipse - transform="matrix(0.917874,-0.858983,0.667701,0.713433,27.63317,-6.909069)" - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path6017" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6019);stroke-width:0.90226138;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="-18.561554" - cy="21.041553" - rx="15.733126" - ry="9.4575529" /> - <g - inkscape:r_cy="true" - inkscape:r_cx="true" - transform="matrix(-0.806276,0.59154,0.59154,0.806276,12.38564,-18.02921)" - id="g5075"> - <circle - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient5983);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="path5077" - inkscape:r_cx="true" - inkscape:r_cy="true" - transform="translate(14.95026,22.93047)" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - <circle - transform="matrix(0.308271,0,0,0.308271,23.30035,31.57234)" - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path5079" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - </g> - <g - id="g4945" - transform="matrix(-0.806276,0.59154,0.59154,0.806276,13.4991,-31.50022)" - inkscape:r_cx="true" - inkscape:r_cy="true"> - <circle - transform="translate(14.95026,22.93047)" - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4947" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient5985);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - <circle - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="path4949" - inkscape:r_cx="true" - inkscape:r_cy="true" - transform="matrix(0.308271,0,0,0.308271,23.30035,31.57234)" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - </g> - <g - inkscape:r_cy="true" - inkscape:r_cx="true" - transform="matrix(-0.870227,0.638572,0.638458,0.870381,25.20503,-35.31278)" - id="g4939" - style="opacity:1"> - <circle - transform="translate(14.95026,22.93047)" - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4941" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient5989);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - <circle - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="path4943" - inkscape:r_cx="true" - inkscape:r_cy="true" - transform="matrix(0.308271,0,0,0.308271,23.30035,31.57234)" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - </g> - </g> - <g - id="g4518" - transform="matrix(1.4919791,0,0,1.6374999,524.0181,309.43508)" - style="stroke:none"> - <circle - transform="matrix(1.737733,0,0,1.737733,110.8322,70.07649)" - id="path4520" - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:0.33115697;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="-155.0625" - cy="-96.9375" - r="3.125" /> - <circle - transform="matrix(1.737733,0,0,1.737733,110.8948,70.01402)" - id="path4522" - style="opacity:1;fill:url(#linearGradient10642);fill-opacity:1;stroke:none;stroke-width:0.4522453;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="-155.0625" - cy="-96.9375" - r="3.125" /> - </g> - <g - id="g7852" - transform="matrix(1.5956518,0,0,1.7512843,-151.37095,910.24302)"> - <path - sodipodi:nodetypes="ccsscsssscsscc" - id="path7854" - d="m 280.5,-445.5 c -2.27083,0 -4.10991,1.55028 -4.71875,3.625 -0.69323,-0.36383 -1.44451,-0.625 -2.28125,-0.625 -2.76,0 -5.00001,2.23999 -5,5 0,0.57893 0.16252,1.1077 0.34375,1.625 -1.37347,0.77074 -2.34375,2.189 -2.34375,3.875 0,2.484 2.016,4.50001 4.5,4.5 0.17713,0 18.82287,0 19,0 2.48399,0 4.5,-2.016 4.5,-4.5 0,-1.686 -0.97028,-3.10426 -2.34375,-3.875 0.18124,-0.51729 0.34375,-1.04608 0.34375,-1.625 0,-2.76 -2.24,-4.99999 -5,-5 -0.83674,0 -1.58802,0.26117 -2.28125,0.625 -0.60884,-2.07472 -2.44792,-3.625 -4.71875,-3.625 z" - style="fill:#c4c5c2;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsscsssscsscc" - id="path7856" - d="m 280.5,-445 c -2.18972,0 -3.7236,1.33577 -4.39555,3.84352 -0.66846,-0.34362 -1.54759,-0.83335 -2.35445,-0.83335 -2.71651,0 -4.75514,1.93882 -4.75513,4.54554 0,0.54677 0.26721,1.33344 0.44196,1.82201 -1.32443,0.72795 -2.43683,1.8905 -2.43683,3.37255 0,2.34605 1.54617,4.25009 4.33928,4.25009 0.17081,0 18.15064,0 18.32144,0 2.77101,0 4.33928,-1.90404 4.33928,-4.25009 0,-1.59237 -1.1124,-2.66669 -2.43683,-3.39464 0.17476,-0.48856 0.46407,-1.25316 0.46407,-1.79992 0,-2.60671 -2.11581,-4.56763 -4.77723,-4.56764 -0.80687,0 -1.64181,0.48974 -2.31027,0.83336 C 284.29089,-443.60011 282.68973,-445 280.5,-445 Z" - style="opacity:1;fill:url(#linearGradient10658);fill-opacity:1;stroke:none;stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <g - id="g7858"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7860" - transform="matrix(1.056604,0,0,1.056604,-24.19818,21.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10660);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7862" - transform="matrix(1.056604,0,0,1.056604,-24.19818,21.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <rect - y="-438" - x="271" - height="9" - width="20" - id="rect7864" - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <circle - transform="matrix(0.90566,0,0,0.90566,9.830195,-35.68869)" - id="path7866" - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <g - id="g7868"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7870" - transform="matrix(1.056604,0,0,1.056604,-17.19811,24.86321)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10662);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7872" - transform="matrix(1.056604,0,0,1.056604,-17.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <g - id="g7874"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7876" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10664);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7878" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <g - transform="translate(-1,0)" - id="g7880"> - <path - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 280.46875,-440.96875 c -3.57938,0 -6.46875,2.92063 -6.46875,6.5 0,2.37068 1.34943,4.33779 3.25,5.46875 l 6.46875,0 c 1.90057,-1.13096 3.25,-3.12931 3.25,-5.5 0,-3.57938 -2.92063,-6.46875 -6.5,-6.46875 z" - id="path7882" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:url(#linearGradient10666);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 280.5,-441 c -3.588,0 -6.5,2.91201 -6.5,6.5 0,2.3764 1.34485,4.36632 3.25,5.5 l 6.5,0 c 1.90515,-1.13368 3.25,-3.1236 3.25,-5.5 0,-3.588 -2.912,-6.49999 -6.5,-6.5 z" - id="path7884" - inkscape:connector-curvature="0" /> - </g> - <circle - transform="matrix(0.90566,0,0,0.90566,9.830296,-35.68884)" - id="path7886" - style="opacity:1;fill:url(#linearGradient10668);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <path - sodipodi:nodetypes="ccss" - id="path7888" - d="m 292.9564,-437.33396 c -0.002,2.68456 -3.26926,3.71395 -3.26926,3.71395 0,0 2.34874,-1.62595 2.33685,-3.70501 0,0 0.93241,-0.009 0.93241,-0.009 z" - style="fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <g - transform="matrix(1.142857,0,0,1.142857,-28.57139,67.00008)" - id="g7890"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7892" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10670);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7896" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - </g> - <g - id="g7852-5" - transform="matrix(1.5956518,0,0,1.7512843,-131.50889,917.51208)"> - <path - sodipodi:nodetypes="ccsscsssscsscc" - id="path7854-0" - d="m 280.5,-445.5 c -2.27083,0 -4.10991,1.55028 -4.71875,3.625 -0.69323,-0.36383 -1.44451,-0.625 -2.28125,-0.625 -2.76,0 -5.00001,2.23999 -5,5 0,0.57893 0.16252,1.1077 0.34375,1.625 -1.37347,0.77074 -2.34375,2.189 -2.34375,3.875 0,2.484 2.016,4.50001 4.5,4.5 0.17713,0 18.82287,0 19,0 2.48399,0 4.5,-2.016 4.5,-4.5 0,-1.686 -0.97028,-3.10426 -2.34375,-3.875 0.18124,-0.51729 0.34375,-1.04608 0.34375,-1.625 0,-2.76 -2.24,-4.99999 -5,-5 -0.83674,0 -1.58802,0.26117 -2.28125,0.625 -0.60884,-2.07472 -2.44792,-3.625 -4.71875,-3.625 z" - style="fill:#c4c5c2;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsscsssscsscc" - id="path7856-3" - d="m 280.5,-445 c -2.18972,0 -3.7236,1.33577 -4.39555,3.84352 -0.66846,-0.34362 -1.54759,-0.83335 -2.35445,-0.83335 -2.71651,0 -4.75514,1.93882 -4.75513,4.54554 0,0.54677 0.26721,1.33344 0.44196,1.82201 -1.32443,0.72795 -2.43683,1.8905 -2.43683,3.37255 0,2.34605 1.54617,4.25009 4.33928,4.25009 0.17081,0 18.15064,0 18.32144,0 2.77101,0 4.33928,-1.90404 4.33928,-4.25009 0,-1.59237 -1.1124,-2.66669 -2.43683,-3.39464 0.17476,-0.48856 0.46407,-1.25316 0.46407,-1.79992 0,-2.60671 -2.11581,-4.56763 -4.77723,-4.56764 -0.80687,0 -1.64181,0.48974 -2.31027,0.83336 C 284.29089,-443.60011 282.68973,-445 280.5,-445 Z" - style="opacity:1;fill:url(#linearGradient10658-2);fill-opacity:1;stroke:none;stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <g - id="g7858-6"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7860-1" - transform="matrix(1.056604,0,0,1.056604,-24.19818,21.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10660-1);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7862-0" - transform="matrix(1.056604,0,0,1.056604,-24.19818,21.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <rect - y="-438" - x="271" - height="9" - width="20" - id="rect7864-6" - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <circle - transform="matrix(0.90566,0,0,0.90566,9.830195,-35.68869)" - id="path7866-3" - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <g - id="g7868-2"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7870-0" - transform="matrix(1.056604,0,0,1.056604,-17.19811,24.86321)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10662-9);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7872-6" - transform="matrix(1.056604,0,0,1.056604,-17.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <g - id="g7874-1"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7876-5" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10664-4);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7878-5" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <g - transform="translate(-1,0)" - id="g7880-4"> - <path - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 280.46875,-440.96875 c -3.57938,0 -6.46875,2.92063 -6.46875,6.5 0,2.37068 1.34943,4.33779 3.25,5.46875 l 6.46875,0 c 1.90057,-1.13096 3.25,-3.12931 3.25,-5.5 0,-3.57938 -2.92063,-6.46875 -6.5,-6.46875 z" - id="path7882-7" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:url(#linearGradient10666-7);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 280.5,-441 c -3.588,0 -6.5,2.91201 -6.5,6.5 0,2.3764 1.34485,4.36632 3.25,5.5 l 6.5,0 c 1.90515,-1.13368 3.25,-3.1236 3.25,-5.5 0,-3.588 -2.912,-6.49999 -6.5,-6.5 z" - id="path7884-6" - inkscape:connector-curvature="0" /> - </g> - <circle - transform="matrix(0.90566,0,0,0.90566,9.830296,-35.68884)" - id="path7886-5" - style="opacity:1;fill:url(#linearGradient10668-8);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <path - sodipodi:nodetypes="ccss" - id="path7888-6" - d="m 292.9564,-437.33396 c -0.002,2.68456 -3.26926,3.71395 -3.26926,3.71395 0,0 2.34874,-1.62595 2.33685,-3.70501 0,0 0.93241,-0.009 0.93241,-0.009 z" - style="fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <g - transform="matrix(1.142857,0,0,1.142857,-28.57139,67.00008)" - id="g7890-9"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7892-3" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10670-4);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7896-7" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - </g> - </g> -</svg> diff --git a/kpov_judge/web/kpov_judge/kpov_draw_setup.py b/kpov_judge/web/kpov_judge/kpov_draw_setup.py deleted file mode 100644 index 41f5e01..0000000 --- a/kpov_judge/web/kpov_judge/kpov_draw_setup.py +++ /dev/null @@ -1,43 +0,0 @@ -import pygraphviz as pgv - -def draw_setup(computers, networks, destination=None, - icon_prefix = '../../../static/icons/', - format='svg', icon_path = '', icon_suffix = None): - if icon_suffix is None: - icon_suffix = format - icon_suffix = '.' + icon_suffix - G = pgv.AGraph(imagepath=icon_path + '/') - print(G.graph_attr) - have_internet = [] - for net in networks: - net_name = net.get('name', 'net') - if net.get('public', False): - have_internet.append(net_name) - G.add_node('net-' + net_name, label=net_name, shape='rectangle') - if len(have_internet): - G.add_node('net-' + 'internet', - label='internet', - labelloc='b', - image=icon_prefix + 'internet' + icon_suffix, - shape='none') - for n in have_internet: - G.add_edge('net-' + n, 'net-internet') - for properties in computers: - c = properties.get('name', '') - label_str = '< <TABLE BORDER="0"><TR><TD COLSPAN="2"><B>{}</B></TD></TR><TR><TD COLSPAN="2"><IMG SRC="{}"/></TD></TR>' - label = label_str.format(c, icon_prefix + 'computer' + icon_suffix) - for hdd in properties.get('disks', []): - icon = icon_prefix + 'drive-harddisk' + icon_suffix - label += '<TR><TD><IMG SRC="{}" /></TD><TD>{}</TD></TR>'.format(icon, hdd['name']) - label += '</TABLE> >' - G.add_node('comp-' + c, - label = label, - shape='box', labelloc='b') - for iface in properties.get('network_interfaces', []): - G.add_edge('comp-' + c, 'net-' + iface['network']) - return G.draw(path=destination, format=format, prog='dot') - -if __name__ == '__main__': - import sample_task as task - print(draw_setup(task.computers, task.networks)) - diff --git a/kpov_judge/web/kpov_judge/kpov_judge.py b/kpov_judge/web/kpov_judge/kpov_judge.py deleted file mode 100755 index 47e413e..0000000 --- a/kpov_judge/web/kpov_judge/kpov_judge.py +++ /dev/null @@ -1,289 +0,0 @@ -#!/usr/bin/env python3 - -import collections -import datetime -import json -import random -import settings -import traceback -import uuid - -from kpov_draw_setup import draw_setup -import kpov_util - -import pymongo -import flask -from flask import Flask, g, session, redirect, url_for, abort, render_template, flash, app, request, Response -from flask.ext.babel import Babel, gettext, ngettext, format_datetime, _ -import jinja2 - -app = Flask(__name__) -app.config.from_object(settings) -babel = Babel(app) - -@babel.localeselector -def get_locale(): - # terrible hack, should store as user preference in the DB - if '/en/' in request.path: - return 'en' - if '/si/' in request.path: - return 'sl' - return request.accept_languages.best_match(['sl', 'en']) - - -@app.before_request -def before_request(): - g.db = pymongo.MongoClient(app.config['DB_URI']).get_default_database() - - -@app.route('/') -@app.route('/classes/') -def index(): - student_id = flask.app.request.environ.get('REMOTE_USER', 'Nobody') - classes = g.db.classes.find({}, {'class_id': 1, 'name': 1}).sort('class_id') - return render_template('index.html', student_id=student_id, classes=classes) - - -@app.route('/classes/<class_id>/') -def class_tasks(class_id): - student_id = flask.app.request.environ.get('REMOTE_USER', 'Nobody') - clas = g.db.classes.find_one({'class_id': class_id}) - tasks = g.db.tasks.find({'class_id': class_id}, {'task_id': 1}).sort('task_id') - if tasks is not None: - task_list = [i['task_id'] for i in tasks] - else: - task_list = [] - return render_template('class_tasks.html', student_id=student_id, tasks=task_list, clas=clas) - - -@app.route('/tasks/<class_id>/<task_id>/<lang>/setup.<ending>', methods=['GET']) -def setup_svg(class_id, task_id, lang, ending): - db = g.db - fmt, mimetype = { - 'svg':('svg', 'image/svg+xml'), - 'png':('png', 'image/png'), - }[ending] - networks = list(db.networks.find({'class_id': class_id, 'task_id': task_id})) - computers = list(db.computers_meta.find({'class_id': class_id, 'task_id': task_id})) - return Response(draw_setup(computers, networks, format=fmt, - icon_path=app.config['STATIC_DIR']), - mimetype=mimetype) - - -@app.route('/tasks/<class_id>/<task_id>/task.py') -def task_source(class_id, task_id): - db = g.db - try: - return db.tasks.find_one({'class_id': class_id, 'task_id': task_id})['source'] - except: - return '' - - -@app.route('/tasks/<class_id>/<task_id>/task.html') -def task_html(class_id, task_id): - return render_template('task.html', task=task_source(class_id, task_id)) - - -def get_params(class_id, task_id, student_id, db): - try: - meta = db.task_params_meta.find_one({'class_id': class_id, 'task_id': task_id})['params'] - except Exception: - return {'mama': 'ZAKVAJ?'}, {'mama': {'public': True}} - - params = db.task_params.find_one({'class_id': class_id, 'task_id': task_id, 'student_id': student_id}) - if params is None or 'params' not in params: # TODO try with $exists: params or smth. - try: - gen_params_source = db.gen_params.find_one({'class_id': class_id, 'task_id': task_id})['source'] - gen_params_code = compile(gen_params_source, 'generator.py', 'exec') - d = {} - exec(gen_params_code, globals(), d) - params = d['gen_params'](student_id, meta) - db.task_params.update({'class_id': class_id, 'task_id': task_id, 'student_id': student_id}, - {'$set': {'params': params}}, upsert=True) - params = d['gen_params'](student_id, meta) # TODO this is repeated, is it necessary? - for computer in db.computers_meta.find({'class_id': class_id, 'task_id': task_id}): - try: - name = computer.pop('name') - del computer['_id'] - del computer['task_id'] - except Exception: - pass - db.student_computers.update({'class_id': class_id, 'task_id': task_id, 'student_id': student_id, 'name': name}, - {'$set': computer}, upsert=True) - except Exception as e: - meta = {'crash': {'public': True}} - params = {'crash': "Parameter creator crashed or missing:\n{}".format( - traceback.format_exc())} - else: - params = params['params'] - return params, meta - - -@app.route('/tasks/<class_id>/<task_id>/') -def task_lang_redirect(class_id, task_id): - return redirect(url_for('task_greeting', class_id=class_id, task_id=task_id, lang=app.config['DEFAULT_LANG'])) - - -@app.route('/tasks/<class_id>/<task_id>/<lang>/howto/') -def task_howto(class_id, task_id, lang): - db = g.db - return db.howtos.find_one({'class_id': class_id, 'task_id': task_id, 'lang': lang}).get('text', '') - - -@app.route('/tasks/<class_id>/<task_id>/<lang>/images/<fname>') -def task_image(class_id, task_id, lang, fname): - db = g.db - return db.howto_images.find_one({'class_id': class_id, 'task_id': task_id, 'fname': fname}).get('data', '') - - -@app.route('/tasks/<class_id>/<task_id>/<lang>/') -def task_greeting(class_id, task_id, lang): - student_id = flask.app.request.environ.get('REMOTE_USER', 'Nobody') - db = g.db - # generate the parameters as soon as the student visits - params, meta = get_params(class_id, task_id, student_id, db) - instr_ok = True - try: - instructions = db.task_instructions.find_one({'class_id': class_id, 'task_id': task_id}) - instructions = instructions.get(lang, instructions[app.config['DEFAULT_LANG']]) - except Exception: - try: - instructions = list(instructions.values())[0] - except Exception as e: - instructions = str(e) - instr_ok = False - if instr_ok: - try: - public_params = [] - for k, v in meta.items(): - if v.get('public', False): - public_params += [{ - 'name': k, - 'value': params.get(k), - 'description': v.get('descriptions', {}).get(lang) - }] - except Exception as e: - instructions = str(e) - - computer_list = list(db.student_computers.find({'class_id': class_id, 'task_id': task_id, 'student_id': student_id})) - - backing_files = collections.defaultdict(set) - for computer in computer_list: - if 'disk_urls' not in computer: - continue - for name, disk in computer['disk_urls'].items(): - for fmt in disk['formats']: - backing_files[fmt] |= set(disk[fmt][1:]) - - if request.args.get('narediStack', 'false') == 'true': - #db.student_tasks.update({'task_id': task_id, 'student_id': student_id}, {'$set': {'create_openstack': True}}, upsert = True) - openstackCreated = False # Spremeni na True, ko odkomentiras zgornjo vrstico. - else: - if db.student_tasks.find({'class_id': class_id, 'task_id': task_id, 'student_id': student_id, 'openstack_created': True}).count() > 0: - openstackCreated = True - elif db.student_tasks.find({'class_id': class_id, 'task_id': task_id, 'student_id': student_id, 'create_openstack': True}).count() > 0: - openstackCreated = True - else: - openstackCreated = False - - try: - result = db.results.find_one( - {'$query': {'class_id': class_id, 'task_id': task_id, 'student_id': student_id}, - '$orderby': collections.OrderedDict([('result', -1), ('time', 1)])}, - {'result': 1, 'status': 1, 'hints': 1, 'time': True, '_id': 0}) - result['time'] = format_datetime(result['time']) - print(result) - except Exception: - result = None - - return render_template('task_greeting.html', - disk_base_url='/'.join([app.config['STUDENT_DISK_URL'], student_id, class_id, task_id, '']), - class_id=class_id, - task_id=task_id, - computers=sorted((c for c in computer_list if 'disk_urls' in c), key=lambda c: c['name']), - backing_files={fmt: sorted(images) for fmt, images in backing_files.items()}, - lang='sl' if lang == 'si' else lang, # TODO s/si/sl in all tasks (and maybe elsewhere) - openstack=openstackCreated, - instructions=jinja2.Template(instructions), - params=public_params, - result=result, - **{p['name']: p['value'] for p in public_params}) - - -@app.route('/tasks/<class_id>/<task_id>/token.json') -def get_token(class_id, task_id): - db = g.db - student_id = flask.app.request.environ.get('REMOTE_USER', 'Nobody') - token = str(uuid.uuid4()) - db.task_params.update({'class_id': class_id, 'task_id': task_id, 'student_id': student_id}, - {'$set': {'token': token}}, upsert=True) - return json.dumps({'token': token}) - - -@app.route('/tasks/<class_id>/<task_id>/params.json', methods=['POST']) -def params_json(class_id, task_id): - db = g.db - token = flask.app.request.form['token'] - record = db.task_params.find_one({'class_id': class_id, 'task_id': task_id, 'token': token}) - if not record: - return json.dumps({}) - params, meta = get_params(record['class_id'], record['task_id'], record['student_id'], db) - shown_params = {} - for name, param in params.items(): - if meta.get(name, {'public': False})['public']: - shown_params[name] = param - return json.dumps(shown_params) - - -@app.route('/tasks/<class_id>/<task_id>/results.json', methods=['POST']) -def results_json(class_id, task_id): - db = g.db - token = flask.app.request.form.get('token', '') - task = db.task_params.find_one({'class_id': class_id, 'task_id': task_id, 'token': token}) - if not task: - return json.dumps({'result': 0, 'hints': ['invalid token'], 'status': 'NOT OK'}) - - params = task['params'] - if params is None: - return json.dumps({'result': 0, 'hints': ['no parameters found for task'], 'status': 'NOT OK'}) # no such task - - results = json.loads(flask.app.request.form['results']) - user_params = json.loads(flask.app.request.form['params']) - - meta = db.task_params_meta.find_one({'task_id': task_id}) - if meta is None: - meta = {} - else: - meta = meta['params'] - for param_name, param_meta in meta.items(): - if param_meta.get('w', False) and param_name in user_params: - params[param_name] = user_params[param_name] - - # hack to get token into task_check function - # TODO rethink the API - params['token'] = token - try: - task_check_source = db.task_checkers.find_one({'class_id': class_id, 'task_id': task_id})['source'] - d = {} - exec(compile(task_check_source, 'checker.py', 'exec'), globals(), d) - res, hints = d['task_check'](collections.defaultdict(str, results), params) - except Exception as e: - hints = ["Checker died: " + str(e)] - res = 0 - if (isinstance(res, int) or isinstance(res, float)) and res > 0: - res_status = 'OK' - else: - res_status = 'NOT OK' - - db.results.insert({ - 'class_id': class_id, 'task_id': task_id, - 'result': res, 'hints': hints, 'status': res_status, - 'student_id': task['student_id'], - 'response': results, - 'time': datetime.datetime.now() - }) - return json.dumps({'result': res, 'hints': hints, 'status': res_status}) - - -if __name__ == '__main__': - app.run(host='0.0.0.0') diff --git a/kpov_judge/web/kpov_judge/kpov_util.py b/kpov_judge/web/kpov_judge/kpov_util.py deleted file mode 120000 index 20fecf4..0000000 --- a/kpov_judge/web/kpov_judge/kpov_util.py +++ /dev/null @@ -1 +0,0 @@ -../../kpov_util.py
\ No newline at end of file diff --git a/kpov_judge/web/kpov_judge/random_data b/kpov_judge/web/kpov_judge/random_data deleted file mode 120000 index 6a83e61..0000000 --- a/kpov_judge/web/kpov_judge/random_data +++ /dev/null @@ -1 +0,0 @@ -../../random_data
\ No newline at end of file diff --git a/kpov_judge/web/kpov_judge/settings.py b/kpov_judge/web/kpov_judge/settings.py deleted file mode 120000 index 8889b19..0000000 --- a/kpov_judge/web/kpov_judge/settings.py +++ /dev/null @@ -1 +0,0 @@ -../../settings.py
\ No newline at end of file diff --git a/kpov_judge/web/kpov_judge/static/icons/computer.png b/kpov_judge/web/kpov_judge/static/icons/computer.png Binary files differdeleted file mode 100644 index aebd82e..0000000 --- a/kpov_judge/web/kpov_judge/static/icons/computer.png +++ /dev/null diff --git a/kpov_judge/web/kpov_judge/static/icons/computer.svg b/kpov_judge/web/kpov_judge/static/icons/computer.svg deleted file mode 100644 index 6da674d..0000000 --- a/kpov_judge/web/kpov_judge/static/icons/computer.svg +++ /dev/null @@ -1,1877 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="120" - height="140" - id="svg4718" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="computer.svg"> - <defs - id="defs4720"> - <filter - inkscape:collect="always" - id="filter5659" - x="-0.045228258" - width="1.0904565" - y="-0.37485376" - height="1.7497075" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.7961743" - id="feGaussianBlur5661" /> - </filter> - <filter - inkscape:collect="always" - id="filter5677" - x="-0.1638047" - width="1.3276094" - y="-1.3576204" - height="3.7152407" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="6.5052645" - id="feGaussianBlur5679" /> - </filter> - <linearGradient - id="linearGradient5513"> - <stop - style="stop-color:#d3d7cf;stop-opacity:1" - offset="0" - id="stop5515" /> - <stop - id="stop5517" - offset="0.11058617" - style="stop-color:#979894;stop-opacity:1" /> - <stop - id="stop5519" - offset="0.21474838" - style="stop-color:#d3d7cf;stop-opacity:1" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0.35913071" - id="stop5521" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop5523" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5567"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5569" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5571" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4465" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.37" - id="feGaussianBlur4467" /> - </filter> - <linearGradient - id="linearGradient5615"> - <stop - id="stop5617" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - style="stop-color:#000000;stop-opacity:0.31506849" - offset="0.59850603" - id="stop5619" /> - <stop - id="stop5621" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5316"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop5318" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop5320" /> - </linearGradient> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath5584"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="czsccccccszcc" - id="path5586" - d="m 119.00002,314 1,20.55814 c 0.65135,13.3905 -8,16.93023 -18,21.76744 -1.02876,0.49763 -2,1.0787 -2,2.41861 l 0,3.62791 c 0,3.6279 8,3.6279 15,3.6279 l 66,0 c 7,0 15,0 15,-3.6279 l 0,-3.62791 c 0,-1.33991 -0.97125,-1.92098 -2,-2.41861 -10,-4.83721 -18.65135,-8.37694 -18,-21.76744 l 1,-20.55814 -58,0 z" - style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - </clipPath> - <filter - inkscape:collect="always" - id="filter5592" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.745" - id="feGaussianBlur5594" /> - </filter> - <linearGradient - id="linearGradient10629-2"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop10631-8" /> - <stop - style="stop-color:#959595;stop-opacity:1" - offset="1" - id="stop10633-2" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3288"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3290" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3292" /> - </linearGradient> - <linearGradient - id="linearGradient12756-7"> - <stop - style="stop-color:#5789ca;stop-opacity:1" - offset="0" - id="stop12758-4" /> - <stop - style="stop-color:#023c88;stop-opacity:1" - offset="1" - id="stop12760-6" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5687"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5689" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5691" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4788"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4790" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4792" /> - </linearGradient> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath5221"> - <rect - style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - id="rect5223" - width="208.00005" - height="124" - x="44" - y="362" /> - </clipPath> - <filter - inkscape:collect="always" - id="filter5252" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.6762502" - id="feGaussianBlur5254" /> - </filter> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath5266"> - <rect - style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - id="rect5268" - width="223.99995" - height="148" - x="36.000046" - y="-270" - rx="2.125" - ry="2.125" /> - </clipPath> - <filter - inkscape:collect="always" - id="filter5681" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.92999989" - id="feGaussianBlur5683" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient5351"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5353" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5355" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5361"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5363" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5365" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5371"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5373" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5375" /> - </linearGradient> - <linearGradient - id="linearGradient5496"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop5498" /> - <stop - id="stop5505" - offset="0.0312636" - style="stop-color:#ffffff;stop-opacity:1" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1" - offset="0.19532859" - id="stop5507" /> - <stop - id="stop5509" - offset="0.82031411" - style="stop-color:#babdb6;stop-opacity:1" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0.95833272" - id="stop5511" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="1" - id="stop5500" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5544"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5546" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5549" /> - </linearGradient> - <linearGradient - id="linearGradient4070"> - <stop - id="stop4072" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.52789462" - id="stop4074" /> - <stop - id="stop4076" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient5701"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5703" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5705" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter5713" - x="-0.86400002" - width="2.7279999" - y="-0.006041958" - height="1.0120839" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.36" - id="feGaussianBlur5715" /> - </filter> - <linearGradient - id="linearGradient5555"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop5557" /> - <stop - id="stop5563" - offset="0.59523809" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop5559" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4090"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4092" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4094" /> - </linearGradient> - <linearGradient - id="linearGradient4134"> - <stop - id="stop4136" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#2e3436;stop-opacity:1" - offset="0.56766391" - id="stop3378" /> - <stop - id="stop4138" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4249"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4251" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4253" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4453"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop4455" /> - <stop - style="stop-color:#888a85;stop-opacity:0;" - offset="1" - id="stop4457" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient4383"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4385" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4387" /> - </linearGradient> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4367"> - <path - inkscape:connector-curvature="0" - style="display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new" - d="m 240,211 c -1.66165,0 -3,1.33835 -3,3 l 0,4 10,0 0,-4 c 0,-1.66165 -1.33835,-3 -3,-3 l -4,0 z" - id="path4369" /> - </clipPath> - <filter - inkscape:collect="always" - id="filter4461" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.2548" - id="feGaussianBlur4463" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient4325"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop4327" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop4329" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4363" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.49890366" - id="feGaussianBlur4365" /> - </filter> - <filter - inkscape:collect="always" - id="filter4353" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.481711" - id="feGaussianBlur4355" /> - </filter> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4287"> - <path - inkscape:connector-curvature="0" - style="display:inline;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - d="m 164.5,171.375 c -1.80944,16.18787 3.57797,26.96266 12.53125,33.84375 8.95328,6.88109 21.33929,9.97794 33.65625,11.5 12.31696,1.52206 24.61016,1.44261 33.34375,1.8125 4.36679,0.18494 7.85588,0.49346 9.875,1.09375 1.00956,0.30014 1.60095,0.69442 1.78125,0.9375 0.1803,0.24308 0.21449,0.38792 -0.0937,1 -0.5676,1.12711 -1.88943,1.92802 -4.03125,2.4375 -2.14182,0.50948 -4.98306,0.67251 -8.125,0.65625 -6.28389,-0.0325 -13.813,-0.76309 -20.09375,-0.59375 -3.14038,0.0847 -5.97092,0.38298 -8.25,1.1875 -2.27908,0.80452 -4.09475,2.22183 -4.6875,4.40625 -0.59275,2.18442 0.001,4.85419 1.8125,8.25 1.81134,3.39581 4.88283,7.55678 9.53125,12.75 l 1.5,-1.3125 c -4.58534,-5.12274 -7.56231,-9.211 -9.25,-12.375 -1.68769,-3.164 -2.04477,-5.34946 -1.65625,-6.78125 0.38852,-1.43179 1.47822,-2.3819 3.40625,-3.0625 1.92803,-0.6806 4.61811,-0.98059 7.65625,-1.0625 6.07628,-0.16382 13.59915,0.56045 20.03125,0.59375 3.21605,0.0166 6.13826,-0.14209 8.5625,-0.71875 2.42424,-0.57666 4.45416,-1.60938 5.40625,-3.5 0.51688,-1.0264 0.50003,-2.21986 -0.125,-3.0625 -0.62503,-0.84264 -1.60421,-1.29702 -2.8125,-1.65625 -2.41658,-0.71845 -5.96364,-1.00067 -10.375,-1.1875 -8.82271,-0.37366 -21.00798,-0.31129 -33.15625,-1.8125 -12.14827,-1.50121 -24.21446,-4.58175 -32.6875,-11.09375 -8.47304,-6.512 -13.50101,-16.33486 -11.75,-32 l -2,-0.25 z" - id="path4289" /> - </clipPath> - <filter - inkscape:collect="always" - id="filter4293" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.42725912" - id="feGaussianBlur4295" /> - </filter> - <filter - inkscape:collect="always" - id="filter3761" - x="-0.027514406" - width="1.0550288" - y="-0.20195091" - height="1.4039018" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="2.5929877" - id="feGaussianBlur3763" /> - </filter> - <filter - inkscape:collect="always" - id="filter3865" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.64248474" - id="feGaussianBlur3867" /> - </filter> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath3519"> - <path - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccsccccsccsscsccccc" - id="path3521" - d="m 49.053018,377.91849 c -0.710706,0.0727 -1.339556,0.49196 -1.68004,1.12002 l -14.280335,26.38285 c -0.171895,0.32432 -0.254644,0.67287 -0.248894,1.02669 1.72e-4,0.0106 -3.28e-4,0.0205 0,0.0311 l 0,2.98673 0,0.31112 0.06222,0 c 0.04534,0.25962 0.109053,0.51286 0.248895,0.74669 0.388063,0.64889 1.079535,1.05365 1.835599,1.0578 l 220.862957,0 c 0.76537,0.002 1.4767,-0.39926 1.86671,-1.0578 0.13743,-0.23204 0.20572,-0.48851 0.2489,-0.74669 0.0487,-0.29136 0.0622,-0.87113 0.0622,-0.87113 l 0,-2.08449 c 0,-0.49198 -0.0355,-0.98746 -0.28001,-1.43115 L 242.9109,379.0074 c -0.38858,-0.68003 -1.11464,-1.09662 -1.89783,-1.08891 l -191.742269,0 c -0.07255,-0.004 -0.145236,-0.004 -0.217783,0 z" - style="display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new" /> - </clipPath> - <linearGradient - inkscape:collect="always" - id="linearGradient2748"> - <stop - style="stop-color:#eeeeec;stop-opacity:1" - offset="0" - id="stop2750" /> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="1" - id="stop2752" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter3523" - x="-0.006099917" - width="1.0121998" - y="-0.36629945" - height="1.7325989" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.57234376" - id="feGaussianBlur3525" /> - </filter> - <linearGradient - id="linearGradient2740"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop2742" /> - <stop - style="stop-color:#888a85;stop-opacity:0;" - offset="1" - id="stop2744" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3942"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop3944" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3946" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter3952" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.65357075" - id="feGaussianBlur3954" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient3715"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop3717" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop3719" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3861"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop3863" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop3865" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter3964" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.5890625" - id="feGaussianBlur3966" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient4386"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4388" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4390" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4506" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.43637892" - id="feGaussianBlur4508" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient4394"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4396" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4398" /> - </linearGradient> - <filter - inkscape:collect="always" - id="filter4450" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.33940583" - id="feGaussianBlur4452" /> - </filter> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath3599"> - <path - inkscape:connector-curvature="0" - style="display:inline;fill:#888a85;fill-opacity:1;stroke:none;enable-background:new" - d="m 208.28125,157.9375 c -0.008,0.10327 -0.005,0.2131 0.0312,0.3125 l 1.09375,3.0625 c 0.10951,0.28392 0.3832,0.47053 0.6875,0.46875 l 2,0 c 0.23532,-0.002 0.45756,-0.12059 0.59375,-0.3125 0.1362,-0.19191 0.16975,-0.43353 0.0937,-0.65625 l -1.03125,-2.875 -3.46875,0 z m 7.96875,0 c -0.0101,0.11643 0.0164,0.23327 0.0625,0.34375 l 1.28125,3.0625 c 0.11937,0.27165 0.39086,0.44442 0.6875,0.4375 l 2,0 c 0.24322,0.002 0.45595,-0.11207 0.59375,-0.3125 0.1378,-0.20044 0.18268,-0.46111 0.0937,-0.6875 l -1.1875,-2.84375 -3.53125,0 z m 8.03125,0 c -0.0114,0.12934 0.005,0.25506 0.0625,0.375 l 1.53125,3.0625 c 0.12384,0.24906 0.3781,0.40646 0.65625,0.40625 l 2,0 c 0.24601,-0.004 0.46165,-0.13617 0.59375,-0.34375 0.13209,-0.20758 0.16299,-0.46291 0.0625,-0.6875 l -1.40625,-2.8125 -3.5,0 z" - id="path3601" /> - </clipPath> - <filter - inkscape:collect="always" - id="filter3643" - x="-0.05291193" - width="1.1058239" - y="-0.33744851" - height="1.674897" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="0.43059837" - id="feGaussianBlur3645" /> - </filter> - <linearGradient - inkscape:collect="always" - id="linearGradient3647"> - <stop - style="stop-color:#729fcf;stop-opacity:1;" - offset="0" - id="stop3649" /> - <stop - style="stop-color:#729fcf;stop-opacity:0;" - offset="1" - id="stop3651" /> - </linearGradient> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath3655"> - <path - inkscape:connector-curvature="0" - style="display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new" - d="m 55.5625,287.96875 c -0.954459,-2e-5 -1.753046,0.47221 -2.125,1.40625 0,0 -0.59375,1.5 -0.59375,1.5 -0.155151,0.38964 -0.144272,0.90146 0.0625,1.3125 -0.5424,0.20441 -0.994862,0.57872 -1.25,1.1875 0,0 -0.625,1.46875 -0.625,1.46875 -0.01064,0.0102 -0.02106,0.0206 -0.03125,0.0312 -0.147112,0.351 -0.147348,0.80716 0,1.1875 -0.654855,0.16843 -1.194974,0.58271 -1.5,1.28125 0,0 -0.65625,1.5 -0.65625,1.5 -0.179615,0.41135 -0.163645,0.96978 0.09375,1.40625 -0.456605,0.2136 -0.850785,0.56008 -1.09375,1.09375 0,0 -0.6875,1.5 -0.6875,1.5 -0.166596,0.3659 -0.171331,0.84393 0,1.25 -0.62588,0.17262 -1.15115,0.55035 -1.46875,1.21875 0,0 -0.71875,1.5 -0.71875,1.5 -0.176959,0.37241 -0.209116,0.89133 -0.03125,1.3125 -0.590006,0.18007 -1.095835,0.56208 -1.40625,1.1875 0,0 -0.75,1.5 -0.75,1.5 -0.230425,0.46425 -0.217387,1.17845 0.15625,1.625 0.373637,0.44655 0.898009,0.5625 1.375,0.5625 0,0 9,0 9,0 0.953978,0 1.816699,-0.36523 2.25,-1.34375 0,0 0.108824,-0.25767 0.1875,-0.4375 -0.05805,0.4359 -0.07391,0.93458 0.21875,1.25 0.380339,0.40991 0.866761,0.53125 1.34375,0.53125 0,0 7,0 7,0 0.953978,0 1.836332,-0.39264 2.21875,-1.375 0,0 0.114925,-0.25416 0.1875,-0.4375 -0.06545,0.45383 -0.06104,0.9589 0.25,1.28125 0.379673,0.39347 0.866761,0.53125 1.34375,0.53125 0,0 8,0 8,0 0.953978,0 1.877328,-0.40568 2.21875,-1.4375 0,0 0.07819,-0.23457 0.125,-0.375 -0.05472,0.45853 -0.005,0.99507 0.3125,1.3125 0.378095,0.37806 0.866761,0.5 1.34375,0.5 0,0 49,0 49,0 0.47699,0 0.93217,-0.13944 1.3125,-0.40625 0.38033,-0.26681 0.70843,-0.71185 0.75,-1.28125 0.0146,0.52272 0.27443,1.01257 0.625,1.28125 0.3817,0.29252 0.83551,0.40625 1.3125,0.40625 0,0 8,0 8,0 0.47699,0 0.93469,-0.12271 1.3125,-0.40625 0.37781,-0.28354 0.67936,-0.78654 0.6875,-1.34375 -0.003,0.56895 0.30769,1.06032 0.6875,1.34375 0.37981,0.28343 0.83551,0.40625 1.3125,0.40625 0,0 7,0 7,0 0.47699,0 0.93334,-0.11356 1.3125,-0.40625 0.35741,-0.2759 0.64298,-0.75536 0.65625,-1.28125 0.0269,0.56108 0.34012,1.00636 0.71875,1.28125 0.37863,0.27489 0.83551,0.40625 1.3125,0.40625 0,0 7,0 7,0 0.47699,0 0.93189,-0.13504 1.3125,-0.4375 0.33417,-0.26556 0.5727,-0.72805 0.59375,-1.21875 0.0587,0.57406 0.39957,1.02196 0.78125,1.28125 0.38168,0.25929 0.83551,0.375 1.3125,0.375 0,0 7,0 7,0 0.47699,0 0.93486,-0.14417 1.3125,-0.46875 0.37764,-0.32458 0.64177,-0.89451 0.5625,-1.4375 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0846,-0.57915 -0.39998,-0.99087 -0.8125,-1.25 0.26304,-0.33524 0.43753,-0.80255 0.375,-1.25 0,0 -0.1875,-1.46875 -0.1875,-1.46875 -0.0771,-0.55194 -0.38883,-0.96029 -0.75,-1.21875 0.28697,-0.32745 0.46979,-0.80673 0.40625,-1.28125 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0863,-0.64445 -0.46892,-1.08991 -0.96875,-1.34375 0.21754,-0.31446 0.3334,-0.71895 0.28125,-1.125 0,0 -0.1875,-1.5 -0.1875,-1.5 -0.0628,-0.48882 -0.28162,-0.88199 -0.59375,-1.15625 0.3204,-0.33632 0.49776,-0.85491 0.4375,-1.34375 0,0 -0.15625,-1.46875 -0.15625,-1.46875 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 -0.0652,-0.52853 -0.32297,-0.94463 -0.6875,-1.21875 0.29245,-0.33453 0.46156,-0.80893 0.40625,-1.28125 0,0 -0.1875,-1.5 -0.1875,-1.5 -0.12129,-1.03687 -1.01431,-1.65625 -1.96875,-1.65625 0,0 -4.46875,0 -4.46875,0 -0.83019,-2e-5 -1.54501,0.68576 -1.6875,1.53125 -0.17843,-0.9173 -0.95265,-1.53125 -1.84375,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.84102,-2e-5 -1.56875,0.66895 -1.71875,1.53125 -0.16424,-0.90063 -0.93185,-1.53125 -1.8125,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.82937,-2e-5 -1.55984,0.62799 -1.75,1.46875 -0.1816,-0.84615 -0.93291,-1.46875 -1.78125,-1.46875 0,0 -4.46875,0 -4.46875,0 -0.95446,-2e-5 -1.92074,0.6785 -1.9375,1.75 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0,0 0,1.5 0,1.5 -0.0127,0.7602 0.51176,1.35605 1.15625,1.625 -0.12836,0.20924 -0.21851,0.45518 -0.25,0.71875 C 141.54605,292.6745 140.75707,292 139.875,292 c 0,0 -1.36761,0 -2.65625,0 0.10967,-0.21224 0.17748,-0.46182 0.1875,-0.71875 0,0 0.0312,-1.5 0.0312,-1.5 0.0104,1.6e-4 0.0208,1.6e-4 0.0312,0 0.0406,-1.03535 -0.92056,-1.8125 -1.875,-1.8125 0,0 -4.46875,0 -4.46875,0 -0.8829,-4e-5 -1.66429,0.61268 -1.84375,1.53125 -0.13633,-0.84769 -0.8474,-1.53125 -1.6875,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.88361,-2e-5 -1.66805,0.58302 -1.875,1.5 -0.0558,-0.35964 -0.0917,-0.72331 -0.34375,-0.96875 -0.34903,-0.33981 -0.83528,-0.53125 -1.3125,-0.53125 0,0 -4.46875,0 -4.46875,0 -0.91613,-2e-5 -1.71751,0.62448 -1.90625,1.5625 -0.048,-0.38038 -0.0844,-0.78197 -0.34375,-1.03125 -0.35372,-0.33993 -0.83528,-0.53125 -1.3125,-0.53125 0,0 -4.4375,0 -4.4375,0 -0.95446,-2e-5 -1.827,0.58662 -2,1.59375 0,0 -0.28125,1.5 -0.28125,1.5 -0.0536,0.31226 0.002,0.64303 0.125,0.9375 -1.12495,0 -2.25,0 -2.25,0 -0.91516,0 -1.75034,0.50557 -2,1.46875 -0.0327,-0.2552 -0.0561,-0.53156 -0.15625,-0.75 0.44269,-0.26266 0.79037,-0.68755 0.90625,-1.28125 0,0 0.28125,-1.5 0.28125,-1.5 0.0966,-0.49519 -0.0595,-1.03926 -0.40625,-1.40625 -0.34672,-0.36699 -0.83528,-0.5625 -1.3125,-0.5625 0,0 -4.46875,0 -4.46875,0 -0.915444,-2e-5 -1.710844,0.56161 -1.96875,1.46875 -0.03828,-0.3233 -0.03241,-0.66466 -0.25,-0.90625 -0.343882,-0.38181 -0.835278,-0.5625 -1.3125,-0.5625 0,0 -4.46875,0 -4.46875,0 -0.939161,-2e-5 -1.734609,0.55554 -2,1.5 -0.04106,-0.35142 -0.01918,-0.73118 -0.25,-0.96875 -0.356725,-0.36715 -0.835278,-0.53125 -1.3125,-0.53125 0,0 -4.4375,0 -4.4375,0 -0.93898,-2e-5 -1.735581,0.53284 -2.03125,1.46875 -0.03961,-0.3294 -0.0041,-0.67482 -0.21875,-0.90625 -0.354335,-0.38205 -0.835278,-0.5625 -1.3125,-0.5625 0,0 -4.4375,0 -4.4375,0 -0.954458,-2e-5 -1.780034,0.51209 -2.09375,1.46875 0,0 -0.5,1.5 -0.5,1.5 -0.12705,0.38743 -0.100069,0.86623 0.09375,1.25 -0.488335,0.2274 -0.859572,0.66202 -1.0625,1.25 -0.01042,-1.6e-4 -0.02083,-1.6e-4 -0.03125,0 0,0 -0.02942,0.057 -0.03125,0.0625 -0.02217,-0.33391 0.05809,-0.69358 -0.15625,-0.9375 C 67.430108,292.16289 66.945446,292 66.46875,292 c 0,0 -4.53125,0 -4.53125,0 -0.95339,0 -1.765397,0.46514 -2.125,1.40625 0,0 -0.02922,0.0571 -0.03125,0.0625 -0.01147,-0.19812 0.02259,-0.40569 0,-0.59375 0.545726,-0.21265 0.981483,-0.64147 1.21875,-1.28125 0,0 0.5625,-1.5 0.5625,-1.5 0.179465,-0.48392 0.129105,-1.11671 -0.21875,-1.53125 -0.347855,-0.41454 -0.866528,-0.59375 -1.34375,-0.59375 0,0 -4.4375,0 -4.4375,0 z m 124.46875,0 c -0.47723,-10e-6 -0.95826,0.19131 -1.3125,0.53125 -0.35424,0.33994 -0.54646,0.8825 -0.46875,1.40625 0,0 0.21875,1.5 0.21875,1.5 0.0798,0.53832 0.34906,0.94708 0.71875,1.21875 -0.26977,0.33547 -0.41592,0.81906 -0.34375,1.28125 0,0 0.25,1.5 0.25,1.5 0.0761,0.48761 0.32391,0.85876 0.65625,1.125 -0.32612,0.33975 -0.52016,0.86671 -0.4375,1.375 0,0 0.25,1.5 0.25,1.5 0.17473,1.07374 1.11146,1.625 2.0625,1.625 0,0 4.6875,0 4.6875,0 0.47552,0 0.94708,-0.17982 1.3125,-0.53125 0.26989,-0.25956 0.31039,-0.66816 0.34375,-1.0625 0.21406,1.06435 1.14271,1.59375 2.09375,1.59375 0,0 4.6875,0 4.6875,0 0.47552,0 0.94205,-0.14878 1.3125,-0.5 0.254,-0.24081 0.26705,-0.65396 0.3125,-1.03125 0.25227,1.05222 1.17396,1.53125 2.125,1.53125 0,0 4.6875,0 4.6875,0 0.47552,0 0.943,-0.16609 1.3125,-0.53125 0.3695,-0.36516 0.54773,-0.97545 0.40625,-1.5 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 0,0 -0.40625,-1.5 -0.40625,-1.5 -0.14437,-0.53537 -0.44735,-0.90971 -0.84375,-1.15625 0.27003,-0.37065 0.3959,-0.86963 0.28125,-1.3125 0,0 -0.375,-1.5 -0.375,-1.5 -0.1461,-0.56436 -0.46062,-0.9773 -0.875,-1.21875 0.23847,-0.36882 0.35298,-0.86254 0.25,-1.28125 0,0 -0.375,-1.5 -0.375,-1.5 -0.2439,-0.99158 -1.10808,-1.53123 -2.0625,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.47723,-10e-6 -0.96239,0.1954 -1.3125,0.5625 -0.22033,0.23102 -0.20073,0.57924 -0.25,0.90625 -0.25187,-0.92205 -1.05332,-1.46875 -1.96875,-1.46875 0,0 -4.46875,0 -4.46875,0 -0.47723,-10e-6 -0.96015,0.17815 -1.3125,0.53125 -0.22952,0.23 -0.22498,0.60044 -0.28125,0.9375 -0.24104,-0.9479 -1.0622,-1.46875 -1.96875,-1.46875 0,0 -4.4375,0 -4.4375,0 z m -23.03125,3.5 c 0.11392,0.71011 0.60204,1.21996 1.21875,1.4375 -0.0803,0.19647 -0.12542,0.43348 -0.15625,0.65625 -0.10414,-0.74332 -0.62988,-1.26775 -1.28125,-1.46875 -0.002,-6.2e-4 0.002,-0.0306 0,-0.0312 0.10195,-0.18702 0.1833,-0.37752 0.21875,-0.59375 z M 113.0625,291.5 c 0.0232,0.17627 0.0518,0.33615 0.0937,0.5 -0.14062,0 -0.14256,0 -0.28125,0 0.0799,-0.15281 0.14914,-0.31838 0.1875,-0.5 z m 8.09375,0 c 0.0253,0.16913 0.0512,0.33704 0.0937,0.5 -0.14056,0 -0.14357,0 -0.28125,0 0.0809,-0.15546 0.15147,-0.316 0.1875,-0.5 z m 8.0625,0 c 0.0288,0.17533 0.0701,0.33742 0.125,0.5 -0.15589,0 -0.16167,0 -0.3125,0 0.0805,-0.15519 0.15026,-0.31679 0.1875,-0.5 z m 35.875,0 c 0.0358,0.18021 0.0807,0.34922 0.15625,0.5 -0.13979,0 -0.14281,0 -0.28125,0 0.054,-0.16157 0.0958,-0.32771 0.125,-0.5 z M 85.25,291.53125 c 0.02875,0.25051 0.04355,0.49985 0.125,0.71875 -0.484087,0.24213 -0.869524,0.65358 -1.03125,1.25 -0.02549,-0.23994 -0.02276,-0.50632 -0.09375,-0.71875 0.468832,-0.23903 0.826246,-0.64776 1,-1.25 z m 8.0625,0 c 0.02955,0.2599 0.05336,0.52424 0.15625,0.75 -0.452621,0.25373 -0.80225,0.67248 -0.9375,1.25 -0.01405,-0.27176 -0.01907,-0.55064 -0.125,-0.78125 0.430938,-0.25455 0.755853,-0.67751 0.90625,-1.21875 z m 93.3125,0 c 0.12103,0.48859 0.38382,0.86798 0.75,1.125 -0.13851,0.23531 -0.14573,0.54366 -0.1875,0.84375 -0.11163,-0.49842 -0.37712,-0.90209 -0.75,-1.15625 0.12578,-0.23421 0.1418,-0.52798 0.1875,-0.8125 z m 8.0625,0 c 0.13351,0.51897 0.4448,0.90296 0.84375,1.15625 -0.12884,0.24326 -0.13258,0.54787 -0.15625,0.84375 -0.12652,-0.57023 -0.43216,-0.97059 -0.84375,-1.21875 0.1121,-0.22611 0.12149,-0.51306 0.15625,-0.78125 z m -117.5,0.0312 c 0.02271,0.22423 0.0083,0.45614 0.0625,0.65625 -0.505646,0.23167 -0.907219,0.64465 -1.09375,1.25 -0.02243,-0.21779 -0.0086,-0.45496 -0.0625,-0.65625 0.505308,-0.23158 0.903706,-0.64438 1.09375,-1.25 z m 71.75,0 c 0.13694,0.63587 0.57541,1.1227 1.125,1.34375 -0.10731,0.19071 -0.18825,0.42039 -0.21875,0.65625 -0.0945,-0.70073 -0.55073,-1.21702 -1.15625,-1.4375 0.10413,-0.1725 0.20436,-0.3551 0.25,-0.5625 z M 207.8125,292 c -0.47669,10e-6 -0.96403,0.14754 -1.3125,0.53125 -0.34847,0.38371 -0.48153,1.00687 -0.34375,1.5 0,0 0.40625,1.46875 0.40625,1.46875 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0.15326,0.54851 0.47111,0.92148 0.875,1.15625 -0.26953,0.37604 -0.38211,0.88987 -0.25,1.34375 0,0 0.4375,1.5 0.4375,1.5 0.20696,0.71088 0.71164,1.13723 1.3125,1.34375 -0.17301,0.35148 -0.23787,0.78441 -0.125,1.15625 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0,0 0.46875,1.5 0.46875,1.5 0.18013,0.59348 0.5592,0.96558 1.03125,1.1875 -0.23244,0.37715 -0.3224,0.88665 -0.1875,1.3125 0,0 0.46875,1.5 0.46875,1.5 0.20149,0.63607 0.60949,1.06043 1.125,1.28125 -0.19851,0.36992 -0.25428,0.82807 -0.125,1.21875 0,0 0.5,1.5 0.5,1.5 0.34141,1.03186 1.26477,1.4375 2.21875,1.4375 0,0 14,0 14,0 0.47699,0 0.96692,-0.12094 1.34375,-0.53125 0.30265,-0.32953 0.28895,-0.83915 0.21875,-1.28125 0.0757,0.18181 0.1875,0.4375 0.1875,0.4375 0.40896,0.97722 1.29602,1.375 2.25,1.375 0,0 5,0 5,0 0.47699,0 0.99947,-0.13458 1.375,-0.5625 0.28026,-0.31936 0.21383,-0.76948 0.15625,-1.1875 0.0345,0.0709 0.21875,0.46875 0.21875,0.46875 0.45552,0.93579 1.31037,1.28125 2.25,1.28125 0,0 5,0 5,0 0.4698,0 0.96276,-0.12535 1.34375,-0.5625 0.38099,-0.43715 0.42703,-1.16472 0.1875,-1.625 0,0 -2.90625,-5.59375 -2.90625,-5.59375 -0.24412,-0.46911 -0.62253,-0.71361 -1,-0.90625 -0.12981,-0.0663 -0.26794,-0.10913 -0.40625,-0.15625 0.18708,-0.41717 0.17843,-0.93905 0,-1.3125 0,0 -2.6875,-5.59375 -2.6875,-5.59375 -0.28954,-0.606 -0.74663,-0.97865 -1.28125,-1.15625 0.17429,-0.39877 0.1839,-0.85454 0.0312,-1.21875 0,0 -0.625,-1.5 -0.625,-1.5 -0.38797,-0.92567 -1.20289,-1.37498 -2.15625,-1.375 0,0 -4.53125,0 -4.53125,0 -0.4767,0 -0.99594,0.1461 -1.34375,0.5625 -0.20167,0.24144 -0.1066,0.58828 -0.125,0.90625 -0.004,-0.0105 -0.0312,-0.0937 -0.0312,-0.0937 -0.35961,-0.94108 -1.17161,-1.375 -2.125,-1.375 0,0 -4.53125,0 -4.53125,0 -0.4767,0 -1.00187,0.17747 -1.34375,0.59375 -0.21329,0.25971 -0.11615,0.60621 -0.125,0.9375 -0.007,-0.0208 -0.0625,-0.125 -0.0625,-0.125 C 222.264,292.4508 221.45339,292 220.5,292 c 0,0 -4.53125,0 -4.53125,0 -0.47669,0 -0.967,0.16295 -1.3125,0.5625 -0.20868,0.24132 -0.16061,0.58629 -0.1875,0.90625 -0.31214,-1.01288 -1.17162,-1.46875 -2.125,-1.46875 0,0 -4.53125,0 -4.53125,0 z m -99,1.03125 c 0.14052,0 0.14195,0 0.28125,0 -0.0731,0.14235 -0.14938,0.29892 -0.1875,0.46875 -0.0203,-0.15567 -0.0597,-0.31979 -0.0937,-0.46875 z m 8.1875,0 c 0.12499,0 0.12672,0 0.25,0 -0.0752,0.151 -0.12215,0.31918 -0.15625,0.5 -0.0209,-0.16583 -0.0547,-0.33885 -0.0937,-0.5 z m 8.1875,0 c 0.12478,0 0.12792,0 0.25,0 -0.0726,0.14998 -0.12577,0.32201 -0.15625,0.5 -0.024,-0.16864 -0.0441,-0.34041 -0.0937,-0.5 z m 8.125,0 c 0.15589,0 0.16167,0 0.3125,0 -0.075,0.15438 -0.12806,0.31685 -0.15625,0.5 -0.0268,-0.17766 -0.0842,-0.34576 -0.15625,-0.5 z m 16.5625,2.375 c 0.0239,0.2109 0.10105,0.38806 0.1875,0.5625 -0.16254,0 -0.1952,0 -0.375,0 0.0835,-0.17221 0.16307,-0.35958 0.1875,-0.5625 z m -24.65625,0.0312 c 0.023,0.18371 0.0696,0.35656 0.125,0.53125 -0.1213,0 -0.17408,0 -0.3125,0 0.0825,-0.16202 0.15759,-0.33744 0.1875,-0.53125 z m 8.21875,0 c 0.0276,0.18367 0.0649,0.35908 0.125,0.53125 -0.11595,0 -0.15305,0 -0.28125,0 0.0797,-0.16191 0.12809,-0.33603 0.15625,-0.53125 z m 8.21875,0 c 0.0246,0.19338 0.0777,0.36717 0.15625,0.53125 -0.13225,0 -0.16655,0 -0.3125,0 0.0801,-0.16357 0.13106,-0.33955 0.15625,-0.53125 z m 16.4375,0 c 0.0288,0.19433 0.0763,0.36963 0.15625,0.53125 -0.1282,0 -0.14496,0 -0.28125,0 0.0601,-0.17205 0.0977,-0.34684 0.125,-0.53125 z m 64.9375,0 c 0.0106,0.03 0.0625,0.15625 0.0625,0.15625 0.1907,0.53967 0.54101,0.89931 0.96875,1.125 -0.10149,0.23628 -0.0556,0.51099 -0.0625,0.78125 -0.004,-0.0108 -0.0312,-0.0937 -0.0312,-0.0937 -0.19143,-0.5323 -0.5393,-0.92059 -0.96875,-1.15625 0.0883,-0.23974 0.0282,-0.53205 0.0312,-0.8125 z m -155.46875,0.0312 c 0.0053,0.16384 -0.01296,0.3426 0,0.5 -0.05944,0 -0.146306,0 -0.21875,0 0.06702,-0.1161 0.138979,-0.23768 0.1875,-0.375 0,0 0.02491,-0.10709 0.03125,-0.125 z m 16.5,0 c 0.01245,0.17268 0.0072,0.33612 0.03125,0.5 -0.0767,0 -0.157962,0 -0.25,0 0.07505,-0.13545 0.141781,-0.27388 0.1875,-0.4375 0,0 0.02964,-0.057 0.03125,-0.0625 z m 16.4375,0 c 0.0186,0.17047 0.0558,0.33728 0.0937,0.5 -0.0958,0 -0.16812,0 -0.28125,0 0.0825,-0.15181 0.14554,-0.31695 0.1875,-0.5 z m 8.25,0 c 0.019,0.16767 0.0561,0.33742 0.0937,0.5 -0.10157,0 -0.16374,0 -0.28125,0 0.0813,-0.15267 0.14925,-0.31661 0.1875,-0.5 z m 8.21875,0 c 0.0234,0.16909 0.044,0.34013 0.0937,0.5 -0.0954,0 -0.1429,0 -0.25,0 0.0781,-0.15225 0.11996,-0.31575 0.15625,-0.5 z m 78.625,0 c 0.11843,0.51484 0.41332,0.90215 0.78125,1.15625 -0.15679,0.2413 -0.18933,0.56519 -0.21875,0.875 -0.11938,-0.51647 -0.4076,-0.90255 -0.78125,-1.15625 0.15015,-0.24651 0.20261,-0.56323 0.21875,-0.875 z m -136.25,0.0312 c 0.004,0.1554 -2.92e-4,0.31702 0,0.46875 -0.03636,0 -0.201432,0 -0.25,0 0.06802,-0.11114 0.13696,-0.21428 0.1875,-0.34375 0,0 0.05444,-0.10464 0.0625,-0.125 z m 32.9375,0 c 0.01738,0.16178 0.03674,0.31231 0.0625,0.46875 -0.08081,0 -0.154584,0 -0.25,0 0.07835,-0.14513 0.144613,-0.29183 0.1875,-0.46875 z m 95.0625,0 c 0.11072,0.47751 0.37245,0.84265 0.71875,1.09375 -0.19253,0.26397 -0.22687,0.62366 -0.25,0.96875 -0.0972,-0.50472 -0.36667,-0.88885 -0.71875,-1.15625 0.18184,-0.24133 0.20466,-0.57877 0.25,-0.90625 z M 75.8125,295.5625 c 0.01414,0.13328 0.01808,0.27612 0.03125,0.40625 -0.06336,0 -0.14295,0 -0.21875,0 0.06957,-0.1235 0.140972,-0.25919 0.1875,-0.40625 z m 139,0 c 0.17186,0.5432 0.50926,0.92378 0.9375,1.15625 -0.0968,0.23218 -0.0736,0.50527 -0.0937,0.78125 -0.002,-0.005 -0.0312,-0.0625 -0.0312,-0.0625 -0.1691,-0.5267 -0.49666,-0.88221 -0.90625,-1.125 0.10625,-0.2185 0.0799,-0.49118 0.0937,-0.75 z m 16.46875,0 c 0.002,0.005 0.0312,0.0625 0.0312,0.0625 0.24708,0.63291 0.7014,1.02234 1.25,1.21875 -0.14466,0.34735 -0.1449,0.77463 -0.0312,1.125 -0.11357,-0.28692 -0.25,-0.59375 -0.25,-0.59375 -0.21366,-0.53666 -0.5906,-0.89672 -1.03125,-1.125 0.003,-0.01 -0.002,-0.0215 0,-0.0312 0.0468,-0.20004 0.0174,-0.43325 0.0312,-0.65625 z M 61.5,297 c 0.06363,0 0.168784,0 0.25,0 -0.0674,0.11338 -0.137272,0.24317 -0.1875,0.375 0,0 -0.04703,0.14842 -0.0625,0.1875 0.0032,-0.18773 0.01582,-0.38226 0,-0.5625 z m 8.3125,0 c 0.06599,0 0.166794,0 0.25,0 -0.07222,0.124 -0.136773,0.25814 -0.1875,0.40625 0,0 -0.02743,0.083 -0.03125,0.0937 -0.01278,-0.16362 -0.01929,-0.34006 -0.03125,-0.5 z m 8.375,0 c 0.0656,0 0.140964,0 0.21875,0 -0.08368,0.14372 -0.134381,0.29399 -0.1875,0.46875 0,0 -0.02963,0.0569 -0.03125,0.0625 -0.01059,-0.17702 0.01519,-0.35737 0,-0.53125 z m 8.3125,0 c 0.0771,0 0.157539,0 0.25,0 -0.07973,0.1463 -0.140423,0.32264 -0.1875,0.5 -0.01042,-1.6e-4 -0.02083,-1.6e-4 -0.03125,0 C 86.51416,297.3362 86.51741,297.15986 86.5,297 Z m 8.34375,0 c 0.09361,0 0.169838,0 0.28125,0 -0.08852,0.16017 -0.173934,0.33374 -0.21875,0.53125 -0.01533,-0.17821 -0.02522,-0.36064 -0.0625,-0.53125 z m 8.3125,0 c 0.10644,0 0.18495,0 0.3125,0 -0.0924,0.17064 -0.17874,0.35009 -0.21875,0.5625 -0.0165,-0.1869 -0.0508,-0.3861 -0.0937,-0.5625 z m 8.375,0 c 0.10402,0 0.16177,0 0.28125,0 -0.0879,0.1645 -0.14922,0.32969 -0.1875,0.53125 -0.0215,-0.1772 -0.05,-0.36188 -0.0937,-0.53125 z m 8.3125,0 c 0.11772,0 0.17656,0 0.3125,0 -0.0835,0.16697 -0.15657,0.35948 -0.1875,0.5625 -0.0238,-0.19642 -0.0707,-0.37982 -0.125,-0.5625 z m 8.375,0 c 0.1257,0 0.17089,0 0.3125,0 -0.0903,0.17889 -0.15687,0.37299 -0.1875,0.59375 -0.0217,-0.20009 -0.0632,-0.40681 -0.125,-0.59375 z m 8.3125,0 c 0.14031,0 0.18525,0 0.34375,0 -0.0944,0.18241 -0.16109,0.37448 -0.1875,0.59375 -0.0211,-0.2096 -0.0712,-0.4138 -0.15625,-0.59375 z m 8.34375,0 c 0.15931,0 0.19695,0 0.375,0 -0.0845,0.1707 -0.16118,0.36274 -0.1875,0.5625 -0.0264,-0.20128 -0.10201,-0.39074 -0.1875,-0.5625 z m 8.375,0 c 0.13792,0 0.16285,0 0.3125,0 -0.0653,0.17768 -0.099,0.36254 -0.125,0.5625 -0.0308,-0.21088 -0.0979,-0.38865 -0.1875,-0.5625 z m 8.34375,0 c 0.0723,0 0.22863,0 0.3125,0 -0.0618,0.18694 -0.10331,0.39366 -0.125,0.59375 -0.0302,-0.21439 -0.0977,-0.41562 -0.1875,-0.59375 z m 71.28125,1.90625 c 0.15952,0.35694 0.34653,0.81108 0.625,1.4375 -0.19094,-0.11045 -0.40429,-0.19734 -0.625,-0.25 0.15181,-0.38001 0.13123,-0.83554 0,-1.1875 z m -113,0.5 c 0.0166,0.20569 0.0638,0.40737 0.125,0.59375 -0.0913,0 -0.1974,0 -0.3125,0 0.0922,-0.17797 0.15541,-0.37226 0.1875,-0.59375 z m 8.40625,0 c 0.0194,0.20067 0.0639,0.40789 0.125,0.59375 -0.097,0 -0.19277,0 -0.3125,0 0.0914,-0.1792 0.16004,-0.37189 0.1875,-0.59375 z m 8.375,0 c 0.0229,0.20293 0.0534,0.41075 0.125,0.59375 -0.10674,0 -0.1852,0 -0.3125,0 0.0903,-0.17835 0.15943,-0.37858 0.1875,-0.59375 z m 16.8125,0 c 0.0281,0.21514 0.0972,0.41541 0.1875,0.59375 -0.11562,0 -0.17851,0 -0.3125,0 0.0716,-0.183 0.10206,-0.39084 0.125,-0.59375 z m 8.375,0 c 0.0275,0.22183 0.0961,0.41456 0.1875,0.59375 l -0.3125,0 c 0.0612,-0.18565 0.10571,-0.39202 0.125,-0.59375 z M 61.0625,299.4375 c 0.0018,0.18095 -0.0092,0.38327 0,0.5625 -0.01212,0 -0.227622,0 -0.25,0 0.07154,-0.11698 0.133214,-0.23565 0.1875,-0.375 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 0,0 0.05139,-0.12664 0.0625,-0.15625 z m 16.8125,0 c 0.0046,0.18382 0.0087,0.3847 0.03125,0.5625 -0.04732,0 -0.208622,0 -0.28125,0 0.08053,-0.13746 0.166148,-0.26915 0.21875,-0.4375 0,0 0.02548,-0.10655 0.03125,-0.125 z m 8.40625,0 c 0.0097,0.18584 0.0029,0.38442 0.03125,0.5625 -0.04995,0 -0.180924,0 -0.25,0 0.07667,-0.13996 0.140666,-0.29781 0.1875,-0.46875 0,0 0.02818,-0.0824 0.03125,-0.0937 z m 16.8125,0 c 0.0162,0.18621 0.051,0.38628 0.0937,0.5625 -0.0748,0 -0.21053,0 -0.3125,0 0.0942,-0.17053 0.17658,-0.34835 0.21875,-0.5625 z m 8.40625,0 c 0.0197,0.19025 0.0455,0.37946 0.0937,0.5625 -0.0836,0 -0.20346,0 -0.3125,0 0.0925,-0.17124 0.18161,-0.34818 0.21875,-0.5625 z m 33.5625,0 c 0.0288,0.20294 0.0996,0.3909 0.1875,0.5625 -0.13085,0 -0.21613,0 -0.375,0 0.0879,-0.17163 0.15881,-0.35946 0.1875,-0.5625 z m 70.9375,0 c 0.006,0.0182 0.0312,0.125 0.0312,0.125 0.10743,0.32589 0.26224,0.5975 0.46875,0.8125 -0.17497,-0.10717 -0.36377,-0.18562 -0.5625,-0.25 0.05,-0.21334 0.0559,-0.45666 0.0625,-0.6875 z m -121.3125,0.0312 c 0.01487,0.17753 0.02541,0.36084 0.0625,0.53125 -0.06187,0 -0.196287,0 -0.28125,0 0.08995,-0.15984 0.172007,-0.33271 0.21875,-0.53125 z m 129.71875,0 c 0.006,0.0178 0.0312,0.125 0.0312,0.125 0.0906,0.24615 0.22723,0.44408 0.375,0.625 -0.13677,-0.0643 -0.28699,-0.0882 -0.4375,-0.125 0.0376,-0.19534 0.025,-0.41266 0.0312,-0.625 z M 69.46875,299.5 c 0.01223,0.16271 0.01946,0.34021 0.03125,0.5 -0.03377,0 -0.195002,0 -0.25,0 0.0747,-0.12517 0.134634,-0.25565 0.1875,-0.40625 0,0 0.02742,-0.0829 0.03125,-0.0937 z m 147.46875,1.21875 c 0.17393,0.10324 0.36367,0.16528 0.5625,0.21875 -0.0324,0.2092 -0.0311,0.43342 -0.0312,0.65625 -0.0101,-0.0302 -0.0625,-0.15625 -0.0625,-0.15625 -0.10227,-0.30547 -0.27043,-0.52901 -0.46875,-0.71875 z m 8.625,0.0937 c 0.14127,0.0646 0.28355,0.0888 0.4375,0.125 -0.0524,0.23853 -0.0478,0.49744 -0.0312,0.75 -0.0314,-0.0836 -0.0937,-0.28125 -0.0937,-0.28125 -0.0847,-0.22596 -0.18028,-0.42421 -0.3125,-0.59375 z m -162.6875,0.2188 c 0.03111,0 0.1972,0 0.25,0 -0.05965,0.10267 -0.110571,0.22476 -0.15625,0.34375 0,0 -0.06131,0.19931 -0.09375,0.28125 0.01019,-0.20533 0.02323,-0.42655 0,-0.625 z m 8.53125,0 c 0.04452,0 0.21085,0 0.28125,0 -0.07174,0.12356 -0.137189,0.25986 -0.1875,0.40625 0,0 -0.06293,0.19425 -0.09375,0.28125 0.01634,-0.22839 0.0348,-0.46361 0,-0.6875 z m 8.5,0 c 0.045,0 0.185089,0 0.25,0 -0.07155,0.12918 -0.140183,0.28162 -0.1875,0.4375 0,0 -0.0258,0.10631 -0.03125,0.125 -0.0063,-0.19176 -0.0019,-0.37772 -0.03125,-0.5625 z m 8.5,0 c 0.05652,0 0.20065,0 0.28125,0 -0.07583,0.14054 -0.142124,0.29645 -0.1875,0.46875 0,0 -0.02648,0.1059 -0.03125,0.125 -0.0027,-0.1956 -0.02451,-0.40623 -0.0625,-0.59375 z m 8.53125,0 c 0.065,0 0.193525,0 0.28125,0 -0.07896,0.15072 -0.145729,0.31284 -0.1875,0.5 0,0 -0.02685,0.10581 -0.03125,0.125 -0.0029,-0.21507 -0.0132,-0.42414 -0.0625,-0.625 z m 8.5,0 c 0.0704,0 0.18903,0 0.28125,0 -0.0845,0.16147 -0.15032,0.32812 -0.1875,0.53125 -0.01,-0.17696 -0.0483,-0.36316 -0.0937,-0.53125 z m 8.5,0 c 0.084,0 0.20294,0 0.3125,0 -0.086,0.1689 -0.15765,0.35345 -0.1875,0.5625 -0.0154,-0.19411 -0.0688,-0.38097 -0.125,-0.5625 z m 8.53125,0 c 0.0923,0 0.19636,0 0.3125,0 -0.092,0.17883 -0.16128,0.37318 -0.1875,0.59375 -0.0125,-0.20883 -0.0632,-0.40138 -0.125,-0.59375 z m 8.5625,0 c 0.10247,0 0.18836,0 0.3125,0 -0.094,0.18828 -0.16705,0.39347 -0.1875,0.625 -0.0118,-0.21932 -0.0513,-0.43031 -0.125,-0.625 z m 8.5,0 c 0.11798,0 0.20124,0 0.34375,0 -0.0865,0.1796 -0.16704,0.37244 -0.1875,0.59375 -0.0191,-0.20908 -0.0763,-0.41113 -0.15625,-0.59375 z m 8.53125,0 c 0.114,0 0.17961,0 0.3125,0 -0.0845,0.19351 -0.13825,0.40554 -0.15625,0.625 -0.0206,-0.22708 -0.0664,-0.4325 -0.15625,-0.625 z m 8.5,0 c 0.11822,0 0.1765,0 0.3125,0 -0.0735,0.19525 -0.11114,0.40856 -0.125,0.625 -0.0177,-0.23522 -0.0942,-0.43579 -0.1875,-0.625 z m -59.78125,2.25 c -0.004,0.2312 0.0066,0.4681 0.0625,0.6875 -0.116166,0 -0.178413,0 -0.3125,0 0.07952,-0.14874 0.14523,-0.31789 0.1875,-0.5 0,0 0.05158,-0.14385 0.0625,-0.1875 z m -25.75,0.0312 c -0.01444,0.21617 -0.02925,0.44718 0,0.65625 -0.09044,0 -0.173095,0 -0.28125,0 0.06827,-0.11707 0.138386,-0.23571 0.1875,-0.375 0,0 0.06378,-0.19662 0.09375,-0.28125 z m 17.1875,0 c -0.0051,0.21211 -0.01184,0.44872 0.03125,0.65625 -0.100302,0 -0.165355,0 -0.28125,0 0.07853,-0.14169 0.139853,-0.29376 0.1875,-0.46875 0,0 0.05106,-0.14528 0.0625,-0.1875 z m 42.875,0 c 0.009,0.22119 0.0517,0.45572 0.125,0.65625 -0.13559,0 -0.16479,0 -0.3125,0 0.0991,-0.19477 0.17001,-0.41138 0.1875,-0.65625 z m 95.28125,0 c 0.0409,0.10334 0.125,0.3125 0.125,0.3125 0.23531,0.613 0.67015,0.98581 1.1875,1.1875 -0.10001,0.27331 -0.0614,0.60038 -0.0312,0.90625 -0.0472,-0.11917 -0.125,-0.34375 -0.125,-0.34375 -0.23797,-0.60818 -0.67176,-1.00632 -1.1875,-1.21875 0.0855,-0.25983 0.0546,-0.55609 0.0312,-0.84375 z m -163.90625,0.0312 c -0.0066,0.21022 -0.02078,0.41967 0,0.625 -0.03007,0 -0.242275,0 -0.28125,0 0.0617,-0.10371 0.108765,-0.22286 0.15625,-0.34375 0,0 0.09013,-0.19317 0.125,-0.28125 z m 77.1875,0 c 0.0174,0.21963 0.0466,0.43019 0.125,0.625 -0.14107,0 -0.16142,0 -0.3125,0 0.0944,-0.18856 0.16991,-0.39236 0.1875,-0.625 z m 8.5625,0 c 0.0156,0.23222 0.0908,0.43406 0.1875,0.625 -0.14308,0 -0.16031,0 -0.3125,0 0.0781,-0.19368 0.10919,-0.40313 0.125,-0.625 z m 8.59375,0 c 0.0195,0.2318 0.096,0.43936 0.1875,0.625 -0.0828,0 -0.2368,0 -0.3125,0 0.0776,-0.19368 0.10851,-0.40655 0.125,-0.625 z m 61,0 c 0.0249,0.0703 0.0937,0.25 0.0937,0.25 0.20621,0.60006 0.60808,0.9746 1.09375,1.1875 -0.10205,0.26379 -0.0738,0.5763 -0.0625,0.875 -0.0249,-0.0703 -0.0937,-0.25 -0.0937,-0.25 -0.21193,-0.60649 -0.62154,-0.998 -1.125,-1.21875 0.0974,-0.25403 0.0998,-0.54802 0.0937,-0.84375 z M 79.625,303.375 c 1.16e-4,0.19735 0.0022,0.40453 0.03125,0.59375 -0.09471,0 -0.16968,0 -0.28125,0 0.07077,-0.12486 0.140653,-0.25632 0.1875,-0.40625 0,0 0.04954,-0.14603 0.0625,-0.1875 z m 42.90625,0 c 0.0146,0.20111 0.0337,0.41104 0.0937,0.59375 -0.13205,0 -0.16718,0 -0.3125,0 0.10338,-0.17695 0.19301,-0.36309 0.21875,-0.59375 z m -8.59375,0.0312 c 0.0146,0.18699 0.0713,0.38527 0.125,0.5625 -0.12579,0 -0.17143,0 -0.3125,0 0.0892,-0.17019 0.15516,-0.3494 0.1875,-0.5625 z m -8.59375,0.0312 c 0.0122,0.18277 0.0432,0.35703 0.0937,0.53125 -0.10989,0 -0.15792,0 -0.28125,0 0.0852,-0.15954 0.14956,-0.33356 0.1875,-0.53125 z m 129.75,0.40625 c 0.1383,0.25978 0.30082,0.487 0.5,0.65625 -0.18041,-0.14876 -0.40725,-0.22818 -0.625,-0.3125 0.0556,-0.10812 0.0965,-0.22521 0.125,-0.34375 z m -43.5,0.125 c -0.48167,10e-6 -0.97091,0.1564 -1.34375,0.5 -0.37284,0.3436 -0.58813,0.9547 -0.46875,1.5 0,0 0.3125,1.5 0.3125,1.5 0.13454,0.61454 0.50983,1.00267 0.96875,1.25 -0.19447,0.31868 -0.26793,0.73391 -0.21875,1.125 -0.0234,-0.10195 -0.0625,-0.3125 -0.0625,-0.3125 -0.23834,-1.08893 -1.16359,-1.53125 -2.125,-1.53125 0,0 -4.90625,0 -4.90625,0 -0.4807,0 -0.93472,0.14757 -1.3125,0.46875 -0.37778,0.32118 -0.66752,0.90082 -0.5625,1.46875 0,0 0.28125,1.5 0.28125,1.5 0.10392,0.56188 0.4614,0.9417 0.84375,1.1875 0.38235,0.2458 0.83551,0.375 1.3125,0.375 0,0 5,0 5,0 0.47699,0 0.96234,-0.1324 1.34375,-0.46875 0.35019,-0.30882 0.49552,-0.86372 0.4375,-1.375 0.0234,0.10198 0.0625,0.3125 0.0625,0.3125 0.12617,0.55168 0.46107,0.91654 0.84375,1.15625 0.38268,0.23971 0.83551,0.375 1.3125,0.375 0,0 5,0 5,0 0.47699,0 0.96738,-0.13646 1.34375,-0.5 0.34517,-0.3334 0.45294,-0.88634 0.375,-1.375 0.0377,0.13925 0.0937,0.375 0.0937,0.375 0.29434,1.08024 1.23352,1.5 2.1875,1.5 0,0 5,0 5,0 0.47699,0 0.9676,-0.12175 1.34375,-0.5 0.37615,-0.37825 0.53048,-1.02409 0.375,-1.53125 0,0 -0.4375,-1.5 -0.4375,-1.5 -0.31942,-1.04196 -1.2261,-1.46875 -2.1875,-1.46875 0,0 -4.9375,0 -4.9375,0 -0.4807,0 -0.97092,0.1405 -1.34375,0.5 -0.32549,0.31386 -0.39796,0.83448 -0.34375,1.3125 -0.0261,-0.10438 -0.0937,-0.3125 -0.0937,-0.3125 -0.16114,-0.61323 -0.53109,-1.01741 -1,-1.25 0.24094,-0.35949 0.35631,-0.82739 0.25,-1.25 0,0 -0.375,-1.5 -0.375,-1.5 -0.26724,-1.06227 -1.19288,-1.53125 -2.15625,-1.53125 0,0 -4.8125,0 -4.8125,0 z m 44.0625,0.5625 c 0.20033,0.15912 0.41486,0.26271 0.65625,0.34375 -0.0526,0.1327 -0.0796,0.29324 -0.0937,0.4375 -0.14262,-0.32013 -0.33227,-0.57839 -0.5625,-0.78125 z M 64.875,305 c 0.09345,0 0.195825,0 0.3125,0 -0.0705,0.11664 -0.134533,0.23634 -0.1875,0.375 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0,0 -0.07975,0.22308 -0.125,0.34375 0.02837,-0.24846 0.04353,-0.51004 0,-0.75 z m 8.6875,0 c 0.110535,0 0.207386,0 0.34375,0 -0.083,0.13625 -0.162469,0.272 -0.21875,0.4375 0,0 -0.07008,0.17899 -0.09375,0.25 0.0078,-0.23111 0.01071,-0.46928 -0.03125,-0.6875 z m 8.6875,0 c 0.116301,0 0.202896,0 0.34375,0 -0.08265,0.14217 -0.136557,0.29788 -0.1875,0.46875 0,0 -0.07075,0.1764 -0.09375,0.25 C 82.3215,305.47708 82.29923,305.23177 82.25,305 Z m 8.71875,0 c 0.101211,0 0.164468,0 0.28125,0 -0.0825,0.14826 -0.140798,0.31772 -0.1875,0.5 0,0 -0.02648,0.1059 -0.03125,0.125 -0.0029,-0.20253 -0.01957,-0.42927 -0.0625,-0.625 z m 8.71875,0 c 0.118704,0 0.176441,0 0.3125,0 -0.08977,0.16242 -0.175047,0.32728 -0.21875,0.53125 0,0 -0.02519,0.12718 -0.03125,0.15625 -5.26e-4,-0.22666 -0.0068,-0.47432 -0.0625,-0.6875 z m 8.6875,0 c 0.12397,0 0.17272,0 0.3125,0 -0.0864,0.16653 -0.15147,0.35345 -0.1875,0.5625 0,0 -0.0276,0.10568 -0.0312,0.125 -0.005,-0.23102 -0.0243,-0.47488 -0.0937,-0.6875 z m 8.6875,0 c 0.14085,0 0.18545,0 0.34375,0 -0.0998,0.1878 -0.18748,0.38524 -0.21875,0.625 -0.007,-0.21127 -0.0551,-0.43335 -0.125,-0.625 z m 8.71875,0 c 0.13302,0 0.1664,0 0.3125,0 -0.10035,0.19545 -0.16535,0.40598 -0.1875,0.65625 -0.01,-0.22348 -0.0491,-0.45173 -0.125,-0.65625 z m 8.6875,0 c 0.13606,0 0.16443,0 0.3125,0 -0.0962,0.19908 -0.14446,0.43439 -0.15625,0.6875 -0.0118,-0.24264 -0.0683,-0.47892 -0.15625,-0.6875 z m 8.75,0 c 0.15654,0 0.17605,0 0.34375,0 -0.0948,0.1868 -0.1662,0.40235 -0.1875,0.625 -0.0198,-0.22604 -0.0661,-0.43224 -0.15625,-0.625 z m 8.6875,0 c 0.15953,0 0.17453,0 0.34375,0 -0.0947,0.20211 -0.17211,0.41863 -0.1875,0.65625 -0.017,-0.23597 -0.0621,-0.46391 -0.15625,-0.65625 z M 64.5,307.25 c -0.02827,0.24795 -0.04384,0.51246 0,0.75 -0.08513,0 -0.23601,0 -0.34375,0 0.07064,-0.11473 0.134744,-0.24018 0.1875,-0.375 0,0 0.100062,-0.23305 0.15625,-0.375 z m 8.75,0.0312 c -0.0183,0.23709 -0.01907,0.48953 0.03125,0.71875 -0.156161,0 -0.157913,0 -0.3125,0 0.07515,-0.12533 0.134585,-0.2548 0.1875,-0.40625 0,0 0.05841,-0.21273 0.09375,-0.3125 z m 26.28125,0 c -0.0051,0.23958 0.02395,0.49249 0.09375,0.71875 -0.147337,0 -0.166155,0 -0.3125,0 0.08695,-0.15716 0.144348,-0.33826 0.1875,-0.53125 0,0 0.02212,-0.14766 0.03125,-0.1875 z m 128.53125,0 c 0.0471,0.11886 0.125,0.34375 0.125,0.34375 0.26907,0.67165 0.75803,1.05738 1.34375,1.25 -0.099,0.292 -0.0854,0.62542 -0.0312,0.9375 -0.0758,-0.18199 -0.1875,-0.4375 -0.1875,-0.4375 -0.26058,-0.63751 -0.75003,-0.99263 -1.3125,-1.1875 0.0977,-0.273 0.088,-0.60113 0.0625,-0.90625 z m -146.03125,0.0312 c -0.0071,0.22601 -0.01023,0.47232 0.03125,0.6875 -0.01034,0 -0.306095,0 -0.3125,0 0.07227,-0.12899 0.139476,-0.2813 0.1875,-0.4375 0,0 0.07142,-0.17853 0.09375,-0.25 z m 26.28125,0 c 0.007,0.23642 0.0494,0.46765 0.125,0.6875 -0.18451,0 -0.1898,0 -0.375,0 0.0913,-0.16927 0.17966,-0.34736 0.21875,-0.5625 0,0 0.0276,-0.10556 0.0312,-0.125 z m 26.28125,0 c 0.007,0.24577 0.0613,0.48095 0.15625,0.6875 -0.10185,0 -0.29889,0 -0.375,0 0.10823,-0.20644 0.20411,-0.42559 0.21875,-0.6875 z m -43.8125,0.0312 c 0.0012,0.21448 0.01339,0.448 0.0625,0.65625 -0.09951,0 -0.21545,0 -0.3125,0 0.08382,-0.14934 0.138377,-0.315 0.1875,-0.5 0.01042,1.6e-4 0.02083,1.6e-4 0.03125,0 0,0 0.02412,-0.12773 0.03125,-0.15625 z m 35.03125,0 c 0.009,0.22467 0.0708,0.4571 0.15625,0.65625 -0.047,0 -0.29263,0 -0.34375,0 0.10226,-0.19454 0.16355,-0.41143 0.1875,-0.65625 z m 26.3125,0 c 0.0206,0.2368 0.0911,0.45713 0.1875,0.65625 -0.0299,-10e-4 -0.0639,0 -0.0937,0 0,0 -0.23256,0 -0.25,0 0.0915,-0.20058 0.13925,-0.42677 0.15625,-0.65625 z m 67.15625,0 c 0.0248,0.0701 0.0937,0.25 0.0937,0.25 0.0536,0.14926 0.11205,0.28196 0.1875,0.40625 -0.1549,0 -0.15924,0 -0.3125,0 0.0352,-0.21121 0.0363,-0.44026 0.0312,-0.65625 z m -75.9375,0.0312 c 0.043,0.45235 0.23518,0.88515 0.53125,1.15625 -0.29667,0.28409 -0.51399,0.70517 -0.53125,1.1875 -0.003,-0.49439 -0.24603,-0.90171 -0.5625,-1.1875 0.3006,-0.26481 0.50978,-0.69563 0.5625,-1.15625 z m -26.28125,0.0312 c 0.0125,0.20686 0.0533,0.40553 0.125,0.59375 -0.11894,0 -0.19161,0 -0.3125,0 0.0905,-0.17574 0.15617,-0.36955 0.1875,-0.59375 z m 119.90625,0.0312 c 0.22549,0.46215 0.30682,0.59714 0.59375,1.1875 -0.22129,-0.18962 -0.45412,-0.35991 -0.71875,-0.46875 0.10507,-0.22719 0.1312,-0.46594 0.125,-0.71875 z M 56.1875,309.03125 c 0.147435,0 0.168277,0 0.3125,0 -0.0574,0.0935 -0.109546,0.20465 -0.15625,0.3125 0,0 -0.108062,0.25593 -0.1875,0.4375 0.03623,-0.24719 0.06346,-0.5082 0.03125,-0.75 z m 10.875,0 c 0.122288,0 0.223126,0 0.375,0 -0.07767,0.11626 -0.164862,0.23303 -0.21875,0.375 0,0 -0.09577,0.24497 -0.15625,0.40625 0.03663,-0.25227 0.04604,-0.52819 0,-0.78125 z m 11.875,0 c 0.08681,0 0.254972,0 0.3125,0 -0.07239,0.12568 -0.138784,0.25456 -0.1875,0.40625 0,0 -0.06174,0.21005 -0.09375,0.3125 0.01879,-0.23481 0.01999,-0.49165 -0.03125,-0.71875 z m 52.34375,0 c 0.13472,0 0.23481,0 0.34375,0 -0.0933,0.19118 -0.17209,0.41259 -0.1875,0.65625 -0.005,-0.23357 -0.0669,-0.45584 -0.15625,-0.65625 z m 22.75,0 c 0.0214,6.3e-4 0.041,0 0.0625,0 0,0 0.27328,0 0.28125,0 -0.0939,0.2057 -0.14995,0.44481 -0.15625,0.6875 -0.0103,-0.26444 -0.0811,-0.48076 -0.1875,-0.6875 z m 10.875,0 c 0.16996,0 0.17527,0 0.34375,0 -0.0864,0.19297 -0.1491,0.39999 -0.15625,0.625 -0.0213,-0.23043 -0.0911,-0.44361 -0.1875,-0.625 z" - id="path3657" /> - </clipPath> - <filter - inkscape:collect="always" - id="filter3695" - x="-0.011979384" - width="1.0239588" - y="-0.10593307" - height="1.2118661" - style="color-interpolation-filters:sRGB"> - <feGaussianBlur - inkscape:collect="always" - stdDeviation="1.0151921" - id="feGaussianBlur3697" /> - </filter> - <linearGradient - id="linearGradient4264"> - <stop - id="stop4266" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - style="stop-color:#959793;stop-opacity:1;" - offset="0.5" - id="stop2689" /> - <stop - id="stop2691" - offset="0.75" - style="stop-color:#b5b7b3;stop-opacity:1;" /> - <stop - id="stop4268" - offset="1" - style="stop-color:#d6d7d3;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient2703"> - <stop - id="stop2705" - offset="0" - style="stop-color:#555753;stop-opacity:1" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0.30842987" - id="stop6528" /> - <stop - id="stop6530" - offset="0.62499988" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - id="stop2711" - offset="1" - style="stop-color:#d6d7d3;stop-opacity:1;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3675"> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0" - id="stop3677" /> - <stop - style="stop-color:#ffffff;stop-opacity:0" - offset="1" - id="stop3679" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - id="linearGradient3541"> - <stop - style="stop-color:#888a85;stop-opacity:1;" - offset="0" - id="stop3543" /> - <stop - style="stop-color:#888a85;stop-opacity:0;" - offset="1" - id="stop3545" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5513" - id="linearGradient8775" - gradientUnits="userSpaceOnUse" - x1="141.5" - y1="250.75" - x2="141.5" - y2="201.40486" - gradientTransform="matrix(0.43678839,0,0,0.43678839,6.7525729,3.8505364)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="radialGradient8777" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.4968982,2.1470449e-7,0,0.6915626,-172.0323,81.837652)" - cx="111.15084" - cy="242.43991" - fx="111.15084" - fy="242.43991" - r="48" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5615" - id="linearGradient8779" - gradientUnits="userSpaceOnUse" - x1="142.25" - y1="203.9586" - x2="142.25" - y2="224.5" - gradientTransform="matrix(0.43678839,0,0,0.43678839,6.7525729,3.8505364)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5316" - id="linearGradient8781" - gradientUnits="userSpaceOnUse" - x1="176.42314" - y1="357.41705" - x2="176.42314" - y2="373.22336" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient10629-2" - id="radialGradient8783" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.70636026,-0.23576099,0.5615853,1.7290985,-109.85309,-134.48335)" - cx="160.52614" - cy="145.72731" - fx="160.52614" - fy="145.72731" - r="111.99998" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3288" - id="linearGradient8785" - gradientUnits="userSpaceOnUse" - x1="44" - y1="71.25" - x2="125.5" - y2="207.5" - gradientTransform="matrix(0.43678839,0,0,0.43678839,6.7525729,3.8505364)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient12756-7" - id="radialGradient8787" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(6.3760225,0,0,2.7816419,-81.665785,-13.267156)" - cx="24.006104" - cy="37.921711" - fx="24.006104" - fy="37.921711" - r="19.00016" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5687" - id="linearGradient8789" - gradientUnits="userSpaceOnUse" - x1="88" - y1="44.5" - x2="178" - y2="202.5" - gradientTransform="matrix(0.43678839,0,0,0.43678839,6.7525729,3.8505364)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4788" - id="radialGradient8791" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-4.5773323,2.0113271e-6,-1.4332119e-6,-3.2616709,1560.2075,225.34913)" - cx="326.0206" - cy="58" - fx="326.0206" - fy="58" - r="12.5" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5316" - id="linearGradient8793" - gradientUnits="userSpaceOnUse" - x1="77.5" - y1="-121.5" - x2="70.5" - y2="-453.5" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5351" - id="radialGradient8795" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.1119712,0.45344785,-0.26494671,0.65556779,-67.877263,-76.017614)" - cx="131.57802" - cy="71.691467" - fx="131.57802" - fy="71.691467" - r="111.8125" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5361" - id="radialGradient8797" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.7951679,-0.79516798,0.20293355,0.20293355,-11.943442,93.635308)" - cx="158.95222" - cy="-282.6434" - fx="158.95222" - fy="-282.6434" - r="105.00002" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5371" - id="radialGradient8799" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(40.359357,-40.359357,123.56454,123.56452,-6441.5065,-26728.886)" - cx="-253.64368" - cy="134.02652" - fx="-253.64368" - fy="134.02652" - r="0.49997711" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5496" - id="linearGradient8801" - gradientUnits="userSpaceOnUse" - x1="99.998619" - y1="251.5" - x2="196.0014" - y2="251.5" - gradientTransform="matrix(0.43678839,0,0,0.43678839,6.7525729,3.8505364)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5496" - id="linearGradient8803" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.43678839,0,0,0.2723504,6.7525729,44.636295)" - x1="99.998619" - y1="251.5" - x2="196.0014" - y2="251.5" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5544" - id="radialGradient8805" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.3227812,0.3928667,-0.07858802,0.26460553,-87.323733,-4.8386686)" - cx="130.45143" - cy="244.43008" - fx="130.45143" - fy="244.43008" - r="48" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4070" - id="radialGradient8807" - gradientUnits="userSpaceOnUse" - cx="103.875" - cy="250" - fx="103.875" - fy="250" - r="1.5" - gradientTransform="matrix(0.76437969,0,0,0.76437969,-27.275973,-78.047287)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5701" - id="radialGradient8809" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(24.673911,184.16858,-78.65515,42.151165,9708.585,-12332.21)" - cx="36.777901" - cy="134.5195" - fx="36.777901" - fy="134.5195" - r="1" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5701" - id="radialGradient8811" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(24.673911,184.16858,-78.65515,42.151165,9927.585,-12332.21)" - cx="36.80687" - cy="134.60487" - fx="36.80687" - fy="134.60487" - r="1" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5555" - id="radialGradient8813" - gradientUnits="userSpaceOnUse" - cx="103.875" - cy="250" - fx="103.875" - fy="250" - r="1.5" - gradientTransform="matrix(0.45552364,0,0,0.45552364,43.193107,-0.91049164)" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5361" - id="radialGradient8815" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.83131371,-0.79516798,0.21215826,0.20293355,-15.731849,90.141001)" - cx="176.81648" - cy="-212.64468" - fx="176.81648" - fy="-212.64468" - r="105.00002" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4090" - id="linearGradient8817" - gradientUnits="userSpaceOnUse" - x1="241.38858" - y1="204" - x2="242" - y2="206.97127" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4134" - id="linearGradient8819" - gradientUnits="userSpaceOnUse" - x1="242.00729" - y1="206.01898" - x2="242.00729" - y2="207.75003" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4249" - id="radialGradient8821" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.6126938,0,0,0.95,-146.39552,11.1625)" - cx="238.9375" - cy="200.75" - fx="238.9375" - fy="200.75" - r="5" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4453" - id="linearGradient8823" - gradientUnits="userSpaceOnUse" - x1="241.47696" - y1="205" - x2="241.47696" - y2="207" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4383" - id="linearGradient8825" - gradientUnits="userSpaceOnUse" - x1="236.60001" - y1="212.5311" - x2="237.52275" - y2="220.51111" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4788" - id="radialGradient8827" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-4.5773323,2.0113271e-6,-1.4332119e-6,-3.2616709,1541.4256,225.34913)" - cx="326.0206" - cy="58" - fx="326.0206" - fy="58" - r="12.5" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="linearGradient3758" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-14,4)" - x1="213.42291" - y1="231.53627" - x2="209.17815" - y2="217.16422" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4325" - id="linearGradient3760" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-14,4)" - x1="210.42291" - y1="227.53627" - x2="208.92815" - y2="221.03627" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient2748" - id="radialGradient3762" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.9950172,-1.7234204,1.1254929,-0.6498033,7.41235,817.82855)" - cx="139.85194" - cy="260.93466" - fx="139.85194" - fy="260.93466" - r="112.59389" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2740" - id="linearGradient3764" - gradientUnits="userSpaceOnUse" - x1="147.5" - y1="353.40439" - x2="145.43736" - y2="404.6619" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3942" - id="linearGradient3766" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-4,80)" - x1="104.72572" - y1="314.39676" - x2="104.72572" - y2="289.55798" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3715" - id="linearGradient3768" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.9803676,2.25)" - x1="94.5" - y1="259.75" - x2="94.5" - y2="235.96713" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient3861" - id="radialGradient3770" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.1774688,-1.1613176e-8,0,0.3560831,-177.83044,141.19514)" - cx="149.3125" - cy="348.38739" - fx="149.3125" - fy="348.38739" - r="105.3125" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4386" - id="radialGradient3772" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,-1.836066,1.6124238,0.8781949,-409.36596,115.94962)" - cx="45.125" - cy="253.25" - fx="45.125" - fy="253.25" - r="7.625" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient4394" - id="radialGradient3774" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.9435027,1.6341946,-1.4749495,0.8515625,384.2803,-374.48218)" - cx="253.5" - cy="252.875" - fx="253.5" - fy="252.875" - r="8" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3647" - id="linearGradient3776" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(3.9803676,72.25)" - x1="213.10431" - y1="170.25215" - x2="213.10431" - y2="168" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4264" - id="linearGradient3778" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.7499999,-346.69272,215.00002)" - x1="448.4375" - y1="235.99219" - x2="448.4375" - y2="240" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4264" - id="linearGradient3780" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.007664,0,0,0.7541425,-350.43832,216.04722)" - x1="440.875" - y1="227.9863" - x2="440.875" - y2="232.00002" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4264" - id="linearGradient3782" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.7398648,-346.93271,216.99327)" - x1="451.6875" - y1="241.94521" - x2="451.6875" - y2="246" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4264" - id="linearGradient3784" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.7499999,-346.62812,214.00002)" - x1="452.625" - y1="247.99777" - x2="452.625" - y2="252" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4264" - id="linearGradient3786" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.7636349,-346.70319,209.9822)" - x1="454" - y1="254.07143" - x2="454" - y2="258.00198" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient4264" - id="linearGradient3788" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.5999993,-346.69272,252.0002)" - x1="451.25" - y1="260" - x2="451.25" - y2="265" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2703" - id="linearGradient3790" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.6363633,-346.69272,242.36374)" - x1="592.78613" - y1="253.99997" - x2="592.78613" - y2="264.99997" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2703" - id="linearGradient3792" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.6999999,-346.69272,226.60002)" - x1="591.43353" - y1="241.99364" - x2="591.43353" - y2="252.00058" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3675" - id="linearGradient3794" - gradientUnits="userSpaceOnUse" - x1="117.125" - y1="261" - x2="117.125" - y2="240.76007" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3796" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3798" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3800" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3802" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3804" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3806" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3808" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3810" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3541" - id="linearGradient3812" - gradientUnits="userSpaceOnUse" - x1="158.5" - y1="382" - x2="158.5" - y2="404.53223" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.979899" - inkscape:cx="206.03662" - inkscape:cy="-11.488279" - inkscape:document-units="px" - inkscape:current-layer="g2770" - showgrid="true" - inkscape:window-width="1200" - inkscape:window-height="798" - inkscape:window-x="366" - inkscape:window-y="70" - inkscape:window-maximized="0" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0"> - <inkscape:grid - type="xygrid" - id="grid5677" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" - originx="8.9073951" - originy="-140.94662" /> - </sodipodi:namedview> - <metadata - id="metadata4723"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(8.9073951,-771.41555)"> - <g - transform="matrix(0.43678839,0,0,0.43678839,-13.24745,760.22213)" - style="display:inline;enable-background:new" - id="g5060"> - <g - transform="matrix(0.8684452,0,0,0.8684452,42.04991,29.871449)" - id="g3573" - style="display:inline;enable-background:new"> - <path - style="display:inline;opacity:0.7;fill:none;stroke:url(#linearGradient3758);stroke-width:1.15148318;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4363);enable-background:new" - d="m 208.5,255 c -36.93504,-41.26382 27.92124,-15.92911 34,-28 6.60097,-13.10785 -120.39475,18.15576 -119.63782,-47.67157" - id="path4357" - sodipodi:nodetypes="css" - inkscape:connector-curvature="0" /> - <path - style="display:inline;opacity:0.7;fill:none;stroke:url(#linearGradient3760);stroke-width:0.57574159;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter4353);enable-background:new" - d="m 208.5,255 c -36.93504,-41.26382 27.92124,-15.92911 34,-28 6.60097,-13.10785 -120.39475,18.15576 -119.63782,-47.67157" - id="path4323" - sodipodi:nodetypes="css" - inkscape:connector-curvature="0" /> - <g - id="g3569"> - <path - id="path4291" - d="m 150.5,175.375 c -1.80944,16.18787 3.57797,26.96266 12.53125,33.84375 8.95328,6.88109 21.33929,9.97794 33.65625,11.5 12.31696,1.52206 24.61016,1.44261 33.34375,1.8125 4.36679,0.18494 7.85588,0.49346 9.875,1.09375 1.00956,0.30014 1.60095,0.69442 1.78125,0.9375 0.1803,0.24308 0.21449,0.38792 -0.0937,1 -0.5676,1.12711 -1.88943,1.92802 -4.03125,2.4375 -2.14182,0.50948 -4.98306,0.67251 -8.125,0.65625 -6.28389,-0.0325 -13.813,-0.76309 -20.09375,-0.59375 -3.14038,0.0847 -5.97092,0.38298 -8.25,1.1875 -2.27908,0.80452 -4.09475,2.22183 -4.6875,4.40625 -0.59275,2.18442 0.001,4.85419 1.8125,8.25 1.81134,3.39581 4.88283,7.55678 9.53125,12.75 l 1.5,-1.3125 c -4.58534,-5.12274 -7.56231,-9.211 -9.25,-12.375 -1.68769,-3.164 -2.04477,-5.34946 -1.65625,-6.78125 0.38852,-1.43179 1.47822,-2.3819 3.40625,-3.0625 1.92803,-0.6806 4.61811,-0.98059 7.65625,-1.0625 6.07628,-0.16382 13.59915,0.56045 20.03125,0.59375 3.21605,0.0166 6.13826,-0.14209 8.5625,-0.71875 2.42424,-0.57666 4.45416,-1.60938 5.40625,-3.5 0.51688,-1.0264 0.50003,-2.21986 -0.125,-3.0625 -0.62503,-0.84264 -1.60421,-1.29702 -2.8125,-1.65625 -2.41658,-0.71845 -5.96364,-1.00067 -10.375,-1.1875 -8.82271,-0.37366 -21.00798,-0.31129 -33.15625,-1.8125 -12.14827,-1.50121 -24.21446,-4.58175 -32.6875,-11.09375 -8.47304,-6.512 -13.50101,-16.33486 -11.75,-32 l -2,-0.25 z" - style="display:inline;fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - transform="translate(-14,4)" - sodipodi:nodetypes="cssssssssssssccsssssssssssscc" - clip-path="url(#clipPath4287)" - id="path4276" - d="m 164.25,169.375 c -1.80944,16.18787 3.57797,26.96266 12.53125,33.84375 8.95328,6.88109 21.33929,9.97794 33.65625,11.5 12.31696,1.52206 24.61016,1.44261 33.34375,1.8125 4.36679,0.18494 7.85588,0.49346 9.875,1.09375 1.00956,0.30014 1.60095,0.69442 1.78125,0.9375 0.1803,0.24308 0.21449,0.38792 -0.0937,1 -0.5676,1.12711 -1.88943,1.92802 -4.03125,2.4375 -2.14182,0.50948 -4.98306,0.67251 -8.125,0.65625 -6.28389,-0.0325 -13.813,-0.76309 -20.09375,-0.59375 -3.14038,0.0847 -5.97092,0.38298 -8.25,1.1875 -2.27908,0.80452 -4.09475,2.22183 -4.6875,4.40625 -0.59275,2.18442 0.001,4.85419 1.8125,8.25 1.81134,3.39581 2.13283,7.55678 6.78125,12.75 l 1.5,-1.3125 c -4.58534,-5.12274 -4.81231,-9.211 -6.5,-12.375 -1.68769,-3.164 -2.04477,-5.34946 -1.65625,-6.78125 0.38852,-1.43179 1.47822,-2.3819 3.40625,-3.0625 1.92803,-0.6806 4.61811,-0.98059 7.65625,-1.0625 6.07628,-0.16382 13.59915,0.56045 20.03125,0.59375 3.21605,0.0166 6.13826,-0.14209 8.5625,-0.71875 2.42424,-0.57666 4.45416,-1.60938 5.40625,-3.5 0.51688,-1.0264 0.50003,-2.21986 -0.125,-3.0625 -0.62503,-0.84264 -1.60421,-1.29702 -2.8125,-1.65625 -2.41658,-0.71845 -5.96364,-1.00067 -10.375,-1.1875 -8.82271,-0.37366 -21.00798,-0.31129 -33.15625,-1.8125 C 198.53923,211.21754 186.47304,208.137 178,201.625 c -8.47304,-6.512 -13.50101,-16.33486 -11.75,-32 l -2,-0.25 z" - style="display:inline;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter4293);enable-background:new" - inkscape:connector-curvature="0" /> - </g> - </g> - <path - transform="matrix(1,0,0,0.8539685,-2.0196324,-39.91456)" - d="m 52.84375,337.83008 a 2.1709114,2.1709114 0 0 0 -1.908203,1.13672 l -14.34375,26.5 A 2.1709114,2.1709114 0 0 0 38.5,368.66992 l 221.84375,0 a 2.1709114,2.1709114 0 0 0 1.89258,-3.23437 l -14.90625,-26.5 a 2.1709114,2.1709114 0 0 0 -1.89258,-1.10547 l -192.59375,0 z" - id="path3727" - style="display:inline;opacity:0.3;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3761);enable-background:new" - inkscape:original="M 52.84375 340 L 38.5 366.5 L 260.34375 366.5 L 245.4375 340 L 52.84375 340 z " - inkscape:radius="2.1706944" - sodipodi:type="inkscape:offset" /> - <path - transform="matrix(1.0044213,0,0,1,-2.6803063,-93.75)" - d="m 52.84375,337.83008 a 2.1709114,2.1709114 0 0 0 -1.908203,1.13672 l -14.34375,26.5 A 2.1709114,2.1709114 0 0 0 38.5,368.66992 l 221.84375,0 a 2.1709114,2.1709114 0 0 0 1.89258,-3.23437 l -14.90625,-26.5 a 2.1709114,2.1709114 0 0 0 -1.89258,-1.10547 l -192.59375,0 z" - id="path3091" - style="display:inline;opacity:0.72146116;fill:#000000;fill-opacity:1;stroke:none;filter:url(#filter3865);enable-background:new" - inkscape:original="M 52.84375 340 L 38.5 366.5 L 260.34375 366.5 L 245.4375 340 L 52.84375 340 z " - inkscape:radius="2.1706944" - sodipodi:type="inkscape:offset" /> - <g - transform="translate(1.9803676,-137.75)" - clip-path="url(#clipPath3519)" - id="g3514" - style="display:inline;enable-background:new"> - <path - style="display:inline;fill:url(#radialGradient3762);fill-opacity:1;stroke:none;enable-background:new" - d="m 49.053018,377.91849 c -0.710706,0.0727 -1.339556,0.49196 -1.68004,1.12002 l -14.280335,26.38285 c -0.171895,0.32432 -0.254644,0.67287 -0.248894,1.02669 1.72e-4,0.0106 -3.28e-4,0.0205 0,0.0311 l 0,2.98673 0,0.31112 0.06222,0 c 0.04534,0.25962 0.109053,0.51286 0.248895,0.74669 0.388063,0.64889 1.079535,1.05365 1.835599,1.0578 l 220.862957,0 c 0.76537,0.002 1.4767,-0.39926 1.86671,-1.0578 0.13743,-0.23204 0.20572,-0.48851 0.2489,-0.74669 0.0487,-0.29136 0.0622,-0.87113 0.0622,-0.87113 l 0,-2.08449 c 0,-0.49198 -0.0355,-0.98746 -0.28001,-1.43115 L 242.9109,379.0074 c -0.38858,-0.68003 -1.11464,-1.09662 -1.89783,-1.08891 l -191.742269,0 c -0.07255,-0.004 -0.145236,-0.004 -0.217783,0 z" - id="path3928" - sodipodi:nodetypes="cccsccccsccsscsccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3523);enable-background:new" - d="m 32.84375,407.84375 0,1.625 0,0.3125 0.0625,0 c 0.04533,0.25962 0.11016,0.51617 0.25,0.75 0.38805,0.64888 1.08768,1.05835 1.84375,1.0625 l 220.84375,0 c 0.7654,0.002 1.48499,-0.40396 1.875,-1.0625 0.13741,-0.23205 0.20682,-0.49182 0.25,-0.75 0.0487,-0.29136 0.0625,-0.875 0.0625,-0.875 l 0,-1.0625 c -0.40966,0.50416 -1.02665,0.81401 -1.6875,0.8125 l -221.84375,0 c -0.65281,-0.004 -1.25015,-0.31528 -1.65625,-0.8125 z" - id="path3968" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3764);fill-opacity:1;stroke:none;enable-background:new" - d="m 49.053018,377.91849 c -0.710706,0.0727 -1.339556,0.49196 -1.68004,1.12002 l -14.280335,26.38285 c -0.171895,0.32432 -0.254644,0.67287 -0.248894,1.02669 1.72e-4,0.0106 -3.28e-4,0.0205 0,0.0311 l 0,2.98673 0,0.31112 0.06222,0 c 0.04534,0.25962 0.109053,0.51286 0.248895,0.74669 0.388063,0.64889 1.079535,1.05365 1.835599,1.0578 l 220.862957,0 c 0.76537,0.002 1.4767,-0.39926 1.86671,-1.0578 0.13743,-0.23204 0.20572,-0.48851 0.2489,-0.74669 0.0487,-0.29136 0.0622,-0.87113 0.0622,-0.87113 l 0,-2.08449 c 0,-0.49198 -0.0355,-0.98746 -0.28001,-1.43115 L 242.9109,379.0074 c -0.38858,-0.68003 -1.11464,-1.09662 -1.89783,-1.08891 l -191.742269,0 c -0.07255,-0.004 -0.145236,-0.004 -0.217783,0 z" - id="path2729" - sodipodi:nodetypes="cccsccccsccsscsccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:none;stroke:url(#linearGradient3766);stroke-width:2.5;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.3612;stroke-opacity:1;filter:url(#filter3952);enable-background:new" - d="m 48.625,376.63664 c -0.713862,0.0731 -1.345504,0.49415 -1.6875,1.125 l -14.34375,27.70711 c -0.172659,0.32577 -0.255775,0.67586 -0.25,1.03125 1.73e-4,0.0106 -3.29e-4,0.0206 0,0.0312 l 0,3 0,0.3125 0.0625,0 c 0.04554,0.26077 0.109537,0.51513 0.25,0.75 0.389786,0.65177 1.084329,1.05833 1.84375,1.0625 l 221.84375,0 c 0.76877,0.002 1.48326,-0.40103 1.875,-1.0625 0.13804,-0.23307 0.20663,-0.49068 0.25,-0.75 0.0489,-0.29266 0.0625,-0.875 0.0625,-0.875 l 0,-2.09375 c 0,-0.49416 -0.0356,-0.99184 -0.28125,-1.4375 l -14.90625,-27.70711 c -0.3903,-0.68305 -1.11959,-1.10149 -1.90625,-1.09375 l -192.59375,0 c -0.07287,-0.004 -0.14588,-0.004 -0.21875,0 z" - id="path3926" - sodipodi:nodetypes="cccsccccsccsscsccccc" - clip-path="none" - inkscape:connector-curvature="0" /> - </g> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc" - id="path3125" - d="m 56.105368,241.25 -12.5,24.3125 134.875002,-0.0303 -3.53125,-24.28215 -32.21875,0 -0.0312,3.88515 -3.28125,0 0.1875,-3.88515 -32.21875,0 -0.75,3.88515 -3.28125,0.0303 0.71875,-3.9155 -32.093752,0 -1.40625,3.9155 -7.6875,-0.0303 1.40625,-3.88515 -8.1875,0 z m 123.718752,0 1.9375,12.31422 26.125,0 -3.65625,-12.31422 -24.40625,0 z m 27.46875,3.88515 7,20.397 36.6875,0 -10.75,-20.397 -32.9375,0 z m -15.875,11.65542 0.6875,3.88515 -8.59375,0 0.875,4.85643 27.46875,0 -1.71875,-4.85643 -8.8125,0 -1.09375,-3.88515 -8.8125,0 z" - style="display:inline;opacity:0.93150689;fill:url(#linearGradient3768);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccc" - id="path3929" - d="m 41.980368,266.25 137.500002,-0.0312 -4.53125,-24.96875 3.53125,24.28125 -134.875002,0.0312 12.5,-24.3125 -14.125,25 z m 27.65625,-21.09375 0.9375,0 1.40625,-3.90625 -2.34375,3.90625 z m 36.500002,-0.0312 0.5,0 0.75,-3.875 -1.25,3.875 z m 36.53125,-3.1875 -0.0312,3.1875 0.0625,0 0.0312,-3.1875 -0.0625,0 z m 61.5625,-0.6875 3.65625,12.3125 -26.125,0.002 0.53125,0.68578 26.53125,0 -4.59375,-13 z m 36,3.88515 10.75,20.3961 -36.6875,9e-4 1.0625,0.6866 37.25,0 -12.375,-21.0836 z m -40,11.65542 1.09375,3.89693 0.65625,0 -1.75,-3.89693 z m 9.90625,3.88515 1.71875,4.85553 -27.46875,9e-4 0.59375,0.6866 27.875,0 -2.71875,-5.54303 z" - style="display:inline;fill:url(#radialGradient3770);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3964);enable-background:new" - inkscape:connector-curvature="0" /> - <path - id="path4382" - d="m 51.230368,242 -14.25,27" - style="display:inline;fill:none;stroke:url(#radialGradient3772);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4506);enable-background:new" - inkscape:connector-curvature="0" /> - <path - id="path4384" - d="m 242.98037,242 15,26.25" - style="display:inline;fill:none;stroke:url(#radialGradient3774);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter4450);enable-background:new" - inkscape:connector-curvature="0" /> - <g - style="display:inline;opacity:0.36529679;enable-background:new" - transform="translate(3.9803676,82.25)" - clip-path="url(#clipPath3599)" - id="g3595"> - <path - style="display:inline;fill:#888a85;fill-opacity:1;stroke:none;enable-background:new" - d="m 208.28125,157.9375 c -0.008,0.10327 -0.005,0.2131 0.0312,0.3125 l 1.09375,3.0625 c 0.10951,0.28392 0.3832,0.47053 0.6875,0.46875 l 2,0 c 0.23532,-0.002 0.45756,-0.12059 0.59375,-0.3125 0.1362,-0.19191 0.16975,-0.43353 0.0937,-0.65625 l -1.03125,-2.875 -3.46875,0 z m 7.96875,0 c -0.0101,0.11643 0.0164,0.23327 0.0625,0.34375 l 1.28125,3.0625 c 0.11937,0.27165 0.39086,0.44442 0.6875,0.4375 l 2,0 c 0.24322,0.002 0.45595,-0.11207 0.59375,-0.3125 0.1378,-0.20044 0.18268,-0.46111 0.0937,-0.6875 l -1.1875,-2.84375 -3.53125,0 z m 8.03125,0 c -0.0114,0.12934 0.005,0.25506 0.0625,0.375 l 1.53125,3.0625 c 0.12384,0.24906 0.3781,0.40646 0.65625,0.40625 l 2,0 c 0.24601,-0.004 0.46165,-0.13617 0.59375,-0.34375 0.13209,-0.20758 0.16299,-0.46291 0.0625,-0.6875 l -1.40625,-2.8125 -3.5,0 z" - id="path3593" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3643);enable-background:new" - d="m 209.84375,158.46875 1.09375,3.0625 2,0 -1.09375,-3.0625 -2,0 z m 8,0 1.28125,3.0625 2,0 -1.28125,-3.0625 -2,0 z m 8,0 1.53125,3.0625 2,0 -1.53125,-3.0625 -2,0 z" - id="path3591" - inkscape:connector-curvature="0" /> - </g> - <path - id="rect3568" - d="m 212.79287,240.25 1.09375,3.0625 2,0 -1.09375,-3.0625 -2,0 z m 8,0 1.28125,3.0625 2,0 -1.28125,-3.0625 -2,0 z m 8,0 1.53125,3.0625 2,0 -1.53125,-3.0625 -2,0 z" - style="display:inline;fill:url(#linearGradient3776);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <g - transform="translate(-2.0196324,-97.75)" - style="display:inline;fill:#555753;enable-background:new" - id="g4538"> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="1.0054175" - inkscape:original="M 34.8125 272 C 34.310552 272 33.76639 272.33807 33.59375 272.75 C 33.593751 272.75 32.9375 274.25 32.9375 274.25 C 32.761851 274.66909 33.05377 275 33.5625 275 C 33.562501 275 38.15625 275 38.15625 275 C 38.66503 275 39.18016 274.66909 39.34375 274.25 C 39.343749 274.25 39.9375 272.75 39.9375 272.75 C 40.098291 272.33807 39.81445 272 39.3125 272 C 39.312501 272 34.8125 272 34.8125 272 z M 42.9375 272 C 42.43556 272 41.9074 272.33807 41.75 272.75 C 41.750001 272.75 41.1875 274.25 41.1875 274.25 C 41.027361 274.66909 41.30373 275 41.8125 275 C 41.8125 275 46.40625 275 46.40625 275 C 46.915022 275 47.44567 274.66909 47.59375 274.25 C 47.593751 274.25 48.125 272.75 48.125 272.75 C 48.270551 272.33807 47.9707 272 47.46875 272 C 47.468749 272 42.9375 272 42.9375 272 z M 51.09375 272 C 50.591808 272 50.07967 272.33807 49.9375 272.75 C 49.937501 272.75 49.4375 274.25 49.4375 274.25 C 49.29285 274.66909 49.58497 275 50.09375 275 C 50.093748 275 54.6875 275 54.6875 275 C 55.196281 275 55.71115 274.66909 55.84375 274.25 C 55.84375 274.25 56.3125 272.75 56.3125 272.75 C 56.442821 272.33807 56.12694 272 55.625 272 C 55.625 272 51.09375 272 51.09375 272 z M 59.25 272 C 58.748049 272 58.25193 272.33807 58.125 272.75 C 58.125001 272.75 57.65625 274.25 57.65625 274.25 C 57.527101 274.66909 57.83498 275 58.34375 275 C 58.343751 275 62.9375 275 62.9375 275 C 63.446279 275 63.9454 274.66909 64.0625 274.25 C 64.062497 274.25 64.5 272.75 64.5 272.75 C 64.615089 272.33807 64.28319 272 63.78125 272 C 63.781252 272 59.25 272 59.25 272 z M 67.40625 272 C 66.904301 272 66.4242 272.33807 66.3125 272.75 C 66.312497 272.75 65.90625 274.25 65.90625 274.25 C 65.792599 274.66909 66.11622 275 66.625 275 C 66.625003 275 71.21875 275 71.21875 275 C 71.72752 275 72.21091 274.66909 72.3125 274.25 C 72.312502 274.25 72.65625 272.75 72.65625 272.75 C 72.756153 272.33807 72.43945 272 71.9375 272 C 71.937496 272 67.40625 272 67.40625 272 z M 75.5625 272 C 75.060553 272 74.59647 272.33807 74.5 272.75 C 74.499999 272.75 74.125 274.25 74.125 274.25 C 74.026799 274.66909 74.36622 275 74.875 275 C 74.875001 275 79.46875 275 79.46875 275 C 79.977541 275 80.44515 274.66909 80.53125 274.25 C 80.531253 274.25 80.84375 272.75 80.84375 272.75 C 80.928349 272.33807 80.59571 271.99999 80.09375 272 C 80.093754 272.00001 75.5625 272 75.5625 272 z M 83.71875 272 C 83.216808 272 82.7375 272.33807 82.65625 272.75 C 82.65625 272.75 82.375 274.25 82.375 274.25 C 82.292298 274.66909 82.64747 275 83.15625 275 C 83.156254 275 87.75 275 87.75 275 C 88.258771 275 88.71065 274.66909 88.78125 274.25 C 88.781254 274.25 89.03125 272.75 89.03125 272.75 C 89.100653 272.33807 88.75195 272 88.25 272 C 88.25 272 83.71875 272 83.71875 272 z M 91.875 272 C 91.37307 272 90.90976 272.33807 90.84375 272.75 C 90.843749 272.75 90.625 274.25 90.625 274.25 C 90.557801 274.66909 90.89747 275 91.40625 275 C 91.406252 275 96 275 96 275 C 96.508777 275 96.97614 274.66909 97.03125 274.25 C 97.031246 274.25 97.21875 272.75 97.21875 272.75 C 97.272949 272.33807 96.90819 272 96.40625 272 C 96.406247 272 91.875 272 91.875 272 z M 100.03125 272 C 99.529314 272 99.08203 272.33807 99.03125 272.75 C 99.031253 272.75 98.84375 274.25 98.84375 274.25 C 98.792051 274.66909 99.17874 275 99.6875 275 C 99.687497 275 104.28125 275 104.28125 275 C 104.79002 275 105.21039 274.66909 105.25 274.25 C 105.25 274.25 105.40625 272.75 105.40625 272.75 C 105.44515 272.33806 105.06444 272 104.5625 272 C 104.5625 272 100.03125 272 100.03125 272 z M 108.1875 272 C 107.68555 272.00001 107.25429 272.33807 107.21875 272.75 C 107.21875 272.75 107.09375 274.25 107.09375 274.25 C 107.05755 274.66909 107.42872 275 107.9375 275 C 107.9375 275 112.53125 275 112.53125 275 C 113.04003 275 113.47589 274.66909 113.5 274.25 C 113.5 274.25 113.59375 272.75 113.59375 272.75 C 113.61745 272.33807 113.22071 272 112.71875 272 C 112.71875 272 108.1875 272 108.1875 272 z M 116.34375 272 C 115.84181 272 115.42657 272.33806 115.40625 272.75 C 115.40625 272.75 115.3125 274.25 115.3125 274.25 C 115.2918 274.66909 115.70998 275 116.21875 275 C 116.21875 275 120.8125 275 120.8125 275 C 121.32129 275 121.71014 274.66909 121.71875 274.25 C 121.71875 274.25 121.75 272.75 121.75 272.75 C 121.758 272.33807 121.37696 272 120.875 272 C 120.875 272 116.34375 272 116.34375 272 z M 124.5 272 C 123.99806 272 123.59883 272.33807 123.59375 272.75 C 123.59375 272.75 123.5625 274.25 123.5625 274.25 C 123.5575 274.66909 123.95997 275 124.46875 275 C 124.46875 275 129.0625 275 129.0625 275 C 129.57126 275 129.97564 274.66909 129.96875 274.25 C 129.96875 274.25 129.9375 272.75 129.9375 272.75 C 129.9305 272.33807 129.53319 272.00001 129.03125 272 C 129.03126 272 124.5 272 124.5 272 z M 132.65625 272 C 132.15431 272 131.73984 272.33807 131.75 272.75 C 131.75001 272.75 131.8125 274.25 131.8125 274.25 C 131.8228 274.66909 132.24122 275 132.75 275 C 132.75 275 137.3125 275 137.3125 275 C 137.82128 275 138.24114 274.66909 138.21875 274.25 C 138.21875 274.25 138.125 272.75 138.125 272.75 C 138.10299 272.33807 137.68944 271.99999 137.1875 272 C 137.1875 272.00001 132.65625 272 132.65625 272 z M 140.8125 272 C 140.31054 272 139.91211 272.33807 139.9375 272.75 C 139.9375 272.75 140.03125 274.25 140.03125 274.25 C 140.05705 274.66909 140.49123 275 141 275 C 141 275 152.9375 275 152.9375 275 C 153.44627 275 153.80166 274.66909 153.75 274.25 C 153.75 274.25 153.59375 272.75 153.59375 272.75 C 153.54294 272.33807 153.09569 272.00001 152.59375 272 C 152.59375 272 140.8125 272 140.8125 272 z M 161.65625 272 C 161.15431 272 160.77943 272.33806 160.84375 272.75 C 160.84375 272.75 161.09375 274.25 161.09375 274.25 C 161.15915 274.66909 161.61622 275 162.125 275 C 162.125 275 166.71875 275 166.71875 275 C 167.22753 275 167.5775 274.66909 167.5 274.25 C 167.50001 274.25 167.21875 272.75 167.21875 272.75 C 167.14255 272.33807 166.68945 272 166.1875 272 C 166.1875 272 161.65625 272 161.65625 272 z M 169.8125 272 C 169.31054 272 168.95169 272.33807 169.03125 272.75 C 169.03125 272.75 169.3125 274.25 169.3125 274.25 C 169.3934 274.66909 169.86622 275 170.375 275 C 170.375 275 174.96875 275 174.96875 275 C 175.47752 275 175.81174 274.66909 175.71875 274.25 C 175.71874 274.25 175.40625 272.75 175.40625 272.75 C 175.31485 272.33807 174.81444 272.00001 174.3125 272 C 174.31251 272 169.8125 272 169.8125 272 z M 177.9375 272 C 177.43555 272 177.12397 272.33807 177.21875 272.75 C 177.21875 272.75 177.5625 274.25 177.5625 274.25 C 177.6589 274.66909 178.14748 275 178.65625 275 C 178.65625 275 183.25 275 183.25 275 C 183.75877 275 184.07724 274.66909 183.96875 274.25 C 183.96874 274.25 183.59375 272.75 183.59375 272.75 C 183.48711 272.33807 182.97069 272 182.46875 272 C 182.46874 272 177.9375 272 177.9375 272 z M 188.8125 272 C 188.31055 272.00001 188.00991 272.33807 188.125 272.75 C 188.125 272.75 188.53125 274.25 188.53125 274.25 C 188.64835 274.66909 189.17872 275 189.6875 275 C 189.68749 275 194.28125 275 194.28125 275 C 194.79003 275 195.06665 274.66909 194.9375 274.25 C 194.9375 274.25 194.5 272.75 194.5 272.75 C 194.37305 272.33806 193.8457 272 193.34375 272 C 193.34375 272 188.8125 272 188.8125 272 z M 196.96875 272 C 196.46681 272 196.18217 272.33806 196.3125 272.75 C 196.3125 272.75 196.78125 274.25 196.78125 274.25 C 196.91385 274.66909 197.42872 275 197.9375 275 C 197.9375 275 202.53125 275 202.53125 275 C 203.04003 275 203.33215 274.66909 203.1875 274.25 C 203.1875 274.25 202.65625 272.75 202.65625 272.75 C 202.51408 272.33807 202.00195 272 201.5 272 C 201.49999 272 196.96875 272 196.96875 272 z M 205.125 272 C 204.62304 272 204.35443 272.33807 204.5 272.75 C 204.5 272.75 205.03125 274.25 205.03125 274.25 C 205.17934 274.66909 205.70998 275 206.21875 275 C 206.21874 275 210.8125 275 210.8125 275 C 211.32129 275 211.59765 274.66909 211.4375 274.25 C 211.4375 274.25 210.84375 272.75 210.84375 272.75 C 210.68634 272.33807 210.15819 272 209.65625 272 C 209.65626 272 205.125 272 205.125 272 z M 213.28125 272 C 212.7793 272 212.49545 272.33807 212.65625 272.75 C 212.65626 272.75 213.25 274.25 213.25 274.25 C 213.41361 274.66909 213.95997 275 214.46875 275 C 214.46875 275 219.0625 275 219.0625 275 C 219.57127 275 219.8319 274.66909 219.65625 274.25 C 219.65625 274.25 219.03125 272.75 219.03125 272.75 C 218.8586 272.33807 218.31444 272.00001 217.8125 272 C 217.81249 272 213.28125 272 213.28125 272 z M 31.03125 280 C 30.508242 280 29.93747 280.33823 29.75 280.75 C 29.750001 280.75 29.0625 282.25 29.0625 282.25 C 28.871622 282.66924 29.15705 283 29.6875 283 C 29.687502 283 41.15625 283 41.15625 283 C 41.686679 283 42.24157 282.66924 42.40625 282.25 C 42.406248 282.25 43 280.75 43 280.75 C 43.161739 280.33823 42.86675 280 42.34375 280 C 42.34375 280 31.03125 280 31.03125 280 z M 46.125 280 C 45.601991 280 45.06432 280.33823 44.90625 280.75 C 44.906249 280.75 44.3125 282.25 44.3125 282.25 C 44.151558 282.66924 44.46957 283 45 283 C 44.999995 283 49.78125 283 49.78125 283 C 50.311682 283 50.85217 282.66924 51 282.25 C 50.999998 282.25 51.53125 280.75 51.53125 280.75 C 51.676452 280.33823 51.36676 280 50.84375 280 C 50.843748 280 46.125 280 46.125 280 z M 54.625 280 C 54.101996 280 53.57902 280.33823 53.4375 280.75 C 53.437497 280.75 52.90625 282.25 52.90625 282.25 C 52.762161 282.66924 53.06332 283 53.59375 283 C 53.593751 283 58.40625 283 58.40625 283 C 58.93668 283 59.46276 282.66924 59.59375 282.25 C 59.593747 282.25 60.0625 280.75 60.0625 280.75 C 60.191161 280.33823 59.86676 280 59.34375 280 C 59.34375 280 54.625 280 54.625 280 z M 63.125 280 C 62.60199 280 62.06249 280.33823 61.9375 280.75 C 61.937501 280.75 61.5 282.25 61.5 282.25 C 61.37275 282.66924 61.68832 283 62.21875 283 C 62.218746 283 67 283 67 283 C 67.530425 283 68.07335 282.66924 68.1875 282.25 C 68.187502 282.25 68.59375 280.75 68.59375 280.75 C 68.70587 280.33823 68.36675 280 67.84375 280 C 67.843749 280 63.125 280 63.125 280 z M 71.625 280 C 71.101995 280 70.57719 280.33823 70.46875 280.75 C 70.468753 280.75 70.09375 282.25 70.09375 282.25 C 69.983342 282.66924 70.31333 283 70.84375 283 C 70.843749 283 75.625 283 75.625 283 C 76.15542 283 76.65269 282.66924 76.75 282.25 C 76.750001 282.25 77.125 280.75 77.125 280.75 C 77.220599 280.33823 76.86676 280 76.34375 280 C 76.343751 280 71.625 280 71.625 280 z M 80.125 280 C 79.601999 280 79.0919 280.33823 79 280.75 C 78.999999 280.75 78.65625 282.25 78.65625 282.25 C 78.562654 282.66924 78.93833 283 79.46875 283 C 79.46875 283 84.25 283 84.25 283 C 84.780422 283 85.26329 282.66924 85.34375 282.25 C 85.343752 282.25 85.625 280.75 85.625 280.75 C 85.704002 280.33823 85.36676 280 84.84375 280 C 84.843752 280 80.125 280 80.125 280 z M 88.625 280 C 88.101992 280 87.60661 280.33823 87.53125 280.75 C 87.531252 280.75 87.25 282.25 87.25 282.25 C 87.173302 282.66924 87.53208 283 88.0625 283 C 88.062502 283 92.875 283 92.875 283 C 93.405422 283 93.87388 282.66924 93.9375 282.25 C 93.937502 282.25 94.15625 280.75 94.15625 280.75 C 94.218752 280.33823 93.86675 280 93.34375 280 C 93.343752 280 88.625 280 88.625 280 z M 97.09375 280 C 96.570742 280 96.1213 280.33823 96.0625 280.75 C 96.062502 280.75 95.84375 282.25 95.84375 282.25 C 95.783852 282.66924 96.15708 283 96.6875 283 C 96.687502 283 101.46875 283 101.46875 283 C 101.99917 283 102.48446 282.66925 102.53125 282.25 C 102.53125 282.25 102.6875 280.75 102.6875 280.75 C 102.7334 280.33821 102.36676 280 101.84375 280 C 101.84375 280 97.09375 280 97.09375 280 z M 105.59375 280 C 105.07075 280 104.63602 280.33823 104.59375 280.75 C 104.59375 280.75 104.4375 282.25 104.4375 282.25 C 104.3945 282.66924 104.78207 283 105.3125 283 C 105.3125 283 110.09375 283 110.09375 283 C 110.62419 283 111.06381 282.66925 111.09375 282.25 C 111.09376 282.25 111.21875 280.75 111.21875 280.75 C 111.24814 280.33823 110.83551 280 110.3125 280 C 110.3125 280 105.59375 280 105.59375 280 z M 114.09375 280 C 113.57074 280 113.15073 280.33822 113.125 280.75 C 113.125 280.74999 113.03125 282.25 113.03125 282.25 C 113.00504 282.66925 113.40707 283 113.9375 283 C 113.9375 283 118.71875 283 118.71875 283 C 119.24918 283 119.6744 282.66924 119.6875 282.25 C 119.68751 282.25 119.75 280.75 119.75 280.75 C 119.7629 280.33823 119.3355 280 118.8125 280 C 118.8125 280 114.09375 280 114.09375 280 z M 122.59375 280 C 122.07074 280 121.63419 280.33823 121.625 280.75 C 121.625 280.75 121.59375 282.25 121.59375 282.25 C 121.58474 282.66925 122.00082 283 122.53125 283 C 122.53125 283 127.34375 283 127.34375 283 C 127.87418 283 128.28499 282.66924 128.28125 282.25 C 128.28124 282.25 128.28125 280.75 128.28125 280.75 C 128.27724 280.33823 127.83551 280 127.3125 280 C 127.3125 280 122.59375 280 122.59375 280 z M 131.09375 280 C 130.57074 280 130.1489 280.33823 130.15625 280.75 C 130.15625 280.75 130.1875 282.25 130.1875 282.25 C 130.19449 282.66924 130.62582 283 131.15625 283 C 131.15624 283 135.9375 283 135.9375 283 C 136.46792 283 136.89559 282.66924 136.875 282.25 C 136.87499 282.25 136.78125 280.75 136.78125 280.75 C 136.76103 280.33823 136.33551 280 135.8125 280 C 135.81248 280 131.09375 280 131.09375 280 z M 139.59375 280 C 139.07072 280 138.66361 280.33823 138.6875 280.75 C 138.68748 280.75 138.78125 282.25 138.78125 282.25 C 138.80554 282.66924 139.25082 283 139.78125 283 L 154.125 283 C 154.65542 283 155.05614 282.66924 155 282.25 C 154.99999 282.25 154.78125 280.75 154.78125 280.75 C 154.72614 280.33823 154.273 280 153.75 280 L 139.59375 280 z M 191.5 280 C 190.97699 280 190.65626 280.33823 190.78125 280.75 C 190.78124 280.75 191.25 282.25 191.25 282.25 C 191.37724 282.66924 191.90708 283 192.4375 283 C 192.43748 283 197.21875 283 197.21875 283 C 197.74916 283 198.07785 282.66924 197.9375 282.25 C 197.9375 282.25 197.4375 280.75 197.4375 280.75 C 197.29964 280.33823 196.74176 280 196.21875 280 C 196.21875 280 191.5 280 191.5 280 z M 200 280 C 199.47697 280 199.17098 280.33823 199.3125 280.75 C 199.31249 280.75 199.84375 282.25 199.84375 282.25 C 199.98782 282.66924 200.53208 283 201.0625 283 C 201.06248 283 205.84375 283 205.84375 283 C 206.37416 283 206.6572 282.66925 206.5 282.25 C 206.49999 282.25 205.9375 280.75 205.9375 280.75 C 205.78311 280.33823 205.24175 280 204.71875 280 C 204.71874 280 200 280 200 280 z M 208.5 280 C 207.97698 280 207.68568 280.33822 207.84375 280.75 C 207.84374 280.74999 208.4375 282.25 208.4375 282.25 C 208.59844 282.66925 209.15708 283 209.6875 283 C 209.68748 283 214.46875 283 214.46875 283 C 214.99916 283 215.26778 282.66925 215.09375 282.25 C 215.09374 282.25 214.46875 280.75 214.46875 280.75 C 214.29781 280.33823 213.74176 280 213.21875 280 C 213.21875 280 208.5 280 208.5 280 z M 218.875 284 C 218.34079 284 218.0678 284.31161 218.25 284.6875 C 218.25 284.68749 220.96875 290.28125 220.96875 290.28125 C 221.16347 290.68127 221.7585 291 222.3125 291 C 222.3125 291 227.3125 291 227.3125 291 C 227.86648 291 228.14567 290.68128 227.9375 290.28125 C 227.93751 290.28124 225.03125 284.6875 225.03125 284.6875 C 224.83564 284.3116 224.22172 284 223.6875 284 C 223.6875 284 218.875 284 218.875 284 z M 26.78125 288 C 26.235341 288 25.64179 288.3384 25.4375 288.75 C 25.4375 288.75 24.6875 290.25 24.6875 290.25 C 24.479329 290.66941 24.75848 291 25.3125 291 C 25.3125 291 34.3125 291 34.3125 291 C 34.866502 291 35.47053 290.66941 35.65625 290.25 C 35.656249 290.25 36.3125 288.75 36.3125 288.75 C 36.494762 288.3384 36.20217 288 35.65625 288 C 35.656249 288 26.78125 288 26.78125 288 z M 39.59375 288 C 39.04784 288 38.4595 288.3384 38.28125 288.75 C 38.281248 288.75 37.625 290.25 37.625 290.25 C 37.443361 290.66941 37.7585 291 38.3125 291 C 38.312502 291 45.3125 291 45.3125 291 C 45.866502 291 46.43048 290.66941 46.59375 290.25 C 46.593752 290.25 47.1875 288.75 47.1875 288.75 C 47.347728 288.3384 47.04591 288 46.5 288 C 46.499998 288 39.59375 288 39.59375 288 z M 50.4375 288 C 49.89158 288 49.31248 288.3384 49.15625 288.75 C 49.156248 288.75 48.59375 290.25 48.59375 290.25 C 48.434559 290.66941 48.7585 291 49.3125 291 C 49.312502 291 57.3125 291 57.3125 291 C 57.866502 291 58.42372 290.66941 58.5625 290.25 C 58.562499 290.25 59.0625 288.75 59.0625 288.75 C 59.198698 288.3384 58.85841 288 58.3125 288 C 58.312501 288 50.4375 288 50.4375 288 z M 62.25 288 C 61.70409 288 61.16344 288.3384 61.03125 288.75 C 61.031249 288.75 60.5625 290.25 60.5625 290.25 C 60.427812 290.66941 60.7585 291 61.3125 291 C 61.312502 291 110.3125 291 110.3125 291 C 110.8665 291 111.34438 290.66941 111.375 290.25 C 111.375 290.25 111.46875 288.75 111.46875 288.75 C 111.49875 288.3384 111.07716 287.99999 110.53125 288 C 110.53125 288.00001 62.25 288 62.25 288 z M 114.46875 288 C 113.92284 288 113.46354 288.3384 113.4375 288.75 C 113.4375 288.75 113.34375 290.25 113.34375 290.25 C 113.31725 290.66941 113.75849 291 114.3125 291 C 114.3125 291 122.3125 291 122.3125 291 C 122.86651 291 123.30637 290.66941 123.3125 290.25 C 123.3125 290.25 123.34375 288.75 123.34375 288.75 C 123.34975 288.3384 122.92092 288 122.375 288 C 122.375 288 114.46875 288 114.46875 288 z M 126.3125 288 C 125.76659 288 125.31451 288.3384 125.3125 288.75 C 125.3125 288.75 125.3125 290.25 125.3125 290.25 C 125.3105 290.66941 125.75851 291 126.3125 291 C 126.3125 291 133.3125 291 133.3125 291 C 133.86651 291 134.29758 290.66941 134.28125 290.25 C 134.28124 290.25 134.21875 288.75 134.21875 288.75 C 134.20275 288.3384 133.76468 288 133.21875 288 C 133.21876 288 126.3125 288 126.3125 288 z M 137.15625 288 C 136.61034 288 136.16747 288.3384 136.1875 288.75 C 136.1875 288.75 136.28125 290.25 136.28125 290.25 C 136.30138 290.66941 136.7585 291 137.3125 291 C 137.3125 291 144.3125 291 144.3125 291 C 144.86651 291 145.28878 290.66941 145.25 290.25 C 145.25 290.25 145.09375 288.75 145.09375 288.75 C 145.05574 288.3384 144.57716 288 144.03125 288 C 144.03124 288 137.15625 288 137.15625 288 z M 148 288 C 147.45409 288 147.02044 288.3384 147.0625 288.75 C 147.0625 288.75 147.21875 290.25 147.21875 290.25 C 147.2616 290.66941 147.7585 291 148.3125 291 C 148.3125 291 155.3125 291 155.3125 291 C 155.8665 291 156.24873 290.66941 156.1875 290.25 C 156.1875 290.25 155.96875 288.75 155.96875 288.75 C 155.90864 288.3384 155.4209 288.00001 154.875 288 C 154.875 288 148 288 148 288 z M 164.75 288 C 164.20408 288 163.79889 288.33839 163.875 288.75 C 163.87501 288.75 164.15625 290.25 164.15625 290.25 C 164.23382 290.66941 164.7585 291 165.3125 291 C 165.3125 291 170.3125 291 170.3125 291 C 170.86651 291 171.24809 290.66941 171.15625 290.25 C 171.15624 290.25 170.8125 288.75 170.8125 288.75 C 170.72241 288.3384 170.20217 288 169.65625 288 C 169.65625 288 164.75 288 164.75 288 z M 173.59375 288 C 173.04784 288 172.68711 288.3384 172.78125 288.75 C 172.78125 288.75 173.125 290.25 173.125 290.25 C 173.22092 290.66941 173.7585 291 174.3125 291 C 174.3125 291 179.3125 291 179.3125 291 C 179.86648 291 180.20396 290.66941 180.09375 290.25 C 180.09375 290.25 179.71875 288.75 179.71875 288.75 C 179.61059 288.3384 179.07715 288.00001 178.53125 288 C 178.53125 288 173.59375 288 173.59375 288 z M 182.46875 288 C 181.92283 288 181.57533 288.3384 181.6875 288.75 C 181.68751 288.75 182.09375 290.25 182.09375 290.25 C 182.20803 290.66941 182.7585 291 183.3125 291 C 183.3125 291 188.3125 291 188.3125 291 C 188.86648 291 189.19108 290.66941 189.0625 290.25 C 189.0625 290.25 188.625 288.75 188.625 288.75 C 188.49882 288.3384 187.95216 288 187.40625 288 C 187.40625 288 182.46875 288 182.46875 288 z M 194.3125 288 C 193.7666 288.00001 193.4263 288.3384 193.5625 288.75 C 193.5625 288.75 194.0625 290.25 194.0625 290.25 C 194.20127 290.66941 194.7585 291 195.3125 291 C 195.3125 291 209.3125 291 209.3125 291 C 209.86651 291 210.17143 290.66941 210 290.25 C 210.00001 290.25 209.375 288.75 209.375 288.75 C 209.20676 288.3384 208.63967 288 208.09375 288 C 208.09375 288 194.3125 288 194.3125 288 z M 212.03125 288 C 211.48533 288 211.20274 288.3384 211.375 288.75 C 211.375 288.75 212 290.25 212 290.25 C 212.17552 290.66941 212.7585 291 213.3125 291 C 213.3125 291 218.3125 291 218.3125 291 C 218.86651 291 219.15855 290.66941 218.96875 290.25 C 218.96875 290.25 218.28125 288.75 218.28125 288.75 C 218.09499 288.3384 217.51466 288 216.96875 288 C 216.96875 288 212.03125 288 212.03125 288 z " - style="display:inline;fill:#555753;fill-opacity:1;stroke:none;enable-background:new" - id="path4059" - d="m 34.8125,270.99414 c -0.953391,0 -1.758528,0.4415 -2.146484,1.36719 l -0.650391,1.48633 a 1.005518,1.005518 0 0 0 -0.0059,0.0137 c -0.201043,0.47968 -0.1404,1.14923 0.216796,1.57031 0.357197,0.42108 0.863577,0.57422 1.335938,0.57422 l 4.59375,0 c 0.943224,0 1.763774,-0.47151 2.123047,-1.38672 l 0.002,-0.002 0.05469,-0.14063 c 0.0059,0.33678 -0.07652,0.68882 0.140624,0.94922 0.351227,0.42119 0.863575,0.58008 1.335938,0.58008 l 4.59375,0 c 0.944195,0 1.790335,-0.44732 2.134766,-1.41992 l 0,-0.002 0.04492,-0.12304 c 0.01031,0.3509 -0.04935,0.72333 0.179687,0.98437 0.354513,0.40406 0.855761,0.56055 1.328125,0.56055 l 4.59375,0 c 0.944728,0 1.80275,-0.4655 2.115234,-1.45313 a 1.005518,1.005518 0 0 0 0,-0.002 l 0.01367,-0.041 c 0.02792,0.34185 -0.02035,0.70832 0.205078,0.95312 0.357149,0.38784 0.849903,0.54297 1.322266,0.54297 l 4.59375,0 c 0.94379,0 1.811454,-0.48431 2.091797,-1.48242 l 0.02148,-0.0742 c 0.0231,0.37253 0.0098,0.7741 0.257813,1.03125 0.35926,0.37254 0.844042,0.52539 1.316406,0.52539 l 4.59375,0 c 0.939894,0 1.812226,-0.50712 2.0625,-1.50781 0.04074,0.36333 0.03888,0.75562 0.283203,0.99804 0.360964,0.35815 0.838183,0.50977 1.310547,0.50977 l 4.59375,0 c 0.944168,0 1.836673,-0.53216 2.046875,-1.55078 0.03923,0.38842 0.07329,0.80486 0.335937,1.05469 0.36232,0.34462 0.832324,0.49609 1.304688,0.49609 l 4.59375,0 c 0.931211,0 1.810977,-0.5559 2.001953,-1.55469 0.03834,0.3864 0.08332,0.79791 0.349609,1.05469 0.35747,0.34471 0.832324,0.5 1.304688,0.5 l 4.59375,0 c 0.911293,0 1.785982,-0.53406 1.976562,-1.53906 0.05572,0.40383 0.139397,0.82731 0.416016,1.07031 0.364343,0.32007 0.822559,0.46875 1.294922,0.46875 l 4.59375,0 c 0.90995,0 1.76809,-0.6062 1.91992,-1.57227 0.0478,0.41524 0.15249,0.84257 0.44141,1.09961 0.35984,0.32015 0.82256,0.47266 1.29492,0.47266 l 4.59375,0 c 0.88874,0 1.73829,-0.58311 1.89453,-1.54883 0.0664,0.43151 0.20884,0.86111 0.50586,1.10352 0.36587,0.2986 0.81475,0.44531 1.28711,0.44531 l 4.59375,0 c 0.88428,0 1.70699,-0.65072 1.83398,-1.57422 0.12089,0.9353 0.9486,1.57422 1.82227,1.57422 l 4.59375,0 c 0.87226,0 1.70033,-0.63743 1.82031,-1.57422 0.13037,0.9595 0.98052,1.57422 1.86719,1.57422 l 4.5625,0 c 0.47236,0 0.92078,-0.14672 1.28711,-0.44531 0.29648,-0.24167 0.43745,-0.67191 0.50391,-1.10352 0.15717,0.96413 1.00642,1.54883 1.89648,1.54883 l 11.9375,0 c 0.47236,0 0.94009,-0.15431 1.29883,-0.48633 0.35874,-0.33202 0.57573,-0.8733 0.51172,-1.39258 l -0.1543,-1.48047 a 1.005518,1.005518 0 0 0 -0.002,-0.0195 c -0.13039,-1.05705 -1.04468,-1.63279 -1.99805,-1.63281 l -11.78125,0 c -0.4767,0 -0.93038,0.15642 -1.28906,0.46289 -0.28737,0.24554 -0.41093,0.66722 -0.47266,1.08594 -0.15129,-0.9399 -0.96882,-1.54885 -1.86328,-1.54883 l -4.53125,0 c -0.86681,0 -1.67001,0.61653 -1.80469,1.54492 -0.14185,-0.91606 -0.93985,-1.5449 -1.82031,-1.54492 l -4.53125,0 c -0.89109,0 -1.71165,0.63844 -1.83398,1.57813 -0.11393,-0.9153 -0.91127,-1.57813 -1.79102,-1.57813 l -4.53125,0 c -0.89215,0 -1.70764,0.60696 -1.85937,1.54688 -0.12575,-0.90641 -0.90922,-1.54688 -1.76563,-1.54688 l -4.53125,0 c -0.90514,2e-5 -1.73937,0.58304 -1.9043,1.54492 -0.0558,-0.40526 -0.14982,-0.82336 -0.42773,-1.07031 -0.35714,-0.31735 -0.81628,-0.47461 -1.29297,-0.47461 l -4.53125,0 c -0.915754,0 -1.759857,0.55837 -1.943359,1.53711 -0.05072,-0.39109 -0.117721,-0.80201 -0.384766,-1.04883 -0.355953,-0.32898 -0.82018,-0.48828 -1.296875,-0.48828 l -4.53125,0 c -0.926091,0 -1.778301,0.53498 -1.982422,1.5293 -0.04561,-0.37736 -0.08369,-0.78068 -0.339844,-1.02735 -0.354555,-0.34141 -0.826038,-0.50195 -1.302734,-0.50195 l -4.53125,0 c -0.935901,0 -1.794566,0.50991 -2.021484,1.51758 -0.04076,-0.36332 -0.05013,-0.75398 -0.294922,-1 -0.352891,-0.35467 -0.831887,-0.51759 -1.308594,-0.51758 l -4.53125,0 c -0.953391,0 -1.809159,0.53731 -2.041016,1.52734 l -0.0059,0.0215 c -0.02666,-0.36645 -0.0214,-0.75899 -0.265625,-1.01563 -0.350916,-0.36874 -0.835804,-0.5332 -1.3125,-0.5332 l -4.53125,0 c -0.953391,0 -1.798671,0.51203 -2.064453,1.49219 l -0.0039,0.0117 c -0.03615,-0.3531 -0.01042,-0.73655 -0.242188,-0.97657 -0.356045,-0.36872 -0.837758,-0.52734 -1.314453,-0.52734 l -4.53125,0 c -0.951873,0 -1.784309,0.48958 -2.083984,1.45508 l 0,0.002 c -3.03e-4,9.8e-4 -0.0017,9.8e-4 -0.002,0.002 l -0.01172,0.043 c -0.02865,-0.34448 0.01673,-0.71438 -0.207032,-0.95703 -0.35385,-0.38371 -0.843617,-0.54492 -1.320312,-0.54492 l -4.53125,0 c -0.953391,0 -1.777664,0.47228 -2.107422,1.42774 a 1.005518,1.005518 0 0 0 -0.002,0.01 l -0.01953,0.0586 c -0.02198,-0.3342 0.04473,-0.68931 -0.169922,-0.93359 -0.351142,-0.39961 -0.849476,-0.5625 -1.326172,-0.5625 l -4.53125,0 c -0.95339,0 -1.76735,0.45537 -2.126953,1.39648 a 1.005518,1.005518 0 0 0 -0.002,0.006 l -0.0293,0.0781 c -0.01731,-0.32013 0.06828,-0.65535 -0.134766,-0.89844 -0.347808,-0.4164 -0.855335,-0.58203 -1.332031,-0.58203 l -4.5,0 z m 126.84375,0 c -0.47669,0 -0.93983,0.1554 -1.29883,0.48438 -0.359,0.32897 -0.59237,0.88422 -0.50781,1.42578 a 1.005518,1.005518 0 0 0 0.002,0.0117 l 0.24805,1.48828 c 0.163,1.04453 1.08066,1.60156 2.02539,1.60156 l 4.59375,0 c 0.47236,0 0.94398,-0.15143 1.30469,-0.49609 0.25624,-0.24485 0.28454,-0.64956 0.33008,-1.02539 0.22187,1.00073 1.09408,1.52148 2.02148,1.52148 l 4.59375,0 c 0.47236,0 0.95127,-0.15354 1.31055,-0.51172 0.25469,-0.25391 0.26642,-0.65999 0.29882,-1.03711 l 0.004,0.0176 c 0.23685,1.02967 1.12949,1.53125 2.07422,1.53125 l 4.59375,0 c 0.47236,0 0.95889,-0.15477 1.31641,-0.52734 0.35751,-0.37258 0.50515,-0.97771 0.375,-1.48047 l -0.37305,-1.49219 a 1.005518,1.005518 0 0 0 -0.002,-0.008 c -0.27056,-1.04512 -1.14427,-1.50391 -2.09766,-1.50391 l -4.53125,0 c -0.4767,0 -0.96334,0.16643 -1.3125,0.53516 -0.23363,0.24672 -0.22383,0.6189 -0.25977,0.96679 -0.2501,-1.02289 -1.1138,-1.50193 -2.05273,-1.50195 l -4.5,0 c -0.4767,0 -0.94501,0.1586 -1.30273,0.5 -0.25395,0.24235 -0.28389,0.64874 -0.33008,1.02734 -0.21012,-0.97936 -1.05707,-1.52734 -1.99219,-1.52734 l -4.53125,0 z m 27.15625,0 c -0.47669,10e-6 -0.97184,0.16708 -1.32031,0.55078 -0.34847,0.38371 -0.47372,0.98343 -0.33594,1.47656 l 0.4043,1.49219 a 1.005518,1.005518 0 0 0 0.002,0.008 c 0.29193,1.04478 1.18027,1.48438 2.125,1.48438 l 4.59375,0 c 0.47236,0 0.9794,-0.16235 1.32813,-0.56641 0.2268,-0.2628 0.17455,-0.6247 0.1875,-0.96679 l 0.0254,0.0781 a 1.005518,1.005518 0 0 0 0,0.002 c 0.31248,0.98763 1.1705,1.45313 2.11523,1.45313 l 4.59375,0 c 0.47236,0 0.97361,-0.15649 1.32813,-0.56055 0.22903,-0.26104 0.16937,-0.63347 0.17968,-0.98437 l 0.0449,0.125 c 0.34407,0.9737 1.19004,1.41992 2.13477,1.41992 l 4.59375,0 c 0.47236,0 0.98471,-0.15888 1.33594,-0.58008 0.20377,-0.24437 0.11578,-0.57401 0.13281,-0.89062 l 0.0332,0.084 c 0.37502,0.95529 1.21105,1.38672 2.1543,1.38672 l 4.59375,0 c 0.47236,0 0.99462,-0.16038 1.3418,-0.59961 0.34674,-0.43868 0.37172,-1.08303 0.17968,-1.54297 l -0.625,-1.5 a 1.005518,1.005518 0 0 0 0,-0.002 c -0.38797,-0.92567 -1.19312,-1.36717 -2.14648,-1.36719 l -4.53125,0 c -0.4767,0 -0.98422,0.16563 -1.33203,0.58203 -0.20218,0.24205 -0.11677,0.57576 -0.13477,0.89453 l -0.0312,-0.0801 c -0.35961,-0.94107 -1.17356,-1.39648 -2.12695,-1.39648 l -4.53125,0 c -0.4767,0 -0.99015,0.17161 -1.33203,0.58789 -0.21401,0.26058 -0.14216,0.60905 -0.15039,0.94141 l -0.0352,-0.10156 -0.002,-0.002 c -0.33042,-0.9535 -1.15305,-1.42578 -2.10547,-1.42578 l -4.53125,0 c -0.47669,0 -0.98067,0.16881 -1.32617,0.56836 -0.21098,0.24398 -0.15062,0.58663 -0.17578,0.91016 l -0.002,-0.004 a 1.005518,1.005518 0 0 0 -0.004,-0.0156 c -0.31215,-1.01287 -1.16381,-1.45898 -2.11719,-1.45898 l -4.53125,0 z m -58.00586,3.28125 c 3e-5,9.9e-4 0.002,9.6e-4 0.002,0.002 l 0,0.0137 -0.002,-0.0156 z m -99.77539,4.71875 c -0.956478,0 -1.776945,0.41663 -2.197266,1.33984 l -0.685546,1.49805 a 1.005518,1.005518 0 0 0 -0.002,0.002 c -0.21507,0.47238 -0.175477,1.1625 0.189454,1.59571 0.36493,0.4332 0.877362,0.57617 1.351562,0.57617 l 11.46875,0 c 0.947877,0 1.80535,-0.42074 2.185547,-1.38672 l 0,-0.002 0.111328,-0.28125 c -0.01816,0.40499 -0.05888,0.84504 0.207031,1.13086 0.370569,0.3983 0.865646,0.53906 1.339844,0.53906 l 4.78125,0 c 0.94787,0 1.817368,-0.43343 2.166016,-1.41992 l 0,-0.002 0.08789,-0.24804 c -0.01714,0.39952 -0.04625,0.83318 0.220703,1.125 0.364707,0.39868 0.863693,0.54492 1.337891,0.54492 l 4.8125,0 c 0.948395,0 1.831859,-0.4481 2.146484,-1.45508 l 0.07031,-0.22266 c -0.01165,0.41085 -0.01313,0.85921 0.263672,1.14844 0.366289,0.38274 0.857833,0.5293 1.332031,0.5293 l 4.78125,0 c 0.948394,0 1.866966,-0.42256 2.158203,-1.49219 l 0.05078,-0.1875 c -0.0057,0.42162 0.02258,0.8798 0.308594,1.16602 0.367458,0.36772 0.851975,0.51367 1.326172,0.51367 l 4.78125,0 c 0.948393,0 1.861972,-0.48866 2.103516,-1.5293 l 0.03906,-0.15625 c 0.0041,0.44941 0.08318,0.93076 0.384766,1.20508 0.373886,0.34009 0.842209,0.48047 1.316406,0.48047 l 4.78125,0 c 0.948393,0 1.879682,-0.51206 2.082031,-1.56641 a 1.005518,1.005518 0 0 0 0,-0.004 l 0.01953,-0.0996 c 0.0101,0.43935 0.09361,0.90788 0.394532,1.18554 0.368904,0.3404 0.842209,0.48438 1.316406,0.48438 l 4.8125,0 c 0.948393,0 1.894949,-0.53996 2.056641,-1.60547 a 1.005518,1.005518 0 0 0 0,-0.006 l 0.0059,-0.043 c 0.0207,0.44533 0.133282,0.90974 0.439453,1.18164 0.369349,0.32801 0.83635,0.47266 1.310547,0.47266 l 4.78125,0 c 0.47419,0 0.91491,-0.13719 1.28906,-0.39844 0.37236,-0.25999 0.70456,-0.6828 0.76953,-1.24023 0.0316,0.45115 0.16715,0.91315 0.47852,1.17969 0.36965,0.31642 0.83244,0.45898 1.30664,0.45898 l 4.78125,0 c 0.94546,0 1.91569,-0.60275 1.99805,-1.67578 0.0246,0.48176 0.21169,0.9529 0.54297,1.22656 0.36992,0.30559 0.82854,0.44922 1.30273,0.44922 l 4.78125,0 c 0.91839,0 1.84316,-0.62427 1.93359,-1.64453 0.0408,0.48279 0.24677,0.9409 0.58008,1.20703 0.37006,0.29547 0.82464,0.4375 1.29883,0.4375 l 4.8125,0 c 0.4742,0 0.93017,-0.14395 1.29883,-0.43945 0.33547,-0.2689 0.54493,-0.72469 0.58594,-1.20703 0.0452,0.50129 0.28816,0.9527 0.63281,1.21874 0.37052,0.28602 0.82072,0.42774 1.29492,0.42774 l 4.78125,0 c 0.4742,0 0.92574,-0.14019 1.29883,-0.43555 0.32998,-0.26123 0.52943,-0.72536 0.56836,-1.21093 0.0986,1.0552 1.04733,1.64648 1.97656,1.64648 l 14.34375,0 c 0.4742,0 0.93336,-0.14079 1.30664,-0.45703 0.37328,-0.31624 0.63891,-0.87564 0.56445,-1.43164 a 1.005518,1.005518 0 0 0 -0.002,-0.0117 l -0.2168,-1.48828 c -0.14163,-1.05826 -1.07086,-1.62305 -2.02734,-1.62305 l -14.15625,0 c -0.47824,0 -0.93312,0.15011 -1.29883,0.45313 -0.32221,0.26698 -0.50532,0.72458 -0.53906,1.19921 -0.0903,-1.03223 -1.00788,-1.65234 -1.94336,-1.65234 l -4.71875,0 c -0.47824,0 -0.93076,0.14831 -1.29687,0.44141 -0.32486,0.26007 -0.52545,0.70524 -0.57422,1.18164 -0.0544,-0.49334 -0.28379,-0.93613 -0.61719,-1.19336 -0.36787,-0.28382 -0.81473,-0.42969 -1.29297,-0.42969 l -4.71875,0 c -0.91422,0 -1.81443,0.60186 -1.91797,1.62109 -0.0491,-0.47576 -0.24416,-0.92471 -0.5664,-1.18164 -0.36758,-0.29306 -0.81864,-0.43945 -1.29688,-0.43945 l -4.71875,0 c -0.94068,0 -1.85775,0.62627 -1.95117,1.65234 -0.0335,-0.4751 -0.20904,-0.93691 -0.5293,-1.20117 -0.36719,-0.30298 -0.82254,-0.45117 -1.30078,-0.45117 l -4.71875,0 c -0.952,0 -1.87888,0.59703 -1.99414,1.64063 -0.0268,-0.43933 -0.14667,-0.89011 -0.44922,-1.16211 -0.36156,-0.32506 -0.82841,-0.47852 -1.30664,-0.47852 l -4.75,0 c -0.955559,0 -1.87479,0.56798 -2.025391,1.61133 l -0.0059,0.043 c -0.01655,-0.43266 -0.109695,-0.88498 -0.40625,-1.16211 -0.360836,-0.3372 -0.834262,-0.49219 -1.3125,-0.49219 l -4.71875,0 c -0.956478,0 -1.883759,0.49085 -2.082031,1.57422 l -0.01758,0.0898 c -0.0076,-0.42458 -0.07368,-0.87643 -0.363282,-1.1582 -0.359906,-0.35017 -0.84012,-0.50586 -1.318359,-0.50586 l -4.71875,0 c -0.956477,0 -1.866779,0.46763 -2.105469,1.53711 l 0,-0.006 -0.02148,0.0957 c -0.01731,-0.41537 -0.05838,-0.86085 -0.335938,-1.12695 -0.36507,-0.35 -0.84012,-0.5 -1.318359,-0.5 l -4.71875,0 c -0.956477,0 -1.85155,0.44682 -2.128906,1.5 a 1.005518,1.005518 0 0 0 -0.002,0.0117 l -0.03125,0.12305 c -0.0086,-0.40811 -0.02398,-0.84843 -0.294922,-1.11914 -0.364097,-0.3638 -0.845981,-0.51563 -1.324219,-0.51563 l -4.71875,0 c -0.956478,0 -1.836288,0.42811 -2.150391,1.46289 a 1.005518,1.005518 0 0 0 -0.002,0.0117 l -0.04687,0.16211 c -0.0013,-0.39899 0.01099,-0.83117 -0.251953,-1.10547 -0.36282,-0.3785 -0.851839,-0.53125 -1.330078,-0.53125 l -4.71875,0 c -0.955936,0 -1.804301,0.45711 -2.138672,1.42774 -1.89e-4,5.4e-4 1.89e-4,0.001 0,0.002 l -0.08789,0.24805 c 0.01739,-0.4035 0.04592,-0.84203 -0.21875,-1.13086 -0.361141,-0.39412 -0.857699,-0.54688 -1.335938,-0.54688 l -4.71875,0 c -0.956478,0 -1.792773,0.44455 -2.158203,1.39648 l -0.105469,0.26563 c 0.02048,-0.3893 0.07701,-0.80846 -0.175781,-1.09766 -0.358958,-0.41065 -0.863559,-0.56445 -1.341797,-0.56445 l -11.3125,0 z m 160.46875,0 c -0.47824,0 -0.96849,0.1527 -1.33008,0.53125 -0.36159,0.37855 -0.5057,1.00977 -0.35156,1.51758 a 1.005518,1.005518 0 0 0 0.004,0.008 l 0.46679,1.4961 c 0.31114,1.01748 1.20151,1.45898 2.14844,1.45898 l 4.78125,0 c 0.4742,0 0.96138,-0.141 1.33203,-0.52344 0.27638,-0.28517 0.26736,-0.74018 0.25391,-1.15625 l 0.0879,0.25 c 1.9e-4,5.6e-4 -1.9e-4,0.001 0,0.002 0.34457,1.00036 1.22205,1.42774 2.16992,1.42774 l 4.78125,0 c 0.47419,0 0.98447,-0.14882 1.3457,-0.56445 0.26668,-0.30685 0.21913,-0.74165 0.18555,-1.14063 l 0.12305,0.3086 c 0.3765,0.98079 1.24107,1.39648 2.18945,1.39648 l 4.78125,0 c 0.47419,0 0.99314,-0.14855 1.35156,-0.58203 0.35843,-0.43348 0.3943,-1.09333 0.20117,-1.5586 a 1.005518,1.005518 0 0 0 0,-0.002 l -0.625,-1.49805 0,-0.002 c -0.39247,-0.94369 -1.22178,-1.36914 -2.17773,-1.36914 l -4.71875,0 c -0.47823,0 -0.98418,0.1557 -1.3418,0.56641 -0.25387,0.29156 -0.20104,0.71026 -0.17968,1.09961 l -0.0996,-0.26368 c -0.3621,-0.96573 -1.20368,-1.40234 -2.16016,-1.40234 l -4.71875,0 c -0.47824,0 -0.97608,0.15466 -1.33594,0.54883 -0.25207,0.27611 -0.21358,0.68967 -0.21094,1.07422 l -0.0625,-0.18555 c -0.17224,-0.51447 -0.51897,-0.83952 -0.89257,-1.06836 -0.3736,-0.22884 -0.80106,-0.36914 -1.2793,-0.36914 l -4.71875,0 z m 27.375,4 c -0.46259,0 -0.95435,0.12125 -1.32812,0.53711 -0.37378,0.41586 -0.42581,1.13228 -0.20118,1.5957 l 1.20899,2.48828 c -0.44174,-0.37414 -0.96311,-0.62109 -1.58594,-0.62109 l -4.9375,0 c -0.4807,0 -0.9945,0.14731 -1.35937,0.57031 -0.29111,0.33748 -0.25379,0.82632 -0.17969,1.25586 l -0.1875,-0.45508 c -0.39542,-0.96221 -1.25101,-1.37109 -2.21094,-1.37109 l -13.78125,0 c -0.48069,10e-6 -0.96743,0.14191 -1.3418,0.51563 -0.37437,0.37371 -0.53565,1.03573 -0.36328,1.55664 a 1.005518,1.005518 0 0 0 0.002,0.002 l 0.5,1.5 c 0.34218,1.02964 1.25007,1.4375 2.20312,1.4375 l 14,0 c 0.47699,0 0.97864,-0.13266 1.35547,-0.54297 0.30388,-0.33088 0.28488,-0.84183 0.21289,-1.28516 l 0.19141,0.45899 a 1.005518,1.005518 0 0 0 0,0.002 c 0.40895,0.97722 1.28625,1.36719 2.24023,1.36719 l 5,0 c 0.47699,0 0.98775,-0.13263 1.36328,-0.56055 0.28074,-0.3199 0.21446,-0.78458 0.15625,-1.20312 l 0.23242,0.47851 c 0.45552,0.93579 1.30842,1.28516 2.24805,1.28516 l 5,0 c 0.4698,0 0.97448,-0.11754 1.35547,-0.55469 0.38056,-0.43665 0.40077,-1.17242 0.16211,-1.63281 l 0,-0.002 c -0.002,-0.003 -2.90625,-5.5918 -2.90625,-5.5918 a 1.005518,1.005518 0 0 0 0,-0.002 c -0.24412,-0.46912 -0.603,-0.72338 -0.98047,-0.91602 -0.37747,-0.19264 -0.79327,-0.3125 -1.25586,-0.3125 l -4.8125,0 z m -192.09375,4 c -0.961403,0 -1.792628,0.39889 -2.244141,1.30859 l -0.748047,1.49805 a 1.005518,1.005518 0 0 0 -0.002,0.002 c -0.230425,0.46425 -0.217386,1.17845 0.15625,1.625 0.373637,0.44655 0.89215,0.57813 1.369141,0.57813 l 9,0 c 0.953978,0 1.830371,-0.37109 2.263672,-1.34961 a 1.005518,1.005518 0 0 0 0.002,-0.004 l 0.183594,-0.42187 c -0.05543,0.43385 -0.09743,0.92293 0.193359,1.23633 0.380339,0.40991 0.880433,0.53906 1.357422,0.53906 l 7,0 c 0.952519,0 1.83344,-0.40761 2.216797,-1.38672 l 0.002,-0.004 0.175781,-0.44726 c -0.0701,0.45762 -0.058,0.98723 0.25586,1.3125 0.379673,0.39347 0.87262,0.52539 1.349609,0.52539 l 8,0 c 0.953049,0 1.860931,-0.4079 2.203125,-1.4375 l 0.002,-0.002 0.136719,-0.41407 c -0.07028,0.47044 -0.0127,1.01468 0.314453,1.3418 0.378095,0.37806 0.866761,0.51172 1.34375,0.51172 l 49,0 c 0.47699,0 0.92436,-0.13359 1.30469,-0.40039 0.38033,-0.26681 0.71819,-0.7138 0.75976,-1.2832 a 1.005518,1.005518 0 0 0 0.002,-0.01 l 0.002,-0.0371 c 0.006,0.53361 0.25953,1.03058 0.61719,1.30469 0.38169,0.29252 0.83746,0.42578 1.31445,0.42578 l 8,0 c 0.47699,0 0.93078,-0.13638 1.30859,-0.41992 0.37738,-0.28321 0.68844,-0.76197 0.69727,-1.31836 1e-5,6.5e-4 -1e-5,0.001 0,0.002 l 0,0.002 c 0.009,0.55554 0.31081,1.03822 0.68359,1.31641 0.37981,0.28343 0.83356,0.41797 1.31055,0.41797 l 7,0 c 0.47699,0 0.93334,-0.13505 1.3125,-0.42774 0.37217,-0.28729 0.65829,-0.79049 0.64844,-1.34179 l 0.004,0.0625 c 0.0269,0.56108 0.34989,1.02198 0.72852,1.29687 0.37863,0.2749 0.82965,0.41016 1.30664,0.41016 l 7,0 c 0.47699,0 0.9358,-0.13309 1.31641,-0.43555 0.35429,-0.28155 0.58546,-0.79078 0.58007,-1.31445 l 0.01,0.0977 c 0.0592,0.57309 0.40976,1.00076 0.79102,1.25976 0.38167,0.25929 0.82574,0.39258 1.30273,0.39258 l 7,0 c 0.47699,0 0.94658,-0.13635 1.32422,-0.46094 0.37764,-0.32458 0.62419,-0.89646 0.54492,-1.43945 l -0.21875,-1.5 c -0.1611,-1.10315 -1.12651,-1.61131 -2.08789,-1.61133 l -6.875,0 c -0.4807,0 -0.93676,0.13964 -1.31445,0.43945 -0.35168,0.27916 -0.58991,0.78558 -0.58008,1.32032 l -0.01,-0.0957 0,-0.002 c -0.0528,-0.56447 -0.38887,-0.99311 -0.76367,-1.25781 -0.37522,-0.26501 -0.82008,-0.4043 -1.30078,-0.4043 l -6.875,0 c -0.4807,0 -0.93412,0.13945 -1.31055,0.42969 -0.35402,0.27296 -0.61212,0.75755 -0.62304,1.29297 l 0,-0.006 0,-0.002 c -0.044,-1.10073 -1.04308,-1.71484 -2.00391,-1.71484 l -6.90625,0 c -0.4807,0 -0.93138,0.1406 -1.30664,0.42188 -0.36653,0.27473 -0.66657,0.74213 -0.68359,1.29687 -0.0154,-0.53106 -0.28061,-1.0063 -0.63868,-1.28516 -0.37288,-0.29039 -0.82789,-0.43359 -1.30859,-0.43359 l -7.90625,0 c -0.9614,0 -1.96427,0.57097 -2.03516,1.69141 a 1.005518,1.005518 0 0 0 0,0.002 l -0.002,0.0469 c -5e-5,-0.52447 -0.23697,-1.0178 -0.58789,-1.29883 -0.37459,-0.29999 -0.83179,-0.44142 -1.3125,-0.44141 l -48.28125,0 c -0.961404,0 -1.848604,0.43049 -2.175781,1.44922 a 1.005518,1.005518 0 0 0 -0.002,0.006 l -0.113282,0.36328 c 0.05587,-0.46497 0.0087,-0.98994 -0.304687,-1.30273 -0.37437,-0.37373 -0.861095,-0.51563 -1.341797,-0.51563 l -7.875,0 c -0.480703,0 -0.914197,0.13663 -1.294922,0.35938 -0.380725,0.22274 -0.73385,0.5334 -0.925781,1.03906 a 1.005518,1.005518 0 0 0 -0.002,0.004 l -0.146485,0.39063 c 0.05726,-0.43335 0.07681,-0.92132 -0.214843,-1.24219 C 47.484822,287.1393 46.980702,286.99414 46.5,286.99414 l -6.90625,0 c -0.961404,0 -1.81537,0.38794 -2.234375,1.35547 l -0.181641,0.41016 c 0.05618,-0.41839 0.114839,-0.88154 -0.162109,-1.19922 -0.368546,-0.42276 -0.878672,-0.56641 -1.359375,-0.56641 l -8.875,0 z m 137.96875,0 c -0.4807,0 -0.94449,0.13976 -1.32227,0.46094 -0.37777,0.32117 -0.64603,0.91058 -0.54101,1.47851 a 1.005518,1.005518 0 0 0 0,0.002 l 0.28125,1.5 c 0.10436,0.56089 0.46181,0.94783 0.84375,1.19336 0.38235,0.24579 0.82379,0.37695 1.30078,0.37695 l 5,0 c 0.47699,0 0.94672,-0.1324 1.32812,-0.46875 0.33824,-0.29828 0.47884,-0.83625 0.44141,-1.33203 l 0.0625,0.26953 c 0.12617,0.55168 0.48646,0.92045 0.86914,1.16016 0.38268,0.23971 0.82184,0.37109 1.29883,0.37109 l 5,0 c 0.47699,0 0.96152,-0.13646 1.33789,-0.5 0.33792,-0.3264 0.43896,-0.87629 0.37305,-1.35742 l 0.0996,0.36523 c 0.29434,1.08024 1.23547,1.49219 2.18945,1.49219 l 5,0 c 0.47699,0 0.9676,-0.13543 1.34375,-0.51367 0.37615,-0.37825 0.52267,-1.02995 0.36719,-1.53711 l -0.4336,-1.48633 a 1.005518,1.005518 0 0 0 -0.004,-0.0137 c -0.31943,-1.04197 -1.21829,-1.46094 -2.17969,-1.46094 l -4.9375,0 c -0.4807,0 -0.96311,0.14245 -1.33594,0.50195 -0.32433,0.31274 -0.41365,0.84371 -0.36133,1.32032 l -0.0781,-0.31055 a 1.005518,1.005518 0 0 0 -0.002,-0.0117 c -0.28026,-1.06649 -1.19878,-1.49998 -2.16016,-1.5 l -4.9375,0 c -0.4807,0 -0.95711,0.14423 -1.33008,0.49024 -0.32897,0.30518 -0.44883,0.83055 -0.4082,1.31445 l -0.0606,-0.26367 c -0.23834,-1.08893 -1.17726,-1.54102 -2.13867,-1.54102 l -4.90625,0 z" - transform="translate(23,71)" /> - <path - sodipodi:type="inkscape:offset" - inkscape:radius="1.016466" - inkscape:original="M 36.5625 268 C 36.069934 267.99999 35.539974 268.33572 35.375 268.75 C 35.375001 268.75001 34.78125 270.25 34.78125 270.25 C 34.613485 270.67132 34.875944 271 35.375 271 C 35.375002 270.99999 39.875 271 39.875 271 C 40.374094 270.99999 40.906251 270.67132 41.0625 270.25 C 41.062498 270.25 41.625 268.75 41.625 268.75 C 41.778636 268.33573 41.492567 268 41 268 C 41.000001 267.99999 36.5625 268 36.5625 268 z M 52.5625 268 C 52.069936 267.99999 51.573354 268.33572 51.4375 268.75 C 51.437499 268.75001 50.9375 270.25 50.9375 270.25 C 50.799337 270.67132 51.094654 271 51.59375 271 C 51.59375 270.99999 56.09375 271 56.09375 271 C 56.592846 270.99999 57.092107 270.67132 57.21875 270.25 C 57.21875 270.25 57.6875 268.75 57.6875 268.75 C 57.812038 268.33573 57.492566 268 57 268 C 56.999999 267.99999 52.5625 268 52.5625 268 z M 60.5625 268 C 60.069936 267.99999 59.590053 268.33572 59.46875 268.75 C 59.468749 268.75001 59.03125 270.25 59.03125 270.25 C 58.907893 270.67132 59.188404 271 59.6875 271 C 59.687498 270.99999 64.1875 271 64.1875 271 C 64.686593 270.99999 65.200648 270.67132 65.3125 270.25 C 65.312498 270.25 65.71875 268.75 65.71875 268.75 C 65.828734 268.33573 65.492576 268 65 268 C 64.999998 267.99999 60.5625 268 60.5625 268 z M 68.5625 268 C 68.069936 267.99999 67.606742 268.33572 67.5 268.75 C 67.500002 268.75001 67.09375 270.25 67.09375 270.25 C 66.985201 270.67132 67.313413 271 67.8125 271 C 67.812503 270.99999 72.3125 271 72.3125 271 C 72.811587 271.00002 73.277962 270.67132 73.375 270.25 C 73.375001 270.25 73.71875 268.75 73.71875 268.75 C 73.814179 268.33573 73.523806 268 73.03125 268 C 73.031247 267.99999 68.5625 268 68.5625 268 z M 76.5625 268 C 76.069932 267.99999 75.623432 268.33572 75.53125 268.75 C 75.531247 268.75001 75.1875 270.25 75.1875 270.25 C 75.093789 270.67132 75.407144 271.00001 75.90625 271 C 75.90625 271.00001 80.40625 271 80.40625 271 C 80.905348 270.99999 81.386514 270.67132 81.46875 270.25 C 81.468746 270.25 81.75 268.75 81.75 268.75 C 81.830815 268.33573 81.523817 268 81.03125 268 C 81.031248 267.99999 76.5625 268 76.5625 268 z M 88.125 268 C 87.632431 267.99999 87.196161 268.33572 87.125 268.75 C 87.125 268.75001 86.84375 270.25 86.84375 270.25 C 86.771398 270.67132 87.125904 271.00001 87.625 271 C 87.625002 271.00001 92.125 271 92.125 271 C 92.624092 270.99999 93.064148 270.67132 93.125 270.25 C 93.125002 270.25 93.34375 268.75 93.34375 268.75 C 93.403607 268.33573 93.055076 268 92.5625 268 C 92.562497 267.99999 88.125 268 88.125 268 z M 96.125 268 C 95.632434 267.99999 95.212851 268.33572 95.15625 268.75 C 95.156253 268.75001 94.9375 270.25 94.9375 270.25 C 94.879966 270.67132 95.219654 271 95.71875 271 C 95.718747 271.00001 100.25 271 100.25 271 C 100.7491 270.99999 101.1727 270.67132 101.21875 270.25 C 101.21875 270.25 101.375 268.75 101.375 268.75 C 101.42024 268.33573 101.08632 268 100.59375 268 C 100.59375 267.99999 96.125 268 96.125 268 z M 104.125 268 C 103.63243 267.99999 103.1983 268.33572 103.15625 268.75 C 103.15625 268.75001 103.03125 270.25 103.03125 270.25 C 102.98853 270.67132 103.34466 270.99999 103.84375 271 C 103.84375 270.99999 108.34375 271 108.34375 271 C 108.84284 270.99999 109.28126 270.67132 109.3125 270.25 C 109.3125 270.25 109.40625 268.75 109.40625 268.75 C 109.43699 268.33573 109.08632 268 108.59375 268 C 108.59375 267.99999 104.125 268 104.125 268 z M 112.125 268 C 111.63243 267.99998 111.215 268.33572 111.1875 268.75 C 111.1875 268.75001 111.09375 270.25 111.09375 270.25 C 111.06574 270.67132 111.4384 270.99999 111.9375 271 C 111.9375 270.99999 116.46875 271 116.46875 271 C 116.96785 270.99999 117.35856 270.67132 117.375 270.25 C 117.375 270.25 117.4375 268.75 117.4375 268.75 C 117.45373 268.33573 117.08632 268 116.59375 268 C 116.59375 267.99999 112.125 268 112.125 268 z M 123.6875 268 C 123.19492 267.99999 122.78773 268.33572 122.78125 268.75 C 122.78125 268.75001 122.78125 270.25 122.78125 270.25 C 122.7742 270.67132 123.15715 270.99999 123.65625 271 C 123.65625 270.99999 128.15625 271 128.15625 271 C 128.65535 270.99999 129.06744 270.67132 129.0625 270.25 C 129.0625 270.25 129.03125 268.75 129.03125 268.75 C 129.02621 268.33573 128.64882 268 128.15625 268 C 128.15625 267.99999 123.6875 268 123.6875 268 z M 131.6875 268 C 131.19493 267.99999 130.80442 268.33572 130.8125 268.75 C 130.8125 268.75001 130.84375 270.25 130.84375 270.25 C 130.85183 270.67132 131.28215 271 131.78125 271 C 131.78124 270.99999 136.28125 271 136.28125 271 C 136.78035 270.99998 137.14474 270.67132 137.125 270.25 C 137.12499 270.25 137.0625 268.75 137.0625 268.75 C 137.04305 268.33573 136.64882 268 136.15625 268 C 136.15625 267.99999 131.6875 268 131.6875 268 z M 139.6875 268 C 139.19493 267.99999 138.82109 268.33572 138.84375 268.75 C 138.84374 268.75001 138.9375 270.25 138.9375 270.25 C 138.96057 270.67132 139.37591 271 139.875 271 C 139.87501 270.99999 144.375 271 144.375 271 C 144.8741 271.00001 145.25328 270.67132 145.21875 270.25 C 145.21875 270.25 145.09375 268.75 145.09375 268.75 C 145.05978 268.33573 144.64882 268 144.15625 268 C 144.15625 267.99999 139.6875 268 139.6875 268 z M 147.6875 268 C 147.19494 267.99999 146.8378 268.33572 146.875 268.75 C 146.875 268.75001 147 270.25 147 270.25 C 147.03787 270.67132 147.5009 271 148 271 C 148 270.99999 152.5 271 152.5 271 C 152.99908 271.00002 153.36184 270.67132 153.3125 270.25 C 153.31249 270.25 153.125 268.75 153.125 268.75 C 153.07654 268.33573 152.64881 268 152.15625 268 C 152.15626 267.99999 147.6875 268 147.6875 268 z M 161.03125 268 C 160.53869 267.99999 160.18853 268.33572 160.25 268.75 C 160.25 268.75001 160.46875 270.25 160.46875 270.25 C 160.53123 270.67132 161.00092 271 161.5 271 C 161.49999 270.99999 166 271 166 271 C 166.4991 271.00001 166.85525 270.67132 166.78125 270.25 C 166.78126 270.25 166.5 268.75 166.5 268.75 C 166.42725 268.33573 165.96132 268 165.46875 268 C 165.46874 267.99999 161.03125 268 161.03125 268 z M 169.03125 268 C 168.53868 267.99999 168.20524 268.33572 168.28125 268.75 C 168.28124 268.75001 168.5625 270.25 168.5625 270.25 C 168.63979 270.67132 169.09465 271 169.59375 271 C 169.59376 270.99999 174.125 271 174.125 271 C 174.62407 271.00002 174.93256 270.67132 174.84375 270.25 C 174.84374 270.25 174.53125 268.75 174.53125 268.75 C 174.44388 268.33573 173.99257 268 173.5 268 C 173.50001 267.99999 169.03125 268 169.03125 268 z M 177.03125 268 C 176.53867 267.99999 176.22193 268.33572 176.3125 268.75 C 176.3125 268.75001 176.65625 270.25 176.65625 270.25 C 176.74834 270.67132 177.21965 271.00001 177.71875 271 C 177.71874 271.00001 182.21875 271 182.21875 271 C 182.71784 271.00002 183.04112 270.67132 182.9375 270.25 C 182.9375 270.25 182.5625 268.75 182.5625 268.75 C 182.4606 268.33573 181.99258 268.00001 181.5 268 C 181.50001 268.00001 177.03125 268 177.03125 268 z M 32.6875 276 C 32.175241 276 31.61734 276.33815 31.4375 276.75 C 31.4375 276.74999 30.78125 278.25 30.78125 278.25 C 30.59823 278.66915 30.85557 279 31.375 279 C 31.375 279 39.8125 279 39.8125 279 C 40.33187 279 40.89921 278.66915 41.0625 278.25 C 41.062501 278.25 41.625 276.75 41.625 276.75 C 41.785438 276.33814 41.51226 276 41 276 C 41 276 32.6875 276 32.6875 276 z M 44.6875 276 C 44.175239 276 43.65692 276.33815 43.5 276.75 C 43.500001 276.74999 42.90625 278.25 42.90625 278.25 C 42.74655 278.66915 43.04312 279 43.5625 279 C 43.5625 279 48.25 279 48.25 279 C 48.76937 279 49.32161 278.66915 49.46875 278.25 C 49.468748 278.25 50 276.75 50 276.75 C 50.144579 276.33814 49.82476 276 49.3125 276 C 49.312502 276 44.6875 276 44.6875 276 z M 53.03125 276 C 52.51899 276 51.98481 276.33815 51.84375 276.75 C 51.843752 276.74999 51.3125 278.25 51.3125 278.25 C 51.168961 278.66915 51.48062 279 52 279 C 52 279 56.6875 279 56.6875 279 C 57.20687 279 57.74403 278.66915 57.875 278.25 C 57.875 278.25 58.34375 276.75 58.34375 276.75 C 58.472461 276.33814 58.16851 276 57.65625 276 C 57.656249 276 53.03125 276 53.03125 276 z M 61.34375 276 C 60.831492 276 60.31268 276.33815 60.1875 276.75 C 60.1875 276.74999 59.75 278.25 59.75 278.25 C 59.622601 278.66915 59.91812 279 60.4375 279 C 60.4375 279 65.125 279 65.125 279 C 65.64437 279 66.16641 278.66915 66.28125 278.25 C 66.281254 278.25 66.6875 276.75 66.6875 276.75 C 66.800352 276.33814 66.48101 276 65.96875 276 C 65.968747 276 61.34375 276 61.34375 276 z M 69.65625 276 C 69.143993 276 68.64057 276.33815 68.53125 276.75 C 68.531247 276.74999 68.15625 278.25 68.15625 278.25 C 68.044999 278.66915 68.35562 279 68.875 279 C 68.875 279 73.5625 279 73.5625 279 C 74.08187 279 74.58882 278.66915 74.6875 278.25 C 74.687501 278.25 75.03125 276.75 75.03125 276.75 C 75.128247 276.33814 74.79351 276 74.28125 276 C 74.28125 276 69.65625 276 69.65625 276 z M 78 276 C 77.487739 276 76.9997 276.33816 76.90625 276.75 C 76.90625 276.74999 76.5625 278.25 76.5625 278.25 C 76.467399 278.66915 76.79312 279 77.3125 279 C 77.3125 279 82 279 82 279 C 82.51936 279 83.01121 278.66915 83.09375 278.25 C 83.093752 278.25 83.375 276.75 83.375 276.75 C 83.456097 276.33814 83.106 276 82.59375 276 C 82.593748 276 78 276 78 276 z M 86.3125 276 C 85.800236 276 85.32758 276.33815 85.25 276.75 C 85.250002 276.74999 84.96875 278.25 84.96875 278.25 C 84.889749 278.66915 85.23062 279 85.75 279 C 85.75 279 90.4375 279 90.4375 279 C 90.95687 279 91.43361 278.66915 91.5 278.25 C 91.500002 278.25 91.75 276.75 91.75 276.75 C 91.815202 276.33814 91.44976 276 90.9375 276 C 90.937503 276 86.3125 276 86.3125 276 z M 94.625 276 C 94.112742 276 93.65546 276.33815 93.59375 276.75 C 93.593748 276.74999 93.375 278.25 93.375 278.25 C 93.312197 278.66915 93.66812 279 94.1875 279 C 94.1875 279 98.875 279 98.875 279 C 99.39437 279 99.856 278.66916 99.90625 278.25 C 99.906251 278.24999 100.09375 276.75 100.09375 276.75 C 100.14315 276.33814 99.762259 276 99.25 276 C 99.250001 276 94.625 276 94.625 276 z M 102.9375 276 C 102.42524 276 101.98334 276.33815 101.9375 276.75 C 101.9375 276.74999 101.78125 278.25 101.78125 278.25 C 101.73455 278.66915 102.10562 279 102.625 279 C 102.625 279 107.3125 279 107.3125 279 C 107.83187 279 108.27841 278.66916 108.3125 278.25 C 108.3125 278.24999 108.4375 276.75 108.4375 276.75 C 108.471 276.33814 108.07476 276 107.5625 276 C 107.5625 276 102.9375 276 102.9375 276 z M 111.28125 276 C 110.769 276 110.31122 276.33815 110.28125 276.75 C 110.28125 276.74999 110.1875 278.25 110.1875 278.25 C 110.157 278.66915 110.54312 279 111.0625 279 C 111.0625 279 115.75 279 115.75 279 C 116.26937 279 116.70081 278.66916 116.71875 278.25 C 116.71875 278.24999 116.78125 276.75 116.78125 276.75 C 116.79885 276.33817 116.41851 276 115.90625 276 C 115.90625 276 111.28125 276 111.28125 276 z M 119.59375 276 C 119.08149 276 118.67037 276.33816 118.65625 276.75 C 118.65625 276.75001 118.59375 278.25 118.59375 278.25 C 118.57935 278.66915 118.98063 279 119.5 279 C 119.5 279 124.1875 279 124.1875 279 C 124.70688 279 125.12321 278.66915 125.125 278.25 C 125.125 278.25 125.125 276.75 125.125 276.75 C 125.127 276.33815 124.73101 276 124.21875 276 C 124.21875 276 119.59375 276 119.59375 276 z M 127.90625 276 C 127.39399 276 126.99825 276.33816 127 276.75 C 127 276.75001 127 278.25 127 278.25 C 127.002 278.66915 127.41813 279 127.9375 279 C 127.9375 279 132.625 279 132.625 279 C 133.14437 279 133.54561 278.66915 133.53125 278.25 C 133.53125 278.25 133.5 276.75 133.5 276.75 C 133.48591 276.33814 133.04352 276 132.53125 276 C 132.53124 276 127.90625 276 127.90625 276 z M 136.25 276 C 135.73774 276 135.32612 276.33816 135.34375 276.75 C 135.34374 276.74999 135.40625 278.25 135.40625 278.25 C 135.42425 278.66915 135.85563 279 136.375 279 C 136.375 279 141.0625 279 141.0625 279 C 141.58188 279 141.968 278.66915 141.9375 278.25 C 141.93751 278.25 141.84375 276.75 141.84375 276.75 C 141.81376 276.33814 141.38727 276 140.875 276 C 140.87499 276 136.25 276 136.25 276 z M 144.5625 276 C 144.05024 276 143.654 276.33815 143.6875 276.75 C 143.68749 276.74999 143.8125 278.25 143.8125 278.25 C 143.8466 278.66915 144.29313 279 144.8125 279 C 144.8125 279 153.25 279 153.25 279 C 153.76938 279 154.14758 278.66915 154.09375 278.25 C 154.09375 278.25 153.90625 276.75 153.90625 276.75 C 153.85336 276.33814 153.38726 276 152.875 276 C 152.87501 276 144.5625 276 144.5625 276 z M 162.125 276 C 161.61274 276 161.24552 276.33816 161.3125 276.75 C 161.31249 276.75001 161.5625 278.25 161.5625 278.25 C 161.63071 278.66915 162.10563 279 162.625 279 C 162.625 279 167.3125 279 167.3125 279 C 167.83188 279 168.17449 278.66915 168.09375 278.25 C 168.09375 278.25 167.8125 276.75 167.8125 276.75 C 167.7332 276.33814 167.26227 276 166.75 276 C 166.74999 276 162.125 276 162.125 276 z M 170.4375 276 C 169.92522 276 169.60464 276.33816 169.6875 276.75 C 169.6875 276.74999 169.96875 278.25 169.96875 278.25 C 170.05305 278.66915 170.54313 279 171.0625 279 C 171.0625 279 175.75 279 175.75 279 C 176.26938 279 176.62815 278.66915 176.53125 278.25 C 176.53125 278.25 176.15625 276.75 176.15625 276.75 C 176.06105 276.33814 175.57476 276 175.0625 276 C 175.0625 276 170.4375 276 170.4375 276 z M 178.78125 276 C 178.269 276 177.93252 276.33815 178.03125 276.75 C 178.03125 276.74999 178.375 278.25 178.375 278.25 C 178.47549 278.66915 178.98063 279 179.5 279 C 179.5 279 184.1875 279 184.1875 279 C 184.70686 279 185.05055 278.66915 184.9375 278.25 C 184.93751 278.25 184.53125 276.75 184.53125 276.75 C 184.42018 276.33814 183.9185 276 183.40625 276 C 183.40625 276 178.78125 276 178.78125 276 z M 189.875 276 C 189.36273 276 189.03637 276.33815 189.15625 276.75 C 189.15625 276.74999 189.59375 278.25 189.59375 278.25 C 189.71578 278.66915 190.23063 279 190.75 279 C 190.75 279 195.4375 279 195.4375 279 C 195.95688 279 196.25958 278.66916 196.125 278.25 C 196.125 278.24999 195.65625 276.75 195.65625 276.75 C 195.52403 276.33817 195.01226 276 194.5 276 C 194.49999 276 189.875 276 189.875 276 z M 198.1875 276 C 197.67524 276 197.36426 276.33816 197.5 276.75 C 197.5 276.75001 198 278.25 198 278.25 C 198.13817 278.66915 198.66813 279 199.1875 279 C 199.1875 279 203.875 279 203.875 279 C 204.39438 279 204.68198 278.66915 204.53125 278.25 C 204.53125 278.25 204 276.75 204 276.75 C 203.85189 276.33815 203.32476 276 202.8125 276 C 202.8125 276 198.1875 276 198.1875 276 z M 206.5 276 C 205.98774 276 205.72339 276.33816 205.875 276.75 C 205.875 276.74999 206.40625 278.25 206.40625 278.25 C 206.56058 278.66915 207.10563 279 207.625 279 C 207.625 279 212.3125 279 212.3125 279 C 212.83188 279 213.10437 278.66915 212.9375 278.25 C 212.9375 278.25 212.34375 276.75 212.34375 276.75 C 212.17978 276.33814 211.63726 276 211.125 276 C 211.125 276 206.5 276 206.5 276 z M 215.0625 276 C 214.55023 276 214.27002 276.31114 214.4375 276.6875 C 214.4375 276.6875 216.9375 282.28125 216.9375 282.28125 C 217.11527 282.68076 217.68833 283 218.21875 283 C 218.21875 283 223 283 223 283 C 223.53042 283 223.81588 282.68075 223.625 282.28125 C 223.62501 282.28125 220.9375 276.6875 220.9375 276.6875 C 220.75767 276.31113 220.19975 276 219.6875 276 C 219.68749 276 215.0625 276 215.0625 276 z M 28.90625 284 C 28.372039 284.00001 27.78937 284.33831 27.59375 284.75 C 27.59375 284.75001 26.875 286.25 26.875 286.25 C 26.67575 286.66932 26.95808 287 27.5 287 C 27.500001 287 43.15625 287 43.15625 287 C 43.698201 287 44.24217 286.66932 44.40625 286.25 C 44.406249 286.25 45 284.75 45 284.75 C 45.161089 284.33832 44.87797 284 44.34375 284 C 44.343749 284.00001 28.90625 284 28.90625 284 z M 48.1875 284 C 47.653278 284.00001 47.09476 284.33831 46.9375 284.75 C 46.9375 284.75001 46.375 286.25 46.375 286.25 C 46.21483 286.66932 46.52054 287 47.0625 287 C 47.062501 287 51.9375 287 51.9375 287 C 52.47946 287 53.04099 286.66932 53.1875 286.25 C 53.187502 286.25 53.71875 284.75 53.71875 284.75 C 53.862591 284.33832 53.53422 284 53 284 C 53 284.00001 48.1875 284 48.1875 284 z M 56.875 284 C 56.340779 284.00001 55.79625 284.33831 55.65625 284.75 C 55.656252 284.75001 55.15625 286.25 55.15625 286.25 C 55.01366 286.66932 55.33304 287 55.875 287 C 55.874999 287 60.75 287 60.75 287 C 61.291959 287 61.83983 286.66932 61.96875 286.25 C 61.968752 286.25 62.4375 284.75 62.4375 284.75 C 62.564069 284.33832 62.22172 284 61.6875 284 C 61.6875 284.00001 56.875 284 56.875 284 z M 65.53125 284 C 64.997033 284.00001 64.49774 284.33831 64.375 284.75 C 64.375001 284.75001 63.90625 286.25 63.90625 286.25 C 63.781229 286.66932 64.1143 287 64.65625 287 C 64.656252 287 69.5625 287 69.5625 287 C 70.104451 287 70.63866 286.66932 70.75 286.25 C 70.749998 286.25 71.125 284.75 71.125 284.75 C 71.23431 284.33832 70.90921 284 70.375 284 C 70.374999 284.00001 65.53125 284 65.53125 284 z M 74.21875 284 C 73.684529 284.00001 73.16798 284.33831 73.0625 284.75 C 73.062502 284.75001 72.6875 286.25 72.6875 286.25 C 72.580062 286.66932 72.92679 287 73.46875 287 C 73.468751 287 78.375 287 78.375 287 C 78.916949 287 79.40624 286.66932 79.5 286.25 C 79.499997 286.25 79.84375 284.75 79.84375 284.75 C 79.935849 284.33832 79.56546 284 79.03125 284 C 79.031253 284.00001 74.21875 284 74.21875 284 z M 82.90625 284 C 82.372038 284.00001 81.86946 284.33831 81.78125 284.75 C 81.781253 284.75001 81.46875 286.25 81.46875 286.25 C 81.378952 286.66932 81.73929 287 82.28125 287 C 82.281251 287 87.15625 287 87.15625 287 C 87.698222 287 88.20506 286.66932 88.28125 286.25 C 88.28125 286.25 88.5625 284.75 88.5625 284.75 C 88.637301 284.33832 88.25296 284 87.71875 284 C 87.718751 284.00001 82.90625 284 82.90625 284 z M 91.59375 284 C 91.059542 284.00001 90.57096 284.33831 90.5 284.75 C 90.500002 284.75001 90.21875 286.25 90.21875 286.25 C 90.146452 286.66932 90.55179 287 91.09375 287 C 91.093749 287 95.96875 287 95.96875 287 C 96.510713 287 97.0039 286.66932 97.0625 286.25 C 97.0625 286.25 97.25 284.75 97.25 284.75 C 97.307502 284.33832 96.94046 284 96.40625 284 C 96.406248 284.00001 91.59375 284 91.59375 284 z M 100.25 284 C 99.715788 284 99.2412 284.33831 99.1875 284.75 C 99.187504 284.75001 99 286.25 99 286.25 C 98.945297 286.66932 99.33306 287 99.875 287 C 99.875 287 104.78125 287 104.78125 287 C 105.3232 287 105.77148 286.66932 105.8125 286.25 C 105.8125 286.25 105.96875 284.75 105.96875 284.75 C 106.00905 284.33832 105.62796 284 105.09375 284 C 105.09375 284.00001 100.25 284 100.25 284 z M 108.9375 284 C 108.40329 284.00001 107.94269 284.33831 107.90625 284.75 C 107.90625 284.75001 107.78125 286.25 107.78125 286.25 C 107.74415 286.66932 108.14553 287 108.6875 287 C 108.6875 287 113.59375 287 113.59375 287 C 114.13571 287 114.57031 286.66932 114.59375 286.25 C 114.59375 286.25 114.6875 284.75 114.6875 284.75 C 114.7105 284.33832 114.28422 284 113.75 284 C 113.75 284.00001 108.9375 284 108.9375 284 z M 117.625 284 C 117.09079 284.00001 116.64417 284.33831 116.625 284.75 C 116.625 284.75001 116.5625 286.25 116.5625 286.25 C 116.543 286.66932 116.95804 287 117.5 287 C 117.5 287 122.375 287 122.375 287 C 122.91696 287 123.36914 286.66932 123.375 286.25 C 123.375 286.25 123.40625 284.75 123.40625 284.75 C 123.41225 284.33832 122.97172 284 122.4375 284 C 122.4375 284.00001 117.625 284 117.625 284 z M 126.28125 284 C 125.74704 284.00001 125.34567 284.33831 125.34375 284.75 C 125.34375 284.75001 125.3125 286.25 125.3125 286.25 C 125.3105 286.66932 125.7393 287 126.28125 287 C 126.28125 287 131.1875 287 131.1875 287 C 131.72946 287 132.16797 286.66932 132.15625 286.25 C 132.15625 286.25 132.09375 284.75 132.09375 284.75 C 132.08225 284.33832 131.65922 283.99999 131.125 284 C 131.125 284.00001 126.28125 284 126.28125 284 z M 134.96875 284 C 134.43453 284.00001 134.01591 284.33831 134.03125 284.75 C 134.03126 284.75001 134.09375 286.25 134.09375 286.25 C 134.10935 286.66932 134.5518 287 135.09375 287 C 135.09374 287 154.65625 287 154.65625 287 C 155.1982 287 155.58985 286.66932 155.53125 286.25 C 155.53124 286.25 155.34375 284.75 155.34375 284.75 C 155.28625 284.33832 154.7842 284 154.25 284 C 154.25001 284.00001 134.96875 284 134.96875 284 z M 172.59375 284 C 172.05952 284.00001 171.69112 284.33831 171.78125 284.75 C 171.78124 284.75001 172.09375 286.25 172.09375 286.25 C 172.18555 286.66932 172.70805 287 173.25 287 C 173.25 287 178.15625 287 178.15625 287 C 178.6982 287 179.04298 286.66932 178.9375 286.25 C 178.9375 286.25 178.5625 284.75 178.5625 284.75 C 178.45893 284.33832 177.94046 284 177.40625 284 C 177.40625 284.00001 172.59375 284 172.59375 284 z M 192.84375 284 C 192.30951 284.00001 191.96334 284.33831 192.09375 284.75 C 192.09375 284.75001 192.5625 286.25 192.5625 286.25 C 192.69533 286.66932 193.23929 287 193.78125 287 C 193.78125 287 198.6875 287 198.6875 287 C 199.22944 287 199.55276 286.66932 199.40625 286.25 C 199.40625 286.25 198.875 284.75 198.875 284.75 C 198.73115 284.33832 198.19047 284 197.65625 284 C 197.65625 284.00001 192.84375 284 192.84375 284 z M 201.5 284 C 200.96579 284.00001 200.66483 284.33831 200.8125 284.75 C 200.8125 284.75001 201.34375 286.25 201.34375 286.25 C 201.49418 286.66932 202.05179 287 202.59375 287 C 202.59374 287 207.5 287 207.5 287 C 208.04196 287 208.35158 286.66932 208.1875 286.25 C 208.1875 286.25 207.59375 284.75 207.59375 284.75 C 207.43266 284.33832 206.87796 284 206.34375 284 C 206.34374 284.00001 201.5 284 201.5 284 z M 210.1875 284 C 209.65328 284.00001 209.36632 284.33831 209.53125 284.75 C 209.53126 284.75001 210.125 286.25 210.125 286.25 C 210.29298 286.66932 210.86429 287 211.40625 287 C 211.40626 287 216.28125 287 216.28125 287 C 216.8232 287 217.11916 286.66932 216.9375 286.25 C 216.9375 286.25 216.28125 284.75 216.28125 284.75 C 216.1029 284.33832 215.53421 283.99999 215 284 C 215.00001 284.00001 210.1875 284 210.1875 284 z " - style="display:inline;fill:#555753;fill-opacity:1;stroke:none;enable-background:new" - id="path4072" - d="m 36.5625,266.98438 c -0.954459,-2e-5 -1.760859,0.45462 -2.132812,1.38867 a 1.0165677,1.0165677 0 0 0 0,0.002 l -0.59375,1.49805 c -0.184887,0.46431 -0.151617,1.10394 0.195312,1.54101 0.346929,0.43708 0.871073,0.60156 1.34375,0.60156 l 4.5,0 c 0.943851,-1e-5 1.779782,-0.44612 2.138672,-1.4082 l 0.002,-0.002 0.560547,-1.49805 a 1.0165677,1.0165677 0 0 0 0.002,-0.004 C 42.75759,268.6196 42.68184,267.98095 42.333984,267.56641 41.986129,267.15186 41.477222,266.98438 41,266.98438 l -4.4375,0 z m 16,0 c -0.954458,-2e-5 -1.778081,0.49255 -2.091797,1.44921 l -0.498047,1.49414 a 1.0165677,1.0165677 0 0 0 -0.002,0.006 c -0.160286,0.48879 -0.06178,1.11935 0.292969,1.52149 0.354746,0.40213 0.857399,0.56054 1.330078,0.56054 l 4.5,0 c 0.937647,-1e-5 1.780708,-0.48412 2.083984,-1.45507 0.03054,0.31538 -0.02743,0.64793 0.181641,0.88867 0.349178,0.40208 0.855446,0.5664 1.328125,0.5664 l 4.5,0 c 0.922963,-1e-5 1.772607,-0.45932 2.070312,-1.44921 0.04752,0.33287 0.0158,0.69461 0.238282,0.92382 0.359899,0.37081 0.843727,0.52539 1.316406,0.52539 l 4.5,0 c 0.924146,4e-5 1.763702,-0.52667 2.017578,-1.48632 0.04068,0.34382 0.02666,0.71341 0.259766,0.95703 0.354826,0.37084 0.843715,0.5293 1.316406,0.52929 l 4.5,0 c 0.945332,-1e-5 1.854536,-0.51485 2.060547,-1.57031 a 1.0165677,1.0165677 0 0 0 0.002,-0.008 l 0.279297,-1.49219 c 0.0966,-0.49519 -0.05758,-1.05684 -0.404297,-1.42383 -0.346716,-0.36699 -0.835278,-0.5371 -1.3125,-0.5371 l -4.46875,0 c -0.92723,-2e-5 -1.733987,0.55158 -1.980469,1.48046 -0.03572,-0.32918 -0.0093,-0.68018 -0.230469,-0.92578 -0.343882,-0.38181 -0.84309,-0.55468 -1.320312,-0.55468 l -4.46875,0 c -0.930212,-2e-5 -1.734338,0.52759 -2.007812,1.45507 -0.04851,-0.33484 -0.01954,-0.70059 -0.240235,-0.92773 C 65.957728,267.14457 65.477222,266.98438 65,266.98438 l -4.4375,0 c -0.937628,-2e-5 -1.744265,0.5081 -2.041016,1.4414 -0.04292,-0.32159 0.0087,-0.67022 -0.201172,-0.89648 C 57.965978,267.14725 57.477222,266.98438 57,266.98438 l -4.4375,0 z m 35.5625,0 c -0.954456,-2e-5 -1.828958,0.58661 -2.001953,1.59374 l -0.279297,1.48438 a 1.0165677,1.0165677 0 0 0 -0.002,0.0156 c -0.09051,0.52705 0.117268,1.09831 0.478515,1.44141 0.361248,0.3431 0.831997,0.4961 1.304688,0.49609 l 4.5,0 c 0.90129,-1e-5 1.730938,-0.56432 1.939453,-1.50976 0.05133,0.3696 0.09281,0.76264 0.349609,1.00976 0.356551,0.34311 0.832009,0.5 1.304688,0.5 l 4.53125,0 c 0.89216,-1e-5 1.71227,-0.58623 1.90234,-1.51757 0.0575,0.38202 0.12548,0.7847 0.39258,1.03125 0.35808,0.33051 0.82616,0.48632 1.29883,0.48632 l 4.5,0 c 0.87077,-1e-5 1.68078,-0.56706 1.87695,-1.49414 0.0694,0.38227 0.15411,0.78231 0.42383,1.02149 0.35942,0.31872 0.8203,0.47265 1.29297,0.47265 l 4.53125,0 c 0.94534,-1e-5 1.88177,-0.69884 1.92187,-1.72656 l 0.0625,-1.49609 a 1.0165677,1.0165677 0 0 0 0,-0.004 c 0.0406,-1.03534 -0.90493,-1.80468 -1.85937,-1.80468 l -4.46875,0 c -0.87603,-4e-5 -1.65719,0.5884 -1.8457,1.49414 -0.15497,-0.83031 -0.85828,-1.49414 -1.68555,-1.49414 l -4.46875,0 c -0.88385,-2e-5 -1.67421,0.56301 -1.88086,1.48046 -0.0582,-0.35519 -0.10123,-0.73083 -0.34961,-0.97265 -0.34903,-0.33982 -0.82356,-0.50782 -1.30078,-0.50781 l -4.46875,0 c -0.909198,-2e-5 -1.714887,0.59023 -1.912109,1.51562 -0.05198,-0.3725 -0.09311,-0.76905 -0.347657,-1.01367 -0.353724,-0.33993 -0.825512,-0.50196 -1.302734,-0.50195 l -4.4375,0 z m 35.5625,0 c -0.95446,-2e-5 -1.90512,0.6785 -1.92188,1.75 a 1.0165677,1.0165677 0 0 0 0,0.0156 l 0,1.48242 c -0.0175,1.04584 0.94529,1.78319 1.89063,1.7832 l 4.5,0 c 0.84363,-1e-5 1.62263,-0.6053 1.79297,-1.49804 0.17888,0.91521 0.97775,1.49804 1.83203,1.49804 l 4.5,0 c 0.84043,-3e-5 1.59117,-0.664 1.73633,-1.52539 0.17141,0.92239 0.98214,1.52539 1.85742,1.52539 l 4.5,0 c 0.47269,10e-6 0.93357,-0.15197 1.29492,-0.4707 0.26824,-0.2366 0.34853,-0.64003 0.41797,-1.02344 0.20403,0.95767 1.03466,1.49414 1.91211,1.49414 l 4.5,0 c 0.4727,2e-5 0.93872,-0.15385 1.29883,-0.48437 0.3601,-0.33052 0.58513,-0.87357 0.52344,-1.40039 a 1.0165677,1.0165677 0 0 0 -0.002,-0.008 l -0.18554,-1.49024 0,-0.002 c -0.12218,-1.03571 -1.02466,-1.64648 -1.97852,-1.64648 l -4.46875,0 c -0.82234,-2e-5 -1.52559,0.65897 -1.67969,1.49218 -0.19151,-0.89906 -0.9706,-1.49219 -1.85156,-1.49218 l -4.46875,0 c -0.83502,-2e-5 -1.56195,0.64175 -1.7207,1.49414 -0.1805,-0.8796 -0.94203,-1.49414 -1.81055,-1.49414 l -4.46875,0 c -0.84774,-2e-5 -1.59673,0.62347 -1.76172,1.49609 -0.17028,-0.86177 -0.91262,-1.49609 -1.76953,-1.49609 l -4.46875,0 z m 37.34375,0 c -0.47723,-10e-6 -0.94849,0.16201 -1.30273,0.50195 -0.35381,0.33952 -0.56129,0.88699 -0.48438,1.41015 l 0.21875,1.5 a 1.0165677,1.0165677 0 0 0 0,0.002 c 0.15966,1.07663 1.09175,1.61718 2.03711,1.61718 l 4.5,0 c 0.47269,10e-6 0.94292,-0.15104 1.30469,-0.49414 0.24508,-0.23243 0.26587,-0.62178 0.32422,-0.98046 0.23992,0.93761 1.06257,1.4746 1.96484,1.4746 l 4.53125,0 c 0.4727,2e-5 0.96328,-0.16043 1.31641,-0.53124 0.23407,-0.2458 0.22146,-0.61375 0.26171,-0.95704 0.25052,0.96885 1.09487,1.4883 2.01563,1.48828 l 4.5,0 c 0.4727,2e-5 0.95818,-0.15651 1.31641,-0.52734 0.35822,-0.37083 0.51367,-0.97222 0.38867,-1.48047 a 1.0165677,1.0165677 0 0 0 0,-0.004 l -0.375,-1.4961 c -0.24391,-0.99158 -1.09441,-1.52342 -2.04883,-1.52343 l -4.46875,0 c -0.47723,-10e-6 -0.96434,0.1661 -1.31445,0.5332 -0.2237,0.23454 -0.20684,0.59341 -0.25391,0.92578 -0.25333,-0.91924 -1.04894,-1.45898 -1.96289,-1.45898 l -4.46875,0 c -0.47723,-10e-6 -0.95624,0.16448 -1.30859,0.51757 -0.23452,0.23502 -0.24003,0.60798 -0.29297,0.95313 -0.241,-0.94939 -1.05417,-1.47071 -1.96094,-1.4707 l -4.4375,0 z m -128.34375,8 c -0.959582,0 -1.774939,0.42799 -2.181641,1.35937 l -0.65625,1.49805 a 1.0165677,1.0165677 0 0 0 0,0.002 c -0.20067,0.45957 -0.18757,1.11737 0.166016,1.56641 0.353586,0.44904 0.883848,0.60547 1.359375,0.60546 l 8.4375,0 c 0.951044,0 1.81057,-0.40387 2.197266,-1.39648 a 1.0165677,1.0165677 0 0 0 0.0039,-0.0117 l 0.04297,-0.11523 c 0.01417,0.34483 -0.06345,0.70923 0.160156,0.96289 0.363731,0.4126 0.87018,0.56054 1.345703,0.56054 l 4.6875,0 c 0.951044,0 1.822686,-0.41827 2.177734,-1.42968 l 0,0.004 0.03711,-0.10351 c 0.0211,0.3546 -0.03519,0.73487 0.197265,0.98633 0.36594,0.39585 0.862368,0.54296 1.337891,0.54296 l 4.6875,0 c 0.951044,0 1.836679,-0.4339 2.158203,-1.46289 l 0.03516,-0.11328 c 0.0111,0.36657 -0.02603,0.75821 0.21875,1.02735 0.360209,0.39605 0.862368,0.54882 1.337891,0.54882 l 4.6875,0 c 0.951044,0 1.850453,-0.45126 2.136719,-1.49609 a 1.0165677,1.0165677 0 0 0 0,-0.004 l 0.02148,-0.082 c 0.01771,0.37698 0.0055,0.78186 0.259766,1.04883 0.362164,0.38028 0.856508,0.5332 1.332031,0.5332 l 4.6875,0 c 0.951044,0 1.86594,-0.4743 2.115234,-1.5332 a 1.0165677,1.0165677 0 0 0 0,-0.006 l 0.0098,-0.0391 c 0.02582,0.38499 0.03684,0.79927 0.298828,1.0625 0.363682,0.36542 0.850649,0.51562 1.326172,0.51562 l 4.6875,0 c 0.951042,0 1.880946,-0.49762 2.091797,-1.56835 0.03523,0.39085 0.06972,0.80809 0.337891,1.0664 0.364871,0.35145 0.844789,0.50195 1.320312,0.50195 l 4.6875,0 c 0.940485,0 1.864708,-0.52405 2.050781,-1.58007 0.0396,0.40511 0.105001,0.83495 0.384766,1.09375 0.365769,0.33835 0.83893,0.48633 1.314453,0.48632 l 4.6875,0 c 0.929077,0 1.84357,-0.54992 2.00781,-1.58789 0.0445,0.41888 0.14098,0.85468 0.43164,1.11329 0.36651,0.32608 0.83503,0.4746 1.31055,0.4746 l 4.6875,0 c 0.91694,0 1.81928,-0.57647 1.96484,-1.59374 0.0494,0.43331 0.17884,0.87429 0.48047,1.13281 0.36709,0.31461 0.82917,0.46093 1.30469,0.46093 l 4.6875,0 c 0.90481,0 1.79075,-0.60375 1.91992,-1.5996 0.0541,0.44911 0.21634,0.89168 0.5293,1.15039 0.36761,0.30388 0.82526,0.44921 1.30078,0.44921 l 4.6875,0 c 0.89132,0 1.75752,-0.62824 1.875,-1.5996 0.11787,0.97088 0.98369,1.5996 1.875,1.5996 l 4.6875,0 c 0.47552,0 0.93318,-0.14533 1.30078,-0.44921 0.31295,-0.25871 0.47519,-0.70132 0.5293,-1.15039 0.12929,0.9957 1.0151,1.5996 1.91992,1.5996 l 4.6875,0 c 0.47552,0 0.9376,-0.14632 1.30469,-0.46093 0.30163,-0.25852 0.43105,-0.6995 0.48047,-1.13281 0.14558,1.01724 1.04788,1.59374 1.96484,1.59374 l 8.4375,0 c 0.47552,0 0.94196,-0.14663 1.31055,-0.47265 0.36814,-0.32563 0.60971,-0.87914 0.54101,-1.41992 l 0,-0.002 -0.1875,-1.49804 a 1.0165677,1.0165677 0 0 0 0,-0.002 c -0.14003,-1.09044 -1.07949,-1.63671 -2.03906,-1.63671 l -8.3125,0 c -0.47979,-10e-6 -0.93839,0.15297 -1.30273,0.46484 -0.29068,0.24881 -0.40936,0.67936 -0.4668,1.10351 -0.1532,-0.97333 -1.00566,-1.56835 -1.91797,-1.56835 l -4.625,0 c -0.4798,0 -0.93384,0.15175 -1.29883,0.45312 -0.30147,0.24892 -0.45304,0.67987 -0.51562,1.11914 -0.14216,-0.99143 -1.00387,-1.57226 -1.9043,-1.57226 l -4.625,0 c -0.89752,0 -1.73418,0.65199 -1.84375,1.60351 -0.10997,-0.95117 -0.94676,-1.60351 -1.84375,-1.60351 l -4.625,0 c -0.9101,0 -1.7662,0.62685 -1.88867,1.5996 -0.10307,-0.92625 -0.91628,-1.59961 -1.79883,-1.5996 l -4.625,0 c -0.91285,0 -1.78926,0.55447 -1.94727,1.56835 -0.0573,-0.42447 -0.17788,-0.85454 -0.46875,-1.10351 -0.36434,-0.31187 -0.82295,-0.46484 -1.30273,-0.46484 l -4.625,0 c -0.92435,0 -1.78828,0.57055 -1.95898,1.5625 -0.0523,-0.41001 -0.13987,-0.8371 -0.41993,-1.08594 -0.36364,-0.32311 -0.828806,-0.47656 -1.30859,-0.47656 l -4.625,0 c -0.935301,0 -1.808325,0.54731 -2,1.55468 -0.04719,-0.39638 -0.105569,-0.81556 -0.375,-1.06445 -0.362776,-0.33512 -0.832715,-0.49023 -1.3125,-0.49023 l -4.625,0 c -0.959583,0 -1.862674,0.52767 -2.060547,1.57812 -0.03501,-0.39536 -0.07346,-0.81801 -0.339844,-1.07422 -0.361755,-0.34794 -0.838575,-0.5039 -1.318359,-0.5039 l -4.59375,0 c -0.958663,0 -1.847071,0.5016 -2.083984,1.53906 l -0.0098,0.0469 c -0.02571,-0.38922 -0.04061,-0.80737 -0.300781,-1.06836 -0.360485,-0.36161 -0.844434,-0.51757 -1.324219,-0.51757 l -4.625,0 c -0.959582,0 -1.834977,0.4775 -2.107422,1.5039 a 1.0165677,1.0165677 0 0 0 -0.0039,0.0156 l -0.002,0.008 c -0.03141,-0.35787 -0.0068,-0.74337 -0.244141,-0.99219 -0.358866,-0.37617 -0.850293,-0.53515 -1.330078,-0.53515 l -4.625,0 c -0.959582,0 -1.821495,0.45929 -2.128906,1.4707 a 1.0165677,1.0165677 0 0 0 -0.0039,0.01 l -0.01172,0.043 c -0.02421,-0.34863 0.02169,-0.72163 -0.207031,-0.97265 -0.356825,-0.39163 -0.856153,-0.55078 -1.335938,-0.55078 l -4.625,0 c -0.959582,0 -1.80775,0.44084 -2.148438,1.43554 l 0.002,-0.01 -0.03906,0.10937 c -0.0219,-0.35721 0.03327,-0.7412 -0.197265,-0.99023 -0.362418,-0.3915 -0.856153,-0.54492 -1.335938,-0.54492 l -4.625,0 c -0.959582,0 -1.780557,0.46951 -2.136719,1.40429 l 0.0039,-0.0137 -0.06641,0.16602 c -0.0023,-0.34272 0.08099,-0.70069 -0.138672,-0.9668 C 41.998568,275.14893 41.479785,274.98438 41,274.98438 l -8.3125,0 z m 129.4375,0 c -0.4798,0 -0.9492,0.15317 -1.3125,0.48828 -0.3633,0.3351 -0.59172,0.90146 -0.50391,1.4414 a 1.0165677,1.0165677 0 0 0 0.002,0.004 c 0,0 0.24937,1.49425 0.25,1.49805 0,0 0,0.002 0,0.002 0.17681,1.07041 1.11487,1.59765 2.06445,1.59765 l 4.6875,0 c 0.47552,0 0.95489,-0.14856 1.32031,-0.5 0.26893,-0.25863 0.30363,-0.67938 0.33789,-1.07226 a 1.0165677,1.0165677 0 0 0 0.002,0.008 c 0.21406,1.06435 1.1388,1.56445 2.08984,1.56445 l 4.6875,0 c 0.47552,0 0.94986,-0.14487 1.32031,-0.49609 0.25794,-0.24455 0.27241,-0.65942 0.31446,-1.04297 a 1.0165677,1.0165677 0 0 0 0.002,0.01 c 0.25226,1.05222 1.16224,1.52929 2.11328,1.52929 l 4.6875,0 c 0.47552,0 0.95667,-0.1446 1.32617,-0.50976 0.3695,-0.36517 0.54578,-0.99694 0.4043,-1.52148 l -0.40625,-1.5 c -0.27501,-1.01975 -1.1459,-1.5 -2.10547,-1.5 l -4.625,0 c -0.47979,-10e-6 -0.96317,0.15597 -1.32422,0.51757 -0.25991,0.26031 -0.2731,0.67873 -0.29883,1.06836 l -0.0117,-0.0488 c -0.23875,-1.03293 -1.12441,-1.5371 -2.08398,-1.5371 l -4.625,0 c -0.4798,0 -0.96644,0.16177 -1.32227,0.52343 -0.25803,0.26227 -0.27693,0.66776 -0.30664,1.04688 -0.20289,-1.04087 -1.10051,-1.57031 -2.05859,-1.57031 l -4.625,0 z m 27.75,0 c -0.47979,-10e-6 -0.96883,0.15512 -1.33008,0.53124 -0.36124,0.37613 -0.51521,1.00233 -0.36523,1.51758 a 1.0165677,1.0165677 0 0 0 0,0.002 l 0.4375,1.5 c 0.29689,1.01684 1.18231,1.48046 2.13281,1.48046 l 4.6875,0 c 0.47552,0 0.97511,-0.15088 1.33789,-0.54687 0.24464,-0.26703 0.20418,-0.66201 0.21484,-1.03125 l 0.0449,0.13086 c 0.33032,1.00207 1.2013,1.44726 2.15234,1.44726 l 4.6875,0 c 0.47552,0 0.9853,-0.15173 1.3457,-0.56445 0.23508,-0.2692 0.16964,-0.6492 0.17383,-1.00781 l 0.0527,0.14648 a 1.0165677,1.0165677 0 0 0 0.006,0.0117 c 0.36253,0.9846 1.22084,1.41406 2.17188,1.41406 l 4.6875,0 c 0.47552,0 0.99418,-0.15358 1.35156,-0.58398 0.34664,-0.41746 0.38121,-1.04196 0.21289,-1.50976 l 2.13282,4.77343 c 0.42585,0.95705 1.27071,1.32031 2.20898,1.32031 l 4.78125,0 c 0.46914,0 0.9731,-0.12766 1.34766,-0.55468 0.37455,-0.42703 0.42113,-1.14456 0.19531,-1.61719 a 1.0165677,1.0165677 0 0 0 -0.002,-0.002 l -2.68555,-5.5918 -0.002,-0.002 c -0.43877,-0.91554 -1.24314,-1.26367 -2.16602,-1.26367 l -4.625,0 c -0.46193,0 -0.95176,0.12856 -1.32031,0.53515 -0.33991,0.37499 -0.36874,0.99124 -0.21485,1.45899 l -0.23828,-0.60352 c -0.37824,-0.95008 -1.20449,-1.39062 -2.16406,-1.39062 l -4.625,0 c -0.4798,0 -1.00011,0.16851 -1.34766,0.59374 -0.22013,0.26934 -0.14442,0.62433 -0.14648,0.96485 l -0.0469,-0.13281 a 1.0165677,1.0165677 0 0 0 -0.002,-0.004 c -0.34805,-0.96782 -1.18495,-1.42187 -2.14453,-1.42187 l -4.625,0 c -0.4798,0 -0.97663,0.15724 -1.33594,0.54882 -0.2304,0.2511 -0.18069,0.63054 -0.20312,0.98438 l -0.0215,-0.0703 a 1.0165677,1.0165677 0 0 0 -0.002,-0.008 c -0.31607,-0.98448 -1.16539,-1.45508 -2.125,-1.45507 l -4.625,0 z m -160.96875,8 c -0.961846,1e-5 -1.789217,0.40575 -2.228516,1.32617 l -0.71875,1.5 a 1.0165677,1.0165677 0 0 0 -0.002,0.004 c -0.223954,0.47131 -0.198129,1.17808 0.173828,1.6211 0.371958,0.44302 0.891432,0.58007 1.369141,0.58007 l 15.65625,0 c 0.95395,0 1.818585,-0.43334 2.195312,-1.39062 l 0.002,-0.004 0.140625,-0.35351 c -0.03959,0.42344 -0.07138,0.89381 0.21289,1.20312 0.374303,0.40727 0.877755,0.54492 1.355469,0.54492 l 4.875,0 c 0.955428,0 1.850605,-0.40398 2.208984,-1.42968 l 0,0.004 0.117188,-0.33398 c -0.03631,0.43632 -0.03359,0.92306 0.261719,1.23047 0.375423,0.39081 0.871895,0.52929 1.349609,0.52929 l 4.875,0 c 0.955428,0 1.866924,-0.41775 2.189453,-1.46679 l 0.07813,-0.24414 c -0.0144,0.43138 0.0031,0.90607 0.294922,1.19726 0.37615,0.37532 0.866037,0.51368 1.34375,0.51367 l 4.90625,0 c 0.955426,0 1.885637,-0.43325 2.169922,-1.5039 a 1.0165677,1.0165677 0 0 0 0.0039,-0.0156 l 0.05078,-0.20117 c -0.01128,0.44491 0.04087,0.93052 0.34375,1.2207 0.376566,0.36078 0.860177,0.5 1.337891,0.5 l 4.90625,0 c 0.953952,0 1.880199,-0.49915 2.115234,-1.53906 l 0,-0.002 0.05273,-0.22461 c -0.02106,0.47132 0.08331,0.98173 0.40625,1.2793 0.376735,0.34713 0.854317,0.48632 1.332031,0.48632 l 4.875,0 c 0.955431,0 1.923866,-0.47701 2.125,-1.58398 l 0.02344,-0.11914 c 0.01023,0.47785 0.143741,0.97507 0.464843,1.24609 0.381536,0.32204 0.846505,0.45703 1.324219,0.45703 l 4.875,0 c 0.955429,0 1.94295,-0.504 2.099609,-1.625 a 1.0165677,1.0165677 0 0 0 0.002,-0.0137 l 0.0059,-0.043 c 0.01848,0.46595 0.156247,0.94658 0.476562,1.22071 0.376701,0.32238 0.844554,0.46093 1.322266,0.46093 l 4.90625,0 c 0.95543,0 1.93713,-0.58406 2.04297,-1.66601 l 0.006,-0.0488 c 0.0121,0.49384 0.20021,0.98558 0.53906,1.26563 0.37657,0.31121 0.84064,0.44921 1.31836,0.44921 l 4.90625,0 c 0.95017,0 1.93707,-0.61777 2.00781,-1.69531 0.0239,0.50142 0.23971,0.98079 0.58399,1.25586 0.37641,0.30076 0.83674,0.43945 1.31445,0.43945 l 4.875,0 c 0.47771,0 0.92993,-0.13617 1.30859,-0.41796 0.35545,-0.26452 0.62134,-0.72662 0.66407,-1.25196 0.0383,0.50623 0.27478,0.97094 0.62304,1.24024 0.37632,0.29099 0.83284,0.42968 1.31055,0.42968 l 4.90625,0 c 0.47771,0 0.93175,-0.13684 1.31055,-0.42773 0.34406,-0.26422 0.57336,-0.73565 0.61133,-1.24219 0.0442,0.52408 0.31827,0.9807 0.67773,1.25 0.37624,0.28188 0.82893,0.41992 1.30664,0.41992 l 19.5625,0 c 0.47771,0 0.94448,-0.13862 1.32227,-0.46093 0.37778,-0.32232 0.63592,-0.89197 0.55859,-1.44531 l -0.18555,-1.48633 a 1.0165677,1.0165677 0 0 0 -0.002,-0.0137 c -0.0795,-0.56946 -0.42488,-0.97216 -0.80078,-1.22852 -0.3759,-0.25636 -0.81715,-0.39648 -1.29883,-0.39648 l -19.28125,0 c -0.48167,0 -0.9389,0.1451 -1.31055,0.44335 -0.3358,0.26949 -0.54645,0.7339 -0.58008,1.22852 -0.076,-1.04245 -1.01386,-1.67189 -1.95312,-1.67187 l -4.84375,0 c -0.93112,1e-5 -1.84499,0.66657 -1.91211,1.67578 -0.0369,-0.5148 -0.27849,-0.97806 -0.62305,-1.24414 -0.37376,-0.28864 -0.8269,-0.43165 -1.30859,-0.43164 l -4.8125,0 c -0.94583,1e-5 -1.90755,0.5921 -1.99219,1.67187 -0.0332,-0.49526 -0.2374,-0.9648 -0.57031,-1.23047 -0.37366,-0.29819 -0.83081,-0.4414 -1.3125,-0.4414 l -4.8125,0 c -0.95952,1e-5 -1.93209,0.56244 -2.03711,1.66601 -0.0258,-0.45945 -0.17198,-0.92321 -0.48828,-1.19727 -0.36882,-0.31955 -0.83668,-0.46875 -1.31836,-0.46874 l -4.84375,0 c -0.963356,0 -1.926502,0.53224 -2.070312,1.63476 a 1.0165677,1.0165677 0 0 0 0,0.004 l -0.0059,0.0449 c -0.01446,-0.45353 -0.132338,-0.92356 -0.443359,-1.20313 -0.368579,-0.33129 -0.842535,-0.48046 -1.324219,-0.48046 l -4.8125,0 c -0.963331,1e-5 -1.907915,0.50425 -2.095703,1.59374 l -0.02148,0.10938 c -0.0069,-0.46509 -0.121936,-0.95233 -0.433593,-1.22852 -0.373574,-0.33105 -0.842535,-0.47461 -1.324219,-0.4746 l -4.8125,0 c -0.963331,1e-5 -1.889123,0.4792 -2.119141,1.55273 a 1.0165677,1.0165677 0 0 0 0,0.006 l -0.03516,0.16601 c 0.0054,-0.46037 -0.08289,-0.95319 -0.390625,-1.23632 -0.373418,-0.34357 -0.848394,-0.48828 -1.330078,-0.48828 l -4.8125,0 c -0.963333,1e-5 -1.870347,0.45877 -2.140625,1.51367 a 1.0165677,1.0165677 0 0 0 -0.002,0.006 l -0.04883,0.19726 c 0.01372,-0.43061 -0.02116,-0.90038 -0.3125,-1.19531 -0.36697,-0.37148 -0.85816,-0.52148 -1.339844,-0.52148 l -4.84375,0 c -0.963332,1e-5 -1.83604,0.48573 -2.130859,1.4746 l -0.07617,0.2461 c 0.01615,-0.43709 -0.007,-0.91627 -0.296875,-1.20508 -0.372534,-0.37116 -0.858159,-0.51563 -1.339844,-0.51562 l -4.8125,0 c -0.963332,1e-5 -1.837631,0.42589 -2.181641,1.4375 a 1.0165677,1.0165677 0 0 0 -0.002,0.006 l -0.09375,0.28125 c 0.02374,-0.42817 0.0305,-0.89979 -0.251953,-1.19336 C 53.97401,283.12931 53.481685,282.98437 53,282.98438 l -4.8125,0 c -0.963332,1e-5 -1.821917,0.4146 -2.199219,1.40234 a 1.0165677,1.0165677 0 0 0 -0.002,0.006 l -0.107422,0.28906 c 0.02906,-0.39544 0.08288,-0.82306 -0.177734,-1.125 -0.362376,-0.41984 -0.875737,-0.57226 -1.357422,-0.57226 l -15.4375,0 z m 143.6875,0 c -0.48167,0 -0.95724,0.14467 -1.33008,0.48828 -0.37284,0.3436 -0.59399,0.94884 -0.47461,1.49414 0.004,0.0192 0.31055,1.49023 0.31055,1.49023 a 1.0165677,1.0165677 0 0 0 0.002,0.01 c 0.24025,1.09738 1.19301,1.54882 2.14844,1.54882 l 4.90625,0 c 0.47771,0 0.96193,-0.13918 1.33789,-0.5 0.37551,-0.36038 0.56085,-0.98704 0.42969,-1.51171 l 0,-0.002 -0.375,-1.49804 a 1.0165677,1.0165677 0 0 0 0,-0.002 c -0.26725,-1.06227 -1.17921,-1.51757 -2.14258,-1.51757 l -4.8125,0 z m 20.25,0 c -0.48167,0 -0.96608,0.14454 -1.33984,0.51562 -0.37376,0.37108 -0.54651,1.02755 -0.37891,1.55664 l 0.4668,1.49609 a 1.0165677,1.0165677 0 0 0 0.002,0.004 c 0.32763,1.03426 1.23207,1.45898 2.1875,1.45898 l 4.90625,0 c 0.47771,0 0.97288,-0.13665 1.34961,-0.52734 0.28322,-0.29371 0.26763,-0.76043 0.24609,-1.18359 l 0.10157,0.28515 a 1.0165677,1.0165677 0 0 0 0.002,0.004 c 0.36267,1.01093 1.2516,1.42187 2.20703,1.42187 l 4.90625,0 c 0.47771,0 0.9798,-0.13777 1.35547,-0.54492 0.27244,-0.29527 0.22857,-0.74372 0.20312,-1.15429 l 0.1211,0.30859 a 1.0165677,1.0165677 0 0 0 0.002,0.004 c 0.39524,0.98661 1.26918,1.38671 2.22461,1.38671 l 4.875,0 c 0.47771,0 0.98721,-0.13595 1.36133,-0.56054 0.37411,-0.42459 0.43813,-1.12552 0.22851,-1.60938 a 1.0165677,1.0165677 0 0 0 -0.002,-0.004 l -0.6543,-1.4961 c -0.41091,-0.94849 -1.25145,-1.36134 -2.21484,-1.36132 l -4.8125,0 c -0.48167,0 -0.99557,0.15053 -1.35938,0.57031 -0.2586,0.29839 -0.19705,0.72475 -0.16992,1.11914 l -0.11718,-0.29492 c -0.38077,-0.97308 -1.2339,-1.39453 -2.19727,-1.39453 l -4.84375,0 c -0.48167,0 -0.98581,0.15003 -1.35156,0.55273 -0.27032,0.29762 -0.2404,0.74258 -0.2168,1.15039 l -0.0977,-0.27734 0,0.004 c -0.34827,-0.99672 -1.21436,-1.42968 -2.17773,-1.42968 l -4.8125,0 z" - transform="translate(23,71)" /> - </g> - <path - transform="translate(1.9803676,-47.75)" - clip-path="url(#clipPath3655)" - id="path3589" - d="m 54.5625,289 c -0.492566,-10e-6 -1.022526,0.33572 -1.1875,0.75 10e-7,10e-6 -0.59375,1.5 -0.59375,1.5 -0.167765,0.42132 0.09469,0.75 0.59375,0.75 2e-6,-10e-6 4.5,0 4.5,0 0.499094,-10e-6 1.031251,-0.32868 1.1875,-0.75 -2e-6,0 0.5625,-1.5 0.5625,-1.5 C 59.778636,289.33573 59.492567,289 59,289 c 10e-7,-10e-6 -4.4375,0 -4.4375,0 z m 16,0 c -0.492564,-10e-6 -0.989146,0.33572 -1.125,0.75 -10e-7,10e-6 -0.5,1.5 -0.5,1.5 -0.138163,0.42132 0.157154,0.75 0.65625,0.75 0,-10e-6 4.5,0 4.5,0 0.499093,-10e-6 0.998357,-0.32868 1.125,-0.75 0,0 0.46875,-1.5 0.46875,-1.5 C 75.812038,289.33573 75.492566,289 75,289 c -10e-7,-10e-6 -4.4375,0 -4.4375,0 z m 8,0 c -0.492568,-10e-6 -0.972447,0.33572 -1.09375,0.75 3e-6,10e-6 -0.4375,1.5 -0.4375,1.5 -0.123357,0.42132 0.157154,0.75 0.65625,0.75 2e-6,-10e-6 4.5,0 4.5,0 0.499093,-10e-6 1.013148,-0.32868 1.125,-0.75 -2e-6,0 0.40625,-1.5 0.40625,-1.5 C 83.828734,289.33573 83.492576,289 83,289 c -2e-6,-10e-6 -4.4375,0 -4.4375,0 z m 8,0 c -0.492564,-10e-6 -0.955758,0.33572 -1.0625,0.75 2e-6,10e-6 -0.40625,1.5 -0.40625,1.5 -0.108549,0.42132 0.219663,0.75 0.71875,0.75 3e-6,-10e-6 4.5,0 4.5,0 0.499087,2e-5 0.965462,-0.32868 1.0625,-0.75 10e-7,0 0.34375,-1.5 0.34375,-1.5 0.09543,-0.41427 -0.194944,-0.75 -0.6875,-0.75 -3e-6,-10e-6 -4.46875,0 -4.46875,0 z m 8,0 c -0.492568,-10e-6 -0.939068,0.33572 -1.03125,0.75 -3e-6,10e-6 -0.34375,1.5 -0.34375,1.5 -0.09371,0.42132 0.219644,0.75001 0.71875,0.75 0,10e-6 4.5,0 4.5,0 0.499098,-10e-6 0.98026,-0.32868 1.0625,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.08081,-0.41427 -0.22618,-0.75 -0.71875,-0.75 0,-10e-6 -4.46875,0 -4.46875,0 z m 11.5625,0 c -0.49257,-10e-6 -0.92884,0.33572 -1,0.75 0,10e-6 -0.28125,1.5 -0.28125,1.5 -0.0724,0.42132 0.28215,0.75001 0.78125,0.75 0,10e-6 4.5,0 4.5,0 0.49909,-10e-6 0.93914,-0.32868 1,-0.75 0,0 0.21875,-1.5 0.21875,-1.5 0.0599,-0.41427 -0.28867,-0.75 -0.78125,-0.75 0,-10e-6 -4.4375,0 -4.4375,0 z m 8,0 c -0.49256,-10e-6 -0.91215,0.33572 -0.96875,0.75 0,10e-6 -0.21875,1.5 -0.21875,1.5 -0.0575,0.42132 0.28215,0.75 0.78125,0.75 0,10e-6 4.53125,0 4.53125,0 0.4991,-10e-6 0.9227,-0.32868 0.96875,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0452,-0.41427 -0.28868,-0.75 -0.78125,-0.75 0,-10e-6 -4.46875,0 -4.46875,0 z m 8,0 c -0.49257,-10e-6 -0.9267,0.33572 -0.96875,0.75 0,10e-6 -0.125,1.5 -0.125,1.5 -0.0427,0.42132 0.31341,0.74999 0.8125,0.75 0,-10e-6 4.5,0 4.5,0 0.49909,-10e-6 0.93751,-0.32868 0.96875,-0.75 0,0 0.0937,-1.5 0.0937,-1.5 0.0307,-0.41427 -0.31993,-0.75 -0.8125,-0.75 0,-10e-6 -4.46875,0 -4.46875,0 z m 8,0 c -0.49257,-2e-5 -0.91,0.33572 -0.9375,0.75 -1e-5,10e-6 -0.0937,1.5 -0.0937,1.5 -0.028,0.42132 0.34465,0.74999 0.84375,0.75 0,-10e-6 4.53125,0 4.53125,0 0.4991,-10e-6 0.88981,-0.32868 0.90625,-0.75 0,0 0.0625,-1.5 0.0625,-1.5 0.0162,-0.41427 -0.35118,-0.75 -0.84375,-0.75 0,-10e-6 -4.46875,0 -4.46875,0 z m 11.5625,0 c -0.49258,-10e-6 -0.89977,0.33572 -0.90625,0.75 0,10e-6 0,1.5 0,1.5 -0.007,0.42132 0.3759,0.74999 0.875,0.75 0,-10e-6 4.5,0 4.5,0 0.4991,-10e-6 0.91119,-0.32868 0.90625,-0.75 0,0 -0.0312,-1.5 -0.0312,-1.5 -0.005,-0.41427 -0.38243,-0.75 -0.875,-0.75 0,-10e-6 -4.46875,0 -4.46875,0 z m 8,0 c -0.49257,-10e-6 -0.88308,0.33572 -0.875,0.75 0,10e-6 0.0312,1.5 0.0312,1.5 0.008,0.42132 0.4384,0.75 0.9375,0.75 -1e-5,-10e-6 4.5,0 4.5,0 0.4991,-2e-5 0.86349,-0.32868 0.84375,-0.75 -1e-5,0 -0.0625,-1.5 -0.0625,-1.5 -0.0195,-0.41427 -0.41368,-0.75 -0.90625,-0.75 0,-10e-6 -4.46875,0 -4.46875,0 z m 8,0 c -0.49257,-10e-6 -0.86641,0.33572 -0.84375,0.75 -1e-5,10e-6 0.0937,1.5 0.0937,1.5 0.0231,0.42132 0.43841,0.75 0.9375,0.75 10e-6,-10e-6 4.5,0 4.5,0 0.4991,10e-6 0.87828,-0.32868 0.84375,-0.75 0,0 -0.125,-1.5 -0.125,-1.5 -0.034,-0.41427 -0.44493,-0.75 -0.9375,-0.75 0,-10e-6 -4.46875,0 -4.46875,0 z m 8,0 c -0.49256,-10e-6 -0.8497,0.33572 -0.8125,0.75 0,10e-6 0.125,1.5 0.125,1.5 0.0379,0.42132 0.5009,0.75 1,0.75 0,-10e-6 4.5,0 4.5,0 0.49908,2e-5 0.86184,-0.32868 0.8125,-0.75 -1e-5,0 -0.1875,-1.5 -0.1875,-1.5 -0.0485,-0.41427 -0.47619,-0.75 -0.96875,-0.75 1e-5,-10e-6 -4.46875,0 -4.46875,0 z m 13.34375,0 c -0.49256,-10e-6 -0.84272,0.33572 -0.78125,0.75 0,10e-6 0.21875,1.5 0.21875,1.5 0.0625,0.42132 0.53217,0.75 1.03125,0.75 -1e-5,-10e-6 4.5,0 4.5,0 0.4991,10e-6 0.85525,-0.32868 0.78125,-0.75 1e-5,0 -0.28125,-1.5 -0.28125,-1.5 -0.0728,-0.41427 -0.53868,-0.75 -1.03125,-0.75 -1e-5,-10e-6 -4.4375,0 -4.4375,0 z m 8,0 c -0.49257,-10e-6 -0.82601,0.33572 -0.75,0.75 -1e-5,10e-6 0.28125,1.5 0.28125,1.5 0.0773,0.42132 0.53215,0.75 1.03125,0.75 1e-5,-10e-6 4.53125,0 4.53125,0 0.49907,2e-5 0.80756,-0.32868 0.71875,-0.75 -1e-5,0 -0.3125,-1.5 -0.3125,-1.5 -0.0874,-0.41427 -0.53868,-0.75 -1.03125,-0.75 1e-5,-10e-6 -4.46875,0 -4.46875,0 z m 8,0 c -0.49258,-10e-6 -0.80932,0.33572 -0.71875,0.75 0,10e-6 0.34375,1.5 0.34375,1.5 0.0921,0.42132 0.5634,0.75001 1.0625,0.75 -1e-5,10e-6 4.5,0 4.5,0 0.49909,2e-5 0.82237,-0.32868 0.71875,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.1019,-0.41427 -0.56992,-0.74999 -1.0625,-0.75 1e-5,10e-6 -4.46875,0 -4.46875,0 z M 52.8125,293 c -0.501948,0 -1.04611,0.33807 -1.21875,0.75 10e-7,0 -0.65625,1.5 -0.65625,1.5 -0.175649,0.41909 0.11627,0.75 0.625,0.75 10e-7,0 4.59375,0 4.59375,0 0.50878,0 1.02391,-0.33091 1.1875,-0.75 -10e-7,0 0.59375,-1.5 0.59375,-1.5 0.160791,-0.41193 -0.12305,-0.75 -0.625,-0.75 10e-7,0 -4.5,0 -4.5,0 z m 8.125,0 c -0.50194,0 -1.0301,0.33807 -1.1875,0.75 10e-7,0 -0.5625,1.5 -0.5625,1.5 -0.160139,0.41909 0.11623,0.75 0.625,0.75 0,0 4.59375,0 4.59375,0 0.508772,0 1.03942,-0.33091 1.1875,-0.75 10e-7,0 0.53125,-1.5 0.53125,-1.5 0.145551,-0.41193 -0.1543,-0.75 -0.65625,-0.75 3e-6,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.501938,0 -1.01408,0.33807 -1.15625,0.75 -3e-6,0 -0.5,1.5 -0.5,1.5 -0.14465,0.41909 0.14747,0.75 0.65625,0.75 2e-6,0 4.59375,0 4.59375,0 0.508777,0 1.02365,-0.33091 1.15625,-0.75 4e-6,0 0.46875,-1.5 0.46875,-1.5 0.130317,-0.41193 -0.18556,-0.75 -0.6875,-0.75 0,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.501951,0 -0.99807,0.33807 -1.125,0.75 10e-7,0 -0.46875,1.5 -0.46875,1.5 -0.129149,0.41909 0.17873,0.75 0.6875,0.75 -2e-6,0 4.59375,0 4.59375,0 0.508782,0 1.0079,-0.33091 1.125,-0.75 -3e-6,0 0.4375,-1.5 0.4375,-1.5 0.115089,-0.41193 -0.21681,-0.75 -0.71875,-0.75 2e-6,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.501949,0 -0.98205,0.33807 -1.09375,0.75 -3e-6,0 -0.40625,1.5 -0.40625,1.5 -0.113651,0.41909 0.20997,0.75 0.71875,0.75 3e-6,0 4.59375,0 4.59375,0 0.50877,0 0.99216,-0.33091 1.09375,-0.75 2e-6,0 0.34375,-1.5 0.34375,-1.5 0.0999,-0.41193 -0.2168,-0.75 -0.71875,-0.75 -4e-6,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.501947,0 -0.96603,0.33807 -1.0625,0.75 -10e-7,0 -0.375,1.5 -0.375,1.5 -0.0982,0.41909 0.24122,0.75 0.75,0.75 10e-7,0 4.59375,0 4.59375,0 0.50879,0 0.9764,-0.33091 1.0625,-0.75 2e-6,0 0.3125,-1.5 0.3125,-1.5 0.0846,-0.41193 -0.24804,-0.75001 -0.75,-0.75 3e-6,10e-6 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50194,0 -0.98125,0.33807 -1.0625,0.75 0,0 -0.28125,1.5 -0.28125,1.5 -0.0827,0.41909 0.27247,0.75 0.78125,0.75 0,0 4.59375,0 4.59375,0 0.50877,0 0.96065,-0.33091 1.03125,-0.75 0,0 0.25,-1.5 0.25,-1.5 0.0694,-0.41193 -0.2793,-0.75 -0.78125,-0.75 0,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50193,0 -0.96524,0.33807 -1.03125,0.75 0,0 -0.21875,1.5 -0.21875,1.5 -0.0672,0.41909 0.27247,0.75 0.78125,0.75 0,0 4.59375,0 4.59375,0 0.50878,0 0.97614,-0.33091 1.03125,-0.75 0,0 0.1875,-1.5 0.1875,-1.5 0.0542,-0.41193 -0.31056,-0.75 -0.8125,-0.75 0,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50194,0 -0.94922,0.33807 -1,0.75 0,0 -0.1875,1.5 -0.1875,1.5 -0.0517,0.41909 0.33499,0.75 0.84375,0.75 0,0 4.59375,0 4.59375,0 0.50877,0 0.92914,-0.33091 0.96875,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0389,-0.41194 -0.34181,-0.75 -0.84375,-0.75 0,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50195,10e-6 -0.93321,0.33807 -0.96875,0.75 0,0 -0.125,1.5 -0.125,1.5 -0.0362,0.41909 0.33497,0.75 0.84375,0.75 0,0 4.59375,0 4.59375,0 0.50878,0 0.94464,-0.33091 0.96875,-0.75 0,0 0.0937,-1.5 0.0937,-1.5 0.0237,-0.41193 -0.37304,-0.75 -0.875,-0.75 10e-6,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50194,0 -0.91718,0.33806 -0.9375,0.75 0,0 -0.0937,1.5 -0.0937,1.5 -0.0207,0.41909 0.39748,0.75 0.90625,0.75 0,0 4.59375,0 4.59375,0 0.50879,0 0.89764,-0.33091 0.90625,-0.75 0,0 0.0312,-1.5 0.0312,-1.5 0.008,-0.41193 -0.37304,-0.75 -0.875,-0.75 -1e-5,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50193,0 -0.90117,0.33807 -0.90625,0.75 -1e-5,0 -0.0312,1.5 -0.0312,1.5 -0.005,0.41909 0.39747,0.75 0.90625,0.75 1e-5,0 4.59375,0 4.59375,0 0.50876,0 0.91314,-0.33091 0.90625,-0.75 0,0 -0.0312,-1.5 -0.0312,-1.5 -0.007,-0.41193 -0.40431,-0.74999 -0.90625,-0.75 1e-5,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50194,0 -0.91641,0.33807 -0.90625,0.75 1e-5,0 0.0625,1.5 0.0625,1.5 0.0103,0.41909 0.42872,0.75 0.9375,0.75 0,0 4.5625,0 4.5625,0 0.50878,0 0.92864,-0.33091 0.90625,-0.75 0,0 -0.0937,-1.5 -0.0937,-1.5 -0.022,-0.41193 -0.43556,-0.75001 -0.9375,-0.75 0,10e-6 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50196,0 -0.90039,0.33807 -0.875,0.75 0,0 0.0937,1.5 0.0937,1.5 0.0258,0.41909 0.45998,0.75 0.96875,0.75 0,0 11.9375,0 11.9375,0 0.50877,0 0.86416,-0.33091 0.8125,-0.75 0,0 -0.15625,-1.5 -0.15625,-1.5 -0.0508,-0.41193 -0.49806,-0.74999 -1,-0.75 0,0 -11.78125,0 -11.78125,0 z m 20.84375,0 c -0.50194,0 -0.87682,0.33806 -0.8125,0.75 0,0 0.25,1.5 0.25,1.5 0.0654,0.41909 0.52247,0.75 1.03125,0.75 0,0 4.59375,0 4.59375,0 0.50878,0 0.85875,-0.33091 0.78125,-0.75 1e-5,0 -0.28125,-1.5 -0.28125,-1.5 -0.0762,-0.41193 -0.5293,-0.75 -1.03125,-0.75 0,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50196,0 -0.86081,0.33807 -0.78125,0.75 0,0 0.28125,1.5 0.28125,1.5 0.0809,0.41909 0.55372,0.75 1.0625,0.75 0,0 4.59375,0 4.59375,0 0.50877,0 0.84299,-0.33091 0.75,-0.75 -1e-5,0 -0.3125,-1.5 -0.3125,-1.5 -0.0914,-0.41193 -0.59181,-0.74999 -1.09375,-0.75 1e-5,0 -4.5,0 -4.5,0 z m 8.125,0 c -0.50195,0 -0.81353,0.33807 -0.71875,0.75 0,0 0.34375,1.5 0.34375,1.5 0.0964,0.41909 0.58498,0.75 1.09375,0.75 0,0 4.59375,0 4.59375,0 0.50877,0 0.82724,-0.33091 0.71875,-0.75 -1e-5,0 -0.375,-1.5 -0.375,-1.5 -0.10664,-0.41193 -0.62306,-0.75 -1.125,-0.75 -1e-5,0 -4.53125,0 -4.53125,0 z m 10.875,0 c -0.50195,10e-6 -0.80259,0.33807 -0.6875,0.75 0,0 0.40625,1.5 0.40625,1.5 0.1171,0.41909 0.64747,0.75 1.15625,0.75 -1e-5,0 4.59375,0 4.59375,0 0.50878,0 0.7854,-0.33091 0.65625,-0.75 0,0 -0.4375,-1.5 -0.4375,-1.5 -0.12695,-0.41194 -0.6543,-0.75 -1.15625,-0.75 0,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50194,0 -0.78658,0.33806 -0.65625,0.75 0,0 0.46875,1.5 0.46875,1.5 0.1326,0.41909 0.64747,0.75 1.15625,0.75 0,0 4.59375,0 4.59375,0 0.50878,0 0.8009,-0.33091 0.65625,-0.75 0,0 -0.53125,-1.5 -0.53125,-1.5 -0.14217,-0.41193 -0.6543,-0.75 -1.15625,-0.75 -1e-5,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50196,0 -0.77057,0.33807 -0.625,0.75 0,0 0.53125,1.5 0.53125,1.5 0.14809,0.41909 0.67873,0.75 1.1875,0.75 -1e-5,0 4.59375,0 4.59375,0 0.50879,0 0.78515,-0.33091 0.625,-0.75 0,0 -0.59375,-1.5 -0.59375,-1.5 -0.15741,-0.41193 -0.68556,-0.75 -1.1875,-0.75 1e-5,0 -4.53125,0 -4.53125,0 z m 8.15625,0 c -0.50195,0 -0.7858,0.33807 -0.625,0.75 1e-5,0 0.59375,1.5 0.59375,1.5 0.16361,0.41909 0.70997,0.75 1.21875,0.75 0,0 4.59375,0 4.59375,0 0.50877,0 0.7694,-0.33091 0.59375,-0.75 0,0 -0.625,-1.5 -0.625,-1.5 -0.17265,-0.41193 -0.71681,-0.74999 -1.21875,-0.75 -1e-5,0 -4.53125,0 -4.53125,0 z M 50.6875,297 c -0.512259,0 -1.07016,0.33815 -1.25,0.75 0,-10e-6 -0.65625,1.5 -0.65625,1.5 -0.183018,0.41915 0.07432,0.75 0.59375,0.75 0,0 8.4375,0 8.4375,0 0.51937,0 1.08671,-0.33085 1.25,-0.75 10e-7,0 0.5625,-1.5 0.5625,-1.5 C 59.785438,297.33814 59.51226,297 59,297 c 0,0 -8.3125,0 -8.3125,0 z m 12,0 c -0.512261,0 -1.03058,0.33815 -1.1875,0.75 10e-7,-10e-6 -0.59375,1.5 -0.59375,1.5 -0.1597,0.41915 0.13687,0.75 0.65625,0.75 0,0 4.6875,0 4.6875,0 0.51937,0 1.07161,-0.33085 1.21875,-0.75 -2e-6,0 0.53125,-1.5 0.53125,-1.5 0.144579,-0.41186 -0.17524,-0.75 -0.6875,-0.75 2e-6,0 -4.625,0 -4.625,0 z m 8.34375,0 c -0.51226,0 -1.04644,0.33815 -1.1875,0.75 2e-6,-10e-6 -0.53125,1.5 -0.53125,1.5 -0.143539,0.41915 0.16812,0.75 0.6875,0.75 0,0 4.6875,0 4.6875,0 0.51937,0 1.05653,-0.33085 1.1875,-0.75 4e-6,0 0.46875,-1.5 0.46875,-1.5 0.128711,-0.41186 -0.17524,-0.75 -0.6875,-0.75 -10e-7,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.512262,0 -1.03107,0.33815 -1.15625,0.75 -3e-6,-10e-6 -0.4375,1.5 -0.4375,1.5 -0.127399,0.41915 0.16812,0.75 0.6875,0.75 0,0 4.6875,0 4.6875,0 0.51937,0 1.04141,-0.33085 1.15625,-0.75 4e-6,0 0.40625,-1.5 0.40625,-1.5 0.112852,-0.41186 -0.20649,-0.75 -0.71875,-0.75 -3e-6,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.512257,0 -1.01568,0.33815 -1.125,0.75 -3e-6,-10e-6 -0.375,1.5 -0.375,1.5 -0.111251,0.41915 0.19937,0.75 0.71875,0.75 0,0 4.6875,0 4.6875,0 0.51937,0 1.02632,-0.33085 1.125,-0.75 10e-7,0 0.34375,-1.5 0.34375,-1.5 0.097,-0.41186 -0.23774,-0.75 -0.75,-0.75 0,0 -4.625,0 -4.625,0 z M 96,297 c -0.512259,0 -1.0003,0.33816 -1.09375,0.75 0,-10e-6 -0.34375,1.5 -0.34375,1.5 -0.0951,0.41915 0.230618,0.75 0.75,0.75 2e-6,0 4.6875,0 4.6875,0 0.51936,0 1.01121,-0.33085 1.09375,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.0811,-0.41186 -0.269,-0.75 -0.78125,-0.75 0,0 -4.59375,0 -4.59375,0 z m 8.3125,0 c -0.51226,0 -0.98492,0.33815 -1.0625,0.75 0,-10e-6 -0.28125,1.5 -0.28125,1.5 -0.079,0.41915 0.26187,0.75 0.78125,0.75 0,0 4.6875,0 4.6875,0 0.51937,0 0.99611,-0.33085 1.0625,-0.75 0,0 0.25,-1.5 0.25,-1.5 0.0652,-0.41186 -0.30024,-0.75 -0.8125,-0.75 0,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51226,0 -0.96954,0.33815 -1.03125,0.75 0,-10e-6 -0.21875,1.5 -0.21875,1.5 -0.0628,0.41915 0.29312,0.75 0.8125,0.75 0,0 4.6875,0 4.6875,0 0.51937,0 0.981,-0.33084 1.03125,-0.75 0,-10e-6 0.1875,-1.5 0.1875,-1.5 0.0494,-0.41186 -0.33149,-0.75 -0.84375,-0.75 0,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51226,0 -0.95416,0.33815 -1,0.75 0,-10e-6 -0.15625,1.5 -0.15625,1.5 -0.0467,0.41915 0.32437,0.75 0.84375,0.75 0,0 4.6875,0 4.6875,0 0.51937,0 0.96591,-0.33084 1,-0.75 0,-10e-6 0.125,-1.5 0.125,-1.5 0.0335,-0.41186 -0.36274,-0.75 -0.875,-0.75 0,0 -4.625,0 -4.625,0 z m 8.34375,0 c -0.51225,0 -0.97003,0.33815 -1,0.75 0,-10e-6 -0.0937,1.5 -0.0937,1.5 -0.0305,0.41915 0.35562,0.75 0.875,0.75 -10e-6,0 4.6875,0 4.6875,0 0.51936,0 0.95081,-0.33084 0.96875,-0.75 0,-10e-6 0.0625,-1.5 0.0625,-1.5 0.0176,-0.41183 -0.36274,-0.75 -0.875,-0.75 -10e-6,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51226,0 -0.92338,0.33816 -0.9375,0.75 -1e-5,10e-6 -0.0625,1.5 -0.0625,1.5 -0.0144,0.41915 0.38688,0.75 0.90625,0.75 0,0 4.6875,0 4.6875,0 0.51938,0 0.93571,-0.33085 0.9375,-0.75 0,0 0,-1.5 0,-1.5 0.002,-0.41185 -0.39399,-0.75 -0.90625,-0.75 0,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51226,0 -0.908,0.33816 -0.90625,0.75 0,10e-6 0,1.5 0,1.5 0.002,0.41915 0.41813,0.75 0.9375,0.75 -1e-5,0 4.6875,0 4.6875,0 0.51937,0 0.92061,-0.33085 0.90625,-0.75 0,0 -0.0312,-1.5 -0.0312,-1.5 -0.0141,-0.41186 -0.45648,-0.75 -0.96875,-0.75 -10e-6,0 -4.625,0 -4.625,0 z m 8.34375,0 c -0.51226,0 -0.92388,0.33816 -0.90625,0.75 -1e-5,-10e-6 0.0625,1.5 0.0625,1.5 0.018,0.41915 0.44938,0.75 0.96875,0.75 0,0 4.6875,0 4.6875,0 0.51938,0 0.9055,-0.33085 0.875,-0.75 1e-5,0 -0.0937,-1.5 -0.0937,-1.5 -0.03,-0.41186 -0.45648,-0.75 -0.96875,-0.75 -10e-6,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51226,0 -0.9085,0.33815 -0.875,0.75 -1e-5,-10e-6 0.125,1.5 0.125,1.5 0.0341,0.41915 0.48063,0.75 1,0.75 0,0 8.4375,0 8.4375,0 0.51938,0 0.89758,-0.33085 0.84375,-0.75 0,0 -0.1875,-1.5 -0.1875,-1.5 -0.0529,-0.41186 -0.51899,-0.75 -1.03125,-0.75 1e-5,0 -8.3125,0 -8.3125,0 z m 17.5625,0 c -0.51226,0 -0.87948,0.33816 -0.8125,0.75 -1e-5,10e-6 0.25,1.5 0.25,1.5 0.0682,0.41915 0.54313,0.75 1.0625,0.75 0,0 4.6875,0 4.6875,0 0.51938,0 0.86199,-0.33085 0.78125,-0.75 0,0 -0.28125,-1.5 -0.28125,-1.5 -0.0793,-0.41186 -0.55023,-0.75 -1.0625,-0.75 -1e-5,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51228,0 -0.83286,0.33816 -0.75,0.75 0,-10e-6 0.28125,1.5 0.28125,1.5 0.0843,0.41915 0.57438,0.75 1.09375,0.75 0,0 4.6875,0 4.6875,0 0.51938,0 0.87815,-0.33085 0.78125,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.0952,-0.41186 -0.58149,-0.75 -1.09375,-0.75 0,0 -4.625,0 -4.625,0 z m 8.34375,0 c -0.51225,0 -0.84873,0.33815 -0.75,0.75 0,-10e-6 0.34375,1.5 0.34375,1.5 0.10049,0.41915 0.60563,0.75 1.125,0.75 0,0 4.6875,0 4.6875,0 0.51936,0 0.86305,-0.33085 0.75,-0.75 1e-5,0 -0.40625,-1.5 -0.40625,-1.5 -0.11107,-0.41186 -0.61275,-0.75 -1.125,-0.75 0,0 -4.625,0 -4.625,0 z m 11.09375,0 c -0.51227,0 -0.83863,0.33815 -0.71875,0.75 0,-10e-6 0.4375,1.5 0.4375,1.5 0.12203,0.41915 0.63688,0.75 1.15625,0.75 0,0 4.6875,0 4.6875,0 0.51938,0 0.82208,-0.33084 0.6875,-0.75 0,-10e-6 -0.46875,-1.5 -0.46875,-1.5 -0.13222,-0.41183 -0.64399,-0.75 -1.15625,-0.75 -1e-5,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51226,0 -0.82324,0.33816 -0.6875,0.75 0,10e-6 0.5,1.5 0.5,1.5 0.13817,0.41915 0.66813,0.75 1.1875,0.75 0,0 4.6875,0 4.6875,0 0.51938,0 0.80698,-0.33085 0.65625,-0.75 0,0 -0.53125,-1.5 -0.53125,-1.5 -0.14811,-0.41185 -0.67524,-0.75 -1.1875,-0.75 0,0 -4.625,0 -4.625,0 z m 8.3125,0 c -0.51226,0 -0.77661,0.33816 -0.625,0.75 0,-10e-6 0.53125,1.5 0.53125,1.5 0.15433,0.41915 0.69938,0.75 1.21875,0.75 0,0 4.6875,0 4.6875,0 0.51938,0 0.79187,-0.33085 0.625,-0.75 0,0 -0.59375,-1.5 -0.59375,-1.5 -0.16397,-0.41186 -0.70649,-0.75 -1.21875,-0.75 0,0 -4.625,0 -4.625,0 z m 8.5625,0 c -0.51227,0 -0.79248,0.31114 -0.625,0.6875 0,0 2.5,5.59375 2.5,5.59375 0.17777,0.39951 0.75083,0.71875 1.28125,0.71875 0,0 4.78125,0 4.78125,0 0.53042,0 0.81588,-0.31925 0.625,-0.71875 1e-5,0 -2.6875,-5.59375 -2.6875,-5.59375 -0.17983,-0.37637 -0.73775,-0.6875 -1.25,-0.6875 -1e-5,0 -4.625,0 -4.625,0 z m -184.03125,4 c -0.52301,0 -1.09378,0.33823 -1.28125,0.75 -10e-7,0 -0.6875,1.5 -0.6875,1.5 -0.19088,0.41924 0.09455,0.75 0.625,0.75 0,0 11.46875,0 11.46875,0 0.530429,0 1.08532,-0.33076 1.25,-0.75 -2e-6,0 0.59375,-1.5 0.59375,-1.5 0.161739,-0.41177 -0.13325,-0.75 -0.65625,-0.75 0,0 -11.3125,0 -11.3125,0 z m 15.09375,0 c -0.523006,0 -1.06068,0.33823 -1.21875,0.75 -10e-7,0 -0.59375,1.5 -0.59375,1.5 -0.160942,0.41924 0.15707,0.75 0.6875,0.75 -5e-6,0 4.78125,0 4.78125,0 0.530435,0 1.07092,-0.33076 1.21875,-0.75 10e-7,0 0.53125,-1.5 0.53125,-1.5 0.145205,-0.41177 -0.16449,-0.75 -0.6875,-0.75 10e-7,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523001,0 -1.04598,0.33823 -1.1875,0.75 0,0 -0.53125,1.5 -0.53125,1.5 -0.144086,0.41924 0.15707,0.75 0.6875,0.75 4e-6,0 4.8125,0 4.8125,0 0.530433,0 1.05651,-0.33076 1.1875,-0.75 0,0 0.46875,-1.5 0.46875,-1.5 0.128664,-0.41177 -0.19574,-0.75 -0.71875,-0.75 3e-6,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523007,0 -1.06251,0.33823 -1.1875,0.75 4e-6,0 -0.4375,1.5 -0.4375,1.5 -0.127247,0.41924 0.18832,0.75 0.71875,0.75 -10e-7,0 4.78125,0 4.78125,0 0.530425,0 1.07335,-0.33076 1.1875,-0.75 2e-6,0 0.40625,-1.5 0.40625,-1.5 0.11212,-0.41177 -0.227,-0.75 -0.75,-0.75 -10e-7,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523005,0 -1.04781,0.33823 -1.15625,0.75 3e-6,0 -0.375,1.5 -0.375,1.5 -0.110408,0.41924 0.21958,0.75 0.75,0.75 -10e-7,0 4.78125,0 4.78125,0 0.53042,0 1.02769,-0.33076 1.125,-0.75 10e-7,0 0.375,-1.5 0.375,-1.5 0.0956,-0.41177 -0.25824,-0.75 -0.78125,-0.75 10e-7,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523,0 -1.0331,0.33823 -1.125,0.75 0,0 -0.34375,1.5 -0.34375,1.5 -0.0936,0.41924 0.28208,0.75 0.8125,0.75 0,0 4.78125,0 4.78125,0 0.53042,0 1.01329,-0.33076 1.09375,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.079,-0.41177 -0.25824,-0.75 -0.78125,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -1.01839,0.33823 -1.09375,0.75 0,0 -0.28125,1.5 -0.28125,1.5 -0.0767,0.41924 0.28208,0.75 0.8125,0.75 0,0 4.8125,0 4.8125,0 0.53042,0 0.99888,-0.33076 1.0625,-0.75 0,0 0.21875,-1.5 0.21875,-1.5 0.0625,-0.41177 -0.2895,-0.75 -0.8125,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.46875,0 c -0.52301,0 -0.97245,0.33823 -1.03125,0.75 0,0 -0.21875,1.5 -0.21875,1.5 -0.0599,0.41924 0.31333,0.75 0.84375,0.75 0,0 4.78125,0 4.78125,0 0.53042,0 1.01571,-0.33075 1.0625,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0459,-0.41179 -0.32074,-0.75 -0.84375,-0.75 0,0 -4.75,0 -4.75,0 z m 8.5,0 c -0.523,0 -0.95773,0.33823 -1,0.75 0,0 -0.15625,1.5 -0.15625,1.5 -0.043,0.41924 0.34457,0.75 0.875,0.75 0,0 4.78125,0 4.78125,0 0.53043,0 0.97006,-0.33075 1,-0.75 0,0 0.125,-1.5 0.125,-1.5 0.0294,-0.41177 -0.38324,-0.75 -0.90625,-0.75 -1e-5,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52302,0 -0.94302,0.33822 -0.96875,0.75 -1e-5,-10e-6 -0.0937,1.5 -0.0937,1.5 -0.0262,0.41925 0.37582,0.75 0.90625,0.75 -10e-6,0 4.78125,0 4.78125,0 0.53042,0 0.95565,-0.33076 0.96875,-0.75 0,0 0.0625,-1.5 0.0625,-1.5 0.0129,-0.41177 -0.4145,-0.75 -0.9375,-0.75 -10e-6,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52302,0 -0.95956,0.33823 -0.96875,0.75 -1e-5,0 -0.0312,1.5 -0.0312,1.5 -0.009,0.41925 0.40707,0.75 0.9375,0.75 -10e-6,0 4.8125,0 4.8125,0 0.53042,0 0.94124,-0.33076 0.9375,-0.75 -10e-6,0 0,-1.5 0,-1.5 -0.004,-0.41177 -0.44574,-0.75 -0.96875,-0.75 -10e-6,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -0.94485,0.33823 -0.9375,0.75 0,0 0.0312,1.5 0.0312,1.5 0.007,0.41924 0.43832,0.75 0.96875,0.75 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.95809,-0.33076 0.9375,-0.75 -1e-5,0 -0.0937,-1.5 -0.0937,-1.5 -0.0202,-0.41177 -0.44574,-0.75 -0.96875,-0.75 -2e-5,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52303,0 -0.93014,0.33823 -0.90625,0.75 -2e-5,0 0.0937,1.5 0.0937,1.5 0.0243,0.41924 0.46957,0.75 1,0.75 l 14.34375,0 c 0.53042,0 0.93114,-0.33076 0.875,-0.75 -1e-5,0 -0.21875,-1.5 -0.21875,-1.5 C 172.7261,301.33823 172.273,301 171.75,301 l -14.15625,0 z M 209.5,301 c -0.52301,0 -0.84374,0.33823 -0.71875,0.75 -1e-5,0 0.46875,1.5 0.46875,1.5 0.12724,0.41924 0.65708,0.75 1.1875,0.75 -2e-5,0 4.78125,0 4.78125,0 0.53041,0 0.8591,-0.33076 0.71875,-0.75 0,0 -0.5,-1.5 -0.5,-1.5 -0.13786,-0.41177 -0.69574,-0.75 -1.21875,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52303,0 -0.82902,0.33823 -0.6875,0.75 -1e-5,0 0.53125,1.5 0.53125,1.5 0.14407,0.41924 0.68833,0.75 1.21875,0.75 -2e-5,0 4.78125,0 4.78125,0 0.53041,0 0.81345,-0.33075 0.65625,-0.75 -1e-5,0 -0.5625,-1.5 -0.5625,-1.5 -0.15439,-0.41177 -0.69575,-0.75 -1.21875,-0.75 -1e-5,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52302,0 -0.81432,0.33822 -0.65625,0.75 -1e-5,-10e-6 0.59375,1.5 0.59375,1.5 0.16094,0.41925 0.71958,0.75 1.25,0.75 -2e-5,0 4.78125,0 4.78125,0 0.53041,0 0.79903,-0.33075 0.625,-0.75 -1e-5,0 -0.625,-1.5 -0.625,-1.5 -0.17094,-0.41177 -0.72699,-0.75 -1.25,-0.75 0,0 -4.71875,0 -4.71875,0 z m -179.59375,4 c -0.534211,10e-6 -1.11688,0.33831 -1.3125,0.75 0,10e-6 -0.71875,1.5 -0.71875,1.5 -0.19925,0.41932 0.08308,0.75 0.625,0.75 10e-7,0 15.65625,0 15.65625,0 0.541951,0 1.08592,-0.33068 1.25,-0.75 -10e-7,0 0.59375,-1.5 0.59375,-1.5 0.161089,-0.41168 -0.12203,-0.75 -0.65625,-0.75 -10e-7,10e-6 -15.4375,0 -15.4375,0 z m 19.28125,0 c -0.534218,10e-6 -1.09274,0.33831 -1.25,0.75 0,10e-6 -0.5625,1.5 -0.5625,1.5 -0.16017,0.41932 0.14554,0.75 0.6875,0.75 10e-7,0 4.875,0 4.875,0 0.541957,0 1.10349,-0.33068 1.25,-0.75 -2e-6,0 0.53125,-1.5 0.53125,-1.5 C 71.862588,305.33832 71.53422,305 71,305 c 3e-6,10e-6 -4.8125,0 -4.8125,0 z m 8.6875,0 c -0.534221,10e-6 -1.07875,0.33831 -1.21875,0.75 2e-6,10e-6 -0.5,1.5 -0.5,1.5 -0.14259,0.41932 0.17679,0.75 0.71875,0.75 -10e-7,0 4.875,0 4.875,0 0.541962,0 1.08983,-0.33068 1.21875,-0.75 -2e-6,0 0.46875,-1.5 0.46875,-1.5 0.126569,-0.41168 -0.21578,-0.75 -0.75,-0.75 0,10e-6 -4.8125,0 -4.8125,0 z m 8.65625,0 c -0.534217,10e-6 -1.03351,0.33831 -1.15625,0.75 10e-7,10e-6 -0.46875,1.5 -0.46875,1.5 -0.125018,0.41932 0.20805,0.75 0.75,0.75 2e-6,0 4.90625,0 4.90625,0 0.541951,0 1.07616,-0.33068 1.1875,-0.75 -2e-6,0 0.375,-1.5 0.375,-1.5 0.10931,-0.41168 -0.21579,-0.75 -0.75,-0.75 -10e-7,10e-6 -4.84375,0 -4.84375,0 z m 8.6875,0 c -0.534221,10e-6 -1.05077,0.33831 -1.15625,0.75 2e-6,10e-6 -0.375,1.5 -0.375,1.5 -0.107438,0.41932 0.23929,0.75 0.78125,0.75 10e-7,0 4.90625,0 4.90625,0 0.541948,0 1.03124,-0.33068 1.125,-0.75 -4e-6,0 0.34375,-1.5 0.34375,-1.5 0.0921,-0.41168 -0.27829,-0.75 -0.8125,-0.75 2e-6,10e-6 -4.8125,0 -4.8125,0 z m 8.6875,0 c -0.53421,10e-6 -1.03679,0.33831 -1.125,0.75 0,10e-6 -0.3125,1.5 -0.3125,1.5 -0.0898,0.41932 0.27054,0.75 0.8125,0.75 0,0 4.875,0 4.875,0 0.54197,0 1.04881,-0.33068 1.125,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.0748,-0.41168 -0.30954,-0.75 -0.84375,-0.75 0,10e-6 -4.8125,0 -4.8125,0 z m 8.6875,0 c -0.53421,10e-6 -1.02279,0.33831 -1.09375,0.75 0,10e-6 -0.28125,1.5 -0.28125,1.5 -0.0723,0.41932 0.33304,0.75 0.875,0.75 0,0 4.875,0 4.875,0 0.54196,0 1.03515,-0.33068 1.09375,-0.75 0,0 0.1875,-1.5 0.1875,-1.5 0.0575,-0.41168 -0.30954,-0.75 -0.84375,-0.75 0,10e-6 -4.8125,0 -4.8125,0 z m 8.65625,0 c -0.53421,0 -1.0088,0.33831 -1.0625,0.75 0,10e-6 -0.1875,1.5 -0.1875,1.5 -0.0547,0.41932 0.33306,0.75 0.875,0.75 0,0 4.90625,0 4.90625,0 0.54195,0 0.99023,-0.33068 1.03125,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0403,-0.41168 -0.34079,-0.75 -0.875,-0.75 0,10e-6 -4.84375,0 -4.84375,0 z m 8.6875,0 c -0.53421,10e-6 -0.99481,0.33831 -1.03125,0.75 0,10e-6 -0.125,1.5 -0.125,1.5 -0.0371,0.41932 0.36428,0.75 0.90625,0.75 0,0 4.90625,0 4.90625,0 0.54196,0 0.97656,-0.33068 1,-0.75 -1e-5,0 0.0937,-1.5 0.0937,-1.5 0.023,-0.41168 -0.40328,-0.75 -0.9375,-0.75 0,10e-6 -4.8125,0 -4.8125,0 z m 8.6875,0 c -0.53422,10e-6 -0.98083,0.33831 -1,0.75 -1e-5,10e-6 -0.0625,1.5 -0.0625,1.5 -0.0195,0.41932 0.39554,0.75 0.9375,0.75 0,0 4.875,0 4.875,0 0.54196,0 0.99414,-0.33068 1,-0.75 0,0 0.0312,-1.5 0.0312,-1.5 0.006,-0.41168 -0.43453,-0.75 -0.96875,-0.75 0,10e-6 -4.8125,0 -4.8125,0 z m 8.65625,0 c -0.53421,10e-6 -0.93558,0.33831 -0.9375,0.75 0,10e-6 -0.0312,1.5 -0.0312,1.5 -0.002,0.41932 0.4268,0.75 0.96875,0.75 1e-5,0 4.90625,0 4.90625,0 0.54196,0 0.98047,-0.33068 0.96875,-0.75 0,0 -0.0625,-1.5 -0.0625,-1.5 -0.0115,-0.41168 -0.43453,-0.75001 -0.96875,-0.75 0,10e-6 -4.84375,0 -4.84375,0 z m 8.6875,0 c -0.53422,10e-6 -0.95284,0.33831 -0.9375,0.75 1e-5,10e-6 0.0625,1.5 0.0625,1.5 0.0156,0.41932 0.45805,0.75 1,0.75 -1e-5,0 19.5625,0 19.5625,0 0.54195,0 0.9336,-0.33068 0.875,-0.75 -1e-5,0 -0.1875,-1.5 -0.1875,-1.5 -0.0575,-0.41168 -0.55955,-0.75 -1.09375,-0.75 1e-5,10e-6 -19.28125,0 -19.28125,0 z m 37.625,0 c -0.53423,10e-6 -0.90263,0.33831 -0.8125,0.75 -1e-5,10e-6 0.3125,1.5 0.3125,1.5 0.0918,0.41932 0.6143,0.75 1.15625,0.75 0,0 4.90625,0 4.90625,0 0.54195,0 0.88673,-0.33068 0.78125,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.10357,-0.41168 -0.62204,-0.75 -1.15625,-0.75 0,10e-6 -4.8125,0 -4.8125,0 z m 20.25,0 c -0.53424,10e-6 -0.88041,0.33831 -0.75,0.75 0,10e-6 0.46875,1.5 0.46875,1.5 0.13283,0.41932 0.67679,0.75 1.21875,0.75 0,0 4.90625,0 4.90625,0 0.54194,0 0.86526,-0.33068 0.71875,-0.75 0,0 -0.53125,-1.5 -0.53125,-1.5 -0.14385,-0.41168 -0.68453,-0.75 -1.21875,-0.75 0,10e-6 -4.8125,0 -4.8125,0 z m 8.65625,0 c -0.53421,10e-6 -0.83517,0.33831 -0.6875,0.75 0,10e-6 0.53125,1.5 0.53125,1.5 0.15043,0.41932 0.70804,0.75 1.25,0.75 -1e-5,0 4.90625,0 4.90625,0 0.54196,0 0.85158,-0.33068 0.6875,-0.75 0,0 -0.59375,-1.5 -0.59375,-1.5 -0.16109,-0.41168 -0.71579,-0.75 -1.25,-0.75 -1e-5,10e-6 -4.84375,0 -4.84375,0 z m 8.6875,0 c -0.53422,10e-6 -0.82118,0.33831 -0.65625,0.75 1e-5,10e-6 0.59375,1.5 0.59375,1.5 0.16798,0.41932 0.73929,0.75 1.28125,0.75 1e-5,0 4.875,0 4.875,0 0.54195,0 0.83791,-0.33068 0.65625,-0.75 0,0 -0.65625,-1.5 -0.65625,-1.5 -0.17835,-0.41168 -0.74704,-0.75001 -1.28125,-0.75 1e-5,10e-6 -4.8125,0 -4.8125,0 z m 8.6875,0 c -0.53421,0 -0.8072,0.31161 -0.625,0.6875 0,-10e-6 2.71875,5.59375 2.71875,5.59375 0.19472,0.40002 0.78975,0.71875 1.34375,0.71875 0,0 5,0 5,0 0.55398,0 0.83317,-0.31872 0.625,-0.71875 1e-5,-10e-6 -2.90625,-5.59375 -2.90625,-5.59375 C 242.83564,305.3116 242.22172,305 241.6875,305 c 0,0 -4.8125,0 -4.8125,0 z m -192.09375,4 c -0.545911,0 -1.13946,0.3384 -1.34375,0.75 2e-6,0 -0.75,1.5 -0.75,1.5 -0.208169,0.41941 0.07098,0.75 0.625,0.75 2e-6,0 9,0 9,0 0.554002,0 1.15803,-0.33059 1.34375,-0.75 -10e-7,0 0.65625,-1.5 0.65625,-1.5 0.182262,-0.4116 -0.11033,-0.75 -0.65625,-0.75 -10e-7,0 -8.875,0 -8.875,0 z m 12.8125,0 c -0.54591,0 -1.13425,0.3384 -1.3125,0.75 -2e-6,0 -0.65625,1.5 -0.65625,1.5 -0.181639,0.41941 0.1335,0.75 0.6875,0.75 2e-6,0 7,0 7,0 0.554002,0 1.11798,-0.33059 1.28125,-0.75 -2e-6,0 0.59375,-1.5 0.59375,-1.5 C 65.347732,309.3384 65.04591,309 64.5,309 c 2e-6,0 -6.90625,0 -6.90625,0 z m 10.84375,0 c -0.54592,0 -1.12502,0.3384 -1.28125,0.75 2e-6,0 -0.5625,1.5 -0.5625,1.5 -0.159187,0.41941 0.16475,0.75 0.71875,0.75 2e-6,0 8,0 8,0 0.554002,0 1.11122,-0.33059 1.25,-0.75 -10e-7,0 0.5,-1.5 0.5,-1.5 0.136198,-0.4116 -0.20409,-0.75 -0.75,-0.75 10e-7,0 -7.875,0 -7.875,0 z m 11.8125,0 c -0.545906,0 -1.08656,0.3384 -1.21875,0.75 -10e-7,0 -0.46875,1.5 -0.46875,1.5 -0.134688,0.41941 0.196,0.75 0.75,0.75 2e-6,0 49,0 49,0 0.55399,0 1.03188,-0.33059 1.0625,-0.75 0,0 0.0937,-1.5 0.0937,-1.5 0.03,-0.4116 -0.39159,-0.75001 -0.9375,-0.75 0,10e-6 -48.28125,0 -48.28125,0 z m 52.21875,0 c -0.54591,0 -1.00521,0.3384 -1.03125,0.75 1e-5,0 -0.0937,1.5 -0.0937,1.5 -0.0265,0.41941 0.41474,0.75 0.96875,0.75 0,0 8,0 8,0 0.55401,0 0.99387,-0.33059 1,-0.75 0,0 0.0312,-1.5 0.0312,-1.5 0.006,-0.4116 -0.42283,-0.75 -0.96875,-0.75 -1e-5,0 -7.90625,0 -7.90625,0 z m 11.84375,0 c -0.54591,0 -0.99799,0.3384 -1,0.75 1e-5,0 0,1.5 0,1.5 -0.002,0.41941 0.44601,0.75 1,0.75 0,0 7,0 7,0 0.55401,0 0.98508,-0.33059 0.96875,-0.75 -1e-5,0 -0.0625,-1.5 -0.0625,-1.5 -0.016,-0.4116 -0.45407,-0.75 -1,-0.75 1e-5,0 -6.90625,0 -6.90625,0 z m 10.84375,0 c -0.54591,0 -0.98878,0.3384 -0.96875,0.75 0,0 0.0937,1.5 0.0937,1.5 0.0201,0.41941 0.47725,0.75 1.03125,0.75 0,0 7,0 7,0 0.55401,0 0.97628,-0.33059 0.9375,-0.75 0,0 -0.15625,-1.5 -0.15625,-1.5 -0.038,-0.4116 -0.51659,-0.75 -1.0625,-0.75 -1e-5,0 -6.875,0 -6.875,0 z M 166,309 c -0.54591,0 -0.97956,0.3384 -0.9375,0.75 0,0 0.15625,1.5 0.15625,1.5 0.0428,0.41941 0.53975,0.75 1.09375,0.75 0,0 7,0 7,0 0.554,0 0.93623,-0.33059 0.875,-0.75 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0601,-0.4116 -0.54785,-0.74999 -1.09375,-0.75 0,0 -6.875,0 -6.875,0 z m 16.75,0 c -0.54592,0 -0.95111,0.33839 -0.875,0.75 1e-5,0 0.28125,1.5 0.28125,1.5 0.0776,0.41941 0.60225,0.75 1.15625,0.75 0,0 5,0 5,0 0.55401,0 0.93559,-0.33059 0.84375,-0.75 -1e-5,0 -0.34375,-1.5 -0.34375,-1.5 -0.0901,-0.4116 -0.61033,-0.75 -1.15625,-0.75 0,0 -4.90625,0 -4.90625,0 z m 8.84375,0 c -0.54591,0 -0.90664,0.3384 -0.8125,0.75 0,0 0.34375,1.5 0.34375,1.5 0.0959,0.41941 0.6335,0.75 1.1875,0.75 0,0 5,0 5,0 0.55398,0 0.89146,-0.33059 0.78125,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.10816,-0.4116 -0.6416,-0.74999 -1.1875,-0.75 0,0 -4.9375,0 -4.9375,0 z m 8.875,0 c -0.54592,0 -0.89342,0.3384 -0.78125,0.75 1e-5,0 0.40625,1.5 0.40625,1.5 0.11428,0.41941 0.66475,0.75 1.21875,0.75 0,0 5,0 5,0 0.55398,0 0.87858,-0.33059 0.75,-0.75 0,0 -0.4375,-1.5 -0.4375,-1.5 -0.12618,-0.4116 -0.67284,-0.75 -1.21875,-0.75 0,0 -4.9375,0 -4.9375,0 z m 11.84375,0 c -0.5459,10e-6 -0.8862,0.3384 -0.75,0.75 0,0 0.5,1.5 0.5,1.5 0.13877,0.41941 0.696,0.75 1.25,0.75 0,0 14,0 14,0 0.55401,0 0.85893,-0.33059 0.6875,-0.75 1e-5,0 -0.625,-1.5 -0.625,-1.5 -0.16824,-0.4116 -0.73533,-0.75 -1.28125,-0.75 0,0 -13.78125,0 -13.78125,0 z m 17.71875,0 c -0.54592,0 -0.82851,0.3384 -0.65625,0.75 0,0 0.625,1.5 0.625,1.5 0.17552,0.41941 0.7585,0.75 1.3125,0.75 0,0 5,0 5,0 0.55401,0 0.84605,-0.33059 0.65625,-0.75 0,0 -0.6875,-1.5 -0.6875,-1.5 -0.18626,-0.4116 -0.76659,-0.75 -1.3125,-0.75 0,0 -4.9375,0 -4.9375,0 z" - style="display:inline;fill:#888a85;fill-opacity:1;stroke:none;filter:url(#filter3695);enable-background:new" - inkscape:connector-curvature="0" /> - <g - transform="translate(11.980368,2.25)" - id="g3539" - style="display:inline;enable-background:new"> - <g - id="g3934" - transform="translate(-14,-150)"> - <path - style="display:inline;fill:url(#linearGradient3778);fill-opacity:1;stroke:none;enable-background:new" - d="m 57.797201,392 c -0.50195,0 -1.04457,0.3305 -1.21721,0.74243 0,0 -0.62865,1.49994 -0.62865,1.49994 -0.17565,0.41909 0.0921,0.75763 0.60083,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 1.05052,-0.33854 1.21411,-0.75763 0,0 0.58552,-1.49994 0.58552,-1.49994 C 63.104421,392.3305 62.829351,392 62.327401,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -1.03235,0.3305 -1.18975,0.74243 0,0 -0.5732,1.49994 -0.5732,1.49994 -0.16014,0.41909 0.12009,0.75763 0.62886,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 1.038,-0.33854 1.18608,-0.75763 0,0 0.53006,-1.49994 0.53006,-1.49994 C 71.271001,392.3305 70.983711,392 70.481761,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -1.02012,0.3305 -1.16229,0.74243 0,0 -0.51772,1.49994 -0.51772,1.49994 -0.14465,0.41909 0.14809,0.75763 0.65687,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 1.02548,-0.33854 1.15808,-0.75763 0,0 0.47458,-1.49994 0.47458,-1.49994 C 79.437591,392.3305 79.138071,392 78.636131,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -1.00791,0.3305 -1.13484,0.74243 0,0 -0.46225,1.49994 -0.46225,1.49994 -0.12915,0.41909 0.17611,0.75763 0.68488,0.75763 0,0 4.59184,0 4.59184,0 0.50878,0 1.01296,-0.33854 1.13006,-0.75763 0,0 0.4191,-1.49994 0.4191,-1.49994 C 87.604171,392.3305 87.292431,392 86.790491,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.99568,0.3305 -1.10738,0.74243 0,0 -0.40679,1.49994 -0.40679,1.49994 -0.11365,0.41909 0.20413,0.75763 0.71291,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 1.00044,-0.33854 1.10203,-0.75763 0,0 0.36364,-1.49994 0.36364,-1.49994 0.0999,-0.41193 -0.2241,-0.74243 -0.72605,-0.74243 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.98346,0.3305 -1.07993,0.74243 0,0 -0.35131,1.49994 -0.35131,1.49994 -0.0982,0.41909 0.23215,0.75763 0.74093,0.75763 0,0 4.591819,0 4.591819,0 0.50879,0 0.98793,-0.33854 1.07403,-0.75763 0,0 0.30817,-1.49994 0.30817,-1.49994 0.0846,-0.41193 -0.25156,-0.74243 -0.75352,-0.74242 0,0 -4.530189,-10e-6 -4.530189,-10e-6 0,0 0,0 0,0 m 8.154359,0 c -0.50194,0 -0.97123,0.3305 -1.05248,0.74243 0,0 -0.29584,1.49994 -0.29584,1.49994 -0.0827,0.41909 0.26017,0.75763 0.76895,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.9754,-0.33854 1.046,-0.75763 0,0 0.2527,-1.49994 0.2527,-1.49994 C 112.10394,392.3305 111.75552,392 111.25357,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,10e-6 c -0.50193,-10e-6 -0.959,0.33049 -1.02501,0.74242 0,0 -0.24037,1.49994 -0.24037,1.49994 -0.0672,0.41909 0.28818,0.75763 0.79696,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.96288,-0.33854 1.01799,-0.75763 0,0 0.19723,-1.49994 0.19723,-1.49994 C 120.27056,392.3305 119.90988,392 119.40794,392 c 0,0 -4.53021,10e-6 -4.53021,10e-6 0,0 0,0 0,0 M 123.0321,392 c -0.50194,0 -0.94678,0.3305 -0.99756,0.74243 0,0 -0.1849,1.49994 -0.1849,1.49994 -0.0517,0.41909 0.31621,0.75763 0.82497,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.95036,-0.33854 0.98997,-0.75763 0,0 0.14175,-1.49994 0.14175,-1.49994 C 128.43707,392.33049 128.06424,392 127.5623,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,10e-6 -0.93456,0.3305 -0.9701,0.74243 0,0 -0.12943,1.49994 -0.12943,1.49994 -0.0362,0.41909 0.34421,0.75763 0.85299,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.93785,-0.33854 0.96196,-0.75763 0,0 0.0863,-1.49994 0.0863,-1.49994 C 136.60371,392.3305 136.21864,392 135.71668,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -0.92233,0.33049 -0.94265,0.74243 0,0 -0.074,1.49994 -0.074,1.49994 -0.0207,0.41909 0.37224,0.75763 0.88101,0.75763 0,0 4.59184,0 4.59184,0 0.50879,0 0.92532,-0.33854 0.93393,-0.75763 0,0 0.0308,-1.49994 0.0308,-1.49994 0.008,-0.41193 -0.38883,-0.74243 -0.89079,-0.74243 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -0.91011,0.3305 -0.91519,0.74243 0,0 -0.0185,1.49994 -0.0185,1.49994 -0.005,0.41909 0.40025,0.75763 0.90903,0.75763 0,0 4.59185,0 4.59185,0 0.50876,0 0.91279,-0.33854 0.9059,-0.75763 0,0 -0.0247,-1.49994 -0.0247,-1.49994 -0.007,-0.41193 -0.4163,-0.74242 -0.91824,-0.74243 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -0.8979,0.3305 -0.88774,0.74243 0,0 0.037,1.49994 0.037,1.49994 0.0103,0.41909 0.42827,0.75763 0.93705,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.90029,-0.33854 0.8779,-0.75763 0,0 -0.0801,-1.49994 -0.0801,-1.49994 -0.022,-0.41193 -0.44376,-0.74243 -0.9457,-0.74242 0,0 -4.5302,-10e-6 -4.5302,-10e-6 0,0 0,0 0,0 m 8.15437,0 c -0.50196,0 -0.88568,0.3305 -0.86029,0.74243 0,0 0.0925,1.49994 0.0925,1.49994 0.0258,0.41909 0.45629,0.75763 0.96506,0.75763 0,0 11.93878,0 11.93878,0 0.50877,0 0.87663,-0.33854 0.82497,-0.75763 0,0 -0.1849,-1.49994 -0.1849,-1.49994 -0.0508,-0.41193 -0.49561,-0.74242 -0.99755,-0.74243 0,0 -11.77852,0 -11.77852,0 0,0 0,0 0,0 m 20.83891,0 c -0.50194,0 -0.85443,0.33049 -0.79011,0.74243 0,0 0.2342,1.49994 0.2342,1.49994 0.0654,0.41909 0.52789,0.75763 1.03667,0.75763 0,0 4.59184,0 4.59184,0 0.50878,0 0.85577,-0.33854 0.77827,-0.75763 0,0 -0.27735,-1.49994 -0.27735,-1.49994 C 190.14014,392.3305 189.67498,392 189.17303,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -0.84222,0.3305 -0.76266,0.74243 0,0 0.28967,1.49994 0.28967,1.49994 0.0809,0.41909 0.55591,0.75763 1.06469,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.84324,-0.33854 0.75025,-0.75763 0,0 -0.33282,-1.49994 -0.33282,-1.49994 -0.0914,-0.41193 -0.56882,-0.74242 -1.07076,-0.74243 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.82999,0.3305 -0.73521,0.74243 0,0 0.34515,1.49994 0.34515,1.49994 0.0964,0.41909 0.58393,0.75763 1.0927,0.75763 0,0 4.59185,0 4.59185,0 0.50876,0 0.83072,-0.33854 0.72223,-0.75763 0,0 -0.38829,-1.49994 -0.38829,-1.49994 C 206.47335,392.3305 205.9837,392 205.48176,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 10.87248,0 c -0.50194,10e-6 -0.81369,0.3305 -0.6986,0.74243 0,0 0.41911,1.49994 0.41911,1.49994 0.1171,0.41909 0.62128,0.75763 1.13006,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.81403,-0.33854 0.68488,-0.75763 0,0 -0.46225,-1.49994 -0.46225,-1.49994 C 217.36212,392.33049 216.85618,392 216.35423,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -0.80147,0.33049 -0.67114,0.74243 0,0 0.47458,1.49994 0.47458,1.49994 0.1326,0.41909 0.6493,0.75763 1.15808,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.80152,-0.33854 0.65687,-0.75763 0,0 -0.51772,-1.49994 -0.51772,-1.49994 C 225.52871,392.3305 225.01055,392 224.5086,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -0.78926,0.3305 -0.64369,0.74243 0,0 0.53005,1.49994 0.53005,1.49994 0.14809,0.41909 0.67732,0.75763 1.18609,0.75763 0,0 4.59184,0 4.59184,0 0.50878,0 0.789,-0.33854 0.62885,-0.75763 0,0 -0.57319,-1.49994 -0.57319,-1.49994 C 233.6953,392.3305 233.16491,392 232.66297,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.77703,0.3305 -0.61623,0.74243 0,0 0.58551,1.49994 0.58551,1.49994 0.1636,0.41909 0.70534,0.75763 1.21412,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.77647,-0.33854 0.60082,-0.75763 0,0 -0.62865,-1.49994 -0.62865,-1.49994 -0.17265,-0.41193 -0.71526,-0.74242 -1.2172,-0.74243 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0" - id="path3519" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3780);fill-opacity:1;stroke:none;enable-background:new" - d="m 59.562374,387.99172 c -0.492566,0 -1.02148,0.33244 -1.186454,0.74672 0,0 -0.600568,1.50823 -0.600568,1.50823 -0.167765,0.42132 0.09855,0.76162 0.597605,0.76162 0,0 4.50446,0 4.50446,0 0.499096,0 1.027112,-0.3403 1.183361,-0.76162 0,0 0.559364,-1.50823 0.559364,-1.50823 0.153638,-0.41428 -0.11962,-0.74672 -0.612187,-0.74672 0,0 -4.445581,0 -4.445581,0 0,0 0,0 0,0 m 16.004072,0 c -0.492566,0 -0.998121,0.33244 -1.133975,0.74672 0,0 -0.494591,1.50823 -0.494591,1.50823 -0.138162,0.42132 0.152036,0.76162 0.651132,0.76162 0,0 4.50446,0 4.50446,0 0.499096,0 1.00319,-0.3403 1.129833,-0.76162 0,0 0.453378,-1.50823 0.453378,-1.50823 0.124537,-0.41428 -0.172079,-0.74672 -0.664645,-0.74672 0,0 -4.445592,0 -4.445592,0 0,0 0,0 0,0 m 8.002041,0 c -0.492566,0 -0.986442,0.33244 -1.107745,0.74672 0,0 -0.441599,1.50823 -0.441599,1.50823 -0.123358,0.42132 0.1788,0.76162 0.677896,0.76162 0,0 4.50445,0 4.50445,0 0.499096,0 0.991238,-0.3403 1.10309,-0.76162 0,0 0.400375,-1.50823 0.400375,-1.50823 0.109986,-0.41428 -0.198319,-0.74672 -0.690895,-0.74672 0,0 -4.445572,0 -4.445572,0 0,0 0,0 0,0 m 8.002042,0 c -0.492567,0 -0.974764,0.33244 -1.081506,0.74672 0,0 -0.388616,1.50823 -0.388616,1.50823 -0.108546,0.42132 0.205563,0.76162 0.70465,0.76162 0,0 4.504469,-10e-6 4.504469,-10e-6 0.499086,10e-6 0.979278,-0.34029 1.076316,-0.76161 0,0 0.347392,-1.50823 0.347392,-1.50823 0.09543,-0.41428 -0.224568,-0.74672 -0.717124,-0.74672 0,0 -4.445581,0 -4.445581,0 0,0 0,0 0,0 m 8.002041,0 c -0.492567,0 -0.963095,0.33244 -1.055277,0.74672 0,0 -0.335612,1.50823 -0.335612,1.50823 -0.09371,0.42132 0.232307,0.76162 0.731413,0.76161 0,0 4.504446,10e-6 4.504446,10e-6 0.4991,0 0.96733,-0.3403 1.04957,-0.76162 0,0 0.2944,-1.50823 0.2944,-1.50823 0.0808,-0.41428 -0.2508,-0.74672 -0.74337,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 11.5585,0 c -0.49257,0 -0.94622,0.33244 -1.01738,0.74672 0,0 -0.25908,1.50823 -0.25908,1.50823 -0.0724,0.42132 0.27098,0.76162 0.77008,0.76161 0,0 4.50445,10e-6 4.50445,10e-6 0.49909,0 0.95005,-0.3403 1.01091,-0.76162 0,0 0.21785,-1.50823 0.21785,-1.50823 0.0599,-0.41428 -0.28868,-0.74672 -0.78126,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 8.00203,0 c -0.49256,0 -0.93454,0.33244 -0.99114,0.74672 0,0 -0.20607,1.50823 -0.20607,1.50823 -0.0575,0.42132 0.29773,0.76161 0.79683,0.76161 0,0 4.50445,10e-6 4.50445,10e-6 0.4991,0 0.9381,-0.3403 0.98415,-0.76162 0,0 0.16486,-1.50823 0.16486,-1.50823 0.0452,-0.41428 -0.31492,-0.74672 -0.80749,-0.74672 0,0 -4.44559,0 -4.44559,0 0,0 0,0 0,0 m 8.00205,0 c -0.49257,0 -0.92286,0.33244 -0.96491,0.74672 0,0 -0.15309,1.50823 -0.15309,1.50823 -0.0427,0.42132 0.32449,0.76161 0.82358,0.76162 0,0 4.50447,0 4.50447,0 0.49909,0 0.92613,-0.3403 0.95737,-0.76162 0,0 0.11188,-1.50823 0.11188,-1.50823 0.0307,-0.41428 -0.34115,-0.74672 -0.83372,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00203,0 c -0.49257,-10e-6 -0.91117,0.33244 -0.93867,0.74672 0,0 -0.10006,1.50823 -0.10006,1.50823 -0.028,0.42132 0.35124,0.76161 0.85034,0.76162 0,0 4.50446,0 4.50446,0 0.4991,0 0.91418,-0.3403 0.93062,-0.76162 0,0 0.0588,-1.50823 0.0588,-1.50823 0.0162,-0.41428 -0.36739,-0.74672 -0.85996,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 11.55851,0 c -0.49258,0 -0.89431,0.33244 -0.90079,0.74672 0,0 -0.0236,1.50823 -0.0236,1.50823 -0.007,0.42132 0.38991,0.76161 0.88901,0.76162 0,0 4.50445,0 4.50445,0 0.49909,0 0.89692,-0.3403 0.89198,-0.76162 0,0 -0.0176,-1.50823 -0.0176,-1.50823 -0.005,-0.41428 -0.40529,-0.74672 -0.89786,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 8.00203,0 c -0.49257,0 -0.88262,0.33244 -0.87454,0.74672 0,0 0.0294,1.50823 0.0294,1.50823 0.008,0.42132 0.41666,0.76162 0.91576,0.76162 0,0 4.50445,0 4.50445,0 0.4991,-10e-6 0.88495,-0.3403 0.86521,-0.76162 0,0 -0.0706,-1.50823 -0.0706,-1.50823 -0.0195,-0.41428 -0.43153,-0.74672 -0.9241,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00204,0 c -0.49257,0 -0.87095,0.33244 -0.84829,0.74672 0,0 0.0824,1.50823 0.0824,1.50823 0.0231,0.42132 0.44341,0.76162 0.9425,0.76162 0,0 4.50447,-10e-6 4.50447,-10e-6 0.49909,0 0.87298,-0.34029 0.83845,-0.76161 0,0 -0.12365,-1.50823 -0.12365,-1.50823 -0.034,-0.41428 -0.45777,-0.74672 -0.95034,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 8.00203,0 c -0.49256,0 -0.85926,0.33244 -0.82206,0.74672 0,0 0.13542,1.50823 0.13542,1.50823 0.0379,0.42132 0.47018,0.76162 0.96928,0.76162 0,0 4.50446,-10e-6 4.50446,-10e-6 0.49909,10e-6 0.86103,-0.34029 0.81169,-0.76161 0,0 -0.17664,-1.50823 -0.17664,-1.50823 -0.0485,-0.41428 -0.484,-0.74672 -0.97656,-0.74672 0,0 -4.44559,0 -4.44559,0 0,0 0,0 0,0 m 13.33673,0 c -0.49256,0 -0.83979,0.33244 -0.77832,0.74672 0,0 0.22373,1.50823 0.22373,1.50823 0.0625,0.42132 0.51479,0.76162 1.01387,0.76162 0,0 4.50446,-10e-6 4.50446,-10e-6 0.4991,0 0.8411,-0.34029 0.7671,-0.76161 0,0 -0.26496,-1.50823 -0.26496,-1.50823 -0.0727,-0.41428 -0.52773,-0.74672 -1.0203,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00204,0 c -0.49257,0 -0.82812,0.33244 -0.75211,0.74672 0,0 0.27674,1.50823 0.27674,1.50823 0.0773,0.42132 0.54154,0.76162 1.04064,0.76162 0,0 4.50446,-10e-6 4.50446,-10e-6 0.49908,10e-6 0.82915,-0.34029 0.74034,-0.76161 0,0 -0.31796,-1.50823 -0.31796,-1.50823 -0.0874,-0.41428 -0.55396,-0.74672 -1.04653,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00204,0 c -0.49257,0 -0.81644,0.33244 -0.72587,0.74672 0,0 0.32973,1.50823 0.32973,1.50823 0.0921,0.42132 0.56829,0.76162 1.06739,0.76161 0,0 4.50446,0 4.50446,0 0.49909,10e-6 0.8172,-0.34029 0.71358,-0.76161 0,0 -0.37094,-1.50823 -0.37094,-1.50823 -0.1019,-0.41428 -0.5802,-0.74672 -1.07278,-0.74673 0,0 -4.44557,10e-6 -4.44557,10e-6 0,0 0,0 0,0" - id="path3523" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3782);fill-opacity:1;stroke:none;enable-background:new" - d="m 55.676858,396 c -0.51226,0 -1.06894,0.33042 -1.24878,0.74227 0,0 -0.65494,1.49995 -0.65494,1.49995 -0.18302,0.41915 0.0872,0.75778 0.60663,0.75778 0,0 8.4375,0 8.4375,0 0.51937,0 1.0694,-0.33863 1.23269,-0.75778 0,0 0.58431,-1.49995 0.58431,-1.49995 0.16044,-0.41185 -0.12324,-0.74227 -0.6355,-0.74227 0,0 -8.32191,0 -8.32191,0 0,0 0,0 0,0 m 12.02054,0 c -0.51226,0 -1.05054,0.33042 -1.20746,0.74227 0,0 -0.57147,1.49995 -0.57147,1.49995 -0.1597,0.41915 0.12942,0.75778 0.6488,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.05635,-0.33863 1.20349,-0.75778 0,0 0.52652,-1.49995 0.52652,-1.49995 C 73.129358,396.33042 72.832948,396 72.320688,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -1.03781,0.33042 -1.17887,0.74227 0,0 -0.51368,1.49995 -0.51368,1.49995 -0.14354,0.41915 0.15862,0.75778 0.678,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.04332,-0.33863 1.17429,-0.75778 0,0 0.46874,-1.49995 0.46874,-1.49995 C 81.464008,396.33042 81.154868,396 80.642608,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -1.02509,0.33042 -1.15027,0.74227 0,0 -0.45589,1.49995 -0.45589,1.49995 -0.1274,0.41915 0.18781,0.75778 0.70719,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.03026,-0.33863 1.1451,-0.75778 0,0 0.41094,-1.49995 0.41094,-1.49995 C 89.798658,396.33042 89.476788,396 88.964528,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -1.01236,0.33042 -1.12168,0.74227 0,0 -0.3981,1.49995 -0.3981,1.49995 -0.11125,0.41915 0.21701,0.75778 0.73639,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.01722,-0.33863 1.1159,-0.75778 0,0 0.35316,-1.49995 0.35316,-1.49995 0.097,-0.41185 -0.23763,-0.74227 -0.74989,-0.74227 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.321912,0 c -0.51226,0 -0.999622,0.33043 -1.093072,0.74227 0,0 -0.34031,1.49995 -0.34031,1.49995 -0.0951,0.41915 0.2462,0.75778 0.765582,0.75778 0,0 4.6875,0 4.6875,0 0.51936,0 1.00417,-0.33863 1.08671,-0.75778 0,0 0.29536,-1.49995 0.29536,-1.49995 0.0811,-0.41185 -0.26623,-0.74227 -0.77848,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.98689,0.33042 -1.06447,0.74227 0,0 -0.28252,1.49995 -0.28252,1.49995 -0.079,0.41915 0.27539,0.75778 0.79477,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 0.99113,-0.33863 1.05752,-0.75778 0,0 0.23758,-1.49995 0.23758,-1.49995 0.0652,-0.41185 -0.29483,-0.74227 -0.80709,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.97416,0.33042 -1.03587,0.74227 0,0 -0.22474,1.49995 -0.22474,1.49995 -0.0628,0.41915 0.30459,0.75778 0.82397,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 0.97808,-0.33863 1.02833,-0.75779 0,0 0.17978,-1.49994 0.17978,-1.49994 C 123.13728,396.33042 122.76446,396 122.2522,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.96144,0.33042 -1.00728,0.74227 0,0 -0.16694,1.49995 -0.16694,1.49995 -0.0467,0.41915 0.33378,0.75778 0.85316,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 0.96504,-0.33863 0.99913,-0.75779 0,0 0.122,-1.49994 0.122,-1.49994 C 131.4719,396.33042 131.08637,396 130.57411,396 c 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32191,0 c -0.51225,0 -0.9487,0.33042 -0.97867,0.74227 0,0 -0.10916,1.49994 -0.10916,1.49994 -0.0305,0.41916 0.36298,0.75779 0.88236,0.75779 0,0 4.6875,0 4.6875,0 0.51937,0 0.95199,-0.33863 0.96993,-0.75779 0,0 0.0642,-1.49995 0.0642,-1.49995 C 139.8065,396.33042 139.40828,396 138.89602,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.93596,0.33042 -0.95008,0.74226 0,0 -0.0514,1.49995 -0.0514,1.49995 -0.0144,0.41916 0.39217,0.75779 0.91154,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.93895,-0.33863 0.94074,-0.75778 0,0 0.006,-1.49995 0.006,-1.49995 0.002,-0.41184 -0.40921,-0.74227 -0.92147,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.92323,0.33042 -0.92148,0.74226 0,0 0.006,1.49995 0.006,1.49995 0.002,0.41916 0.42137,0.75779 0.94074,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.92591,-0.33863 0.91155,-0.75778 0,0 -0.0514,-1.49995 -0.0514,-1.49995 -0.0141,-0.41185 -0.4378,-0.74227 -0.95007,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.91052,0.33043 -0.89289,0.74227 0,0 0.0642,1.49995 0.0642,1.49995 0.018,0.41915 0.45057,0.75778 0.96994,0.75778 0,0 4.6875,0 4.6875,0 0.51938,0 0.91286,-0.33863 0.88236,-0.75778 0,0 -0.10916,-1.49995 -0.10916,-1.49995 -0.03,-0.41185 -0.46641,-0.74227 -0.97868,-0.74227 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32191,0 c -0.51226,0 -0.89778,0.33042 -0.86428,0.74227 0,0 0.122,1.49995 0.122,1.49995 0.0341,0.41915 0.47976,0.75778 0.99913,0.75778 0,0 8.4375,0 8.4375,0 0.51938,0 0.89402,-0.33863 0.84019,-0.75778 0,0 -0.19263,-1.49995 -0.19263,-1.49995 C 176.84849,396.33042 176.39366,396 175.8814,396 c 0,0 -8.32192,0 -8.32192,0 0,0 0,0 0,0 m 17.5685,0 c -0.51226,0 -0.8709,0.33042 -0.80392,0.74226 0,0 0.244,1.49995 0.244,1.49995 0.0682,0.41916 0.5414,0.75779 1.06077,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.87227,-0.33863 0.79153,-0.75778 0,0 -0.28895,-1.49995 -0.28895,-1.49995 C 190.73961,396.33042 190.26353,396 189.75126,396 c 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32192,0 c -0.51227,0 -0.85818,0.33043 -0.77532,0.74227 0,0 0.30178,1.49995 0.30178,1.49995 0.0843,0.41915 0.5706,0.75778 1.08997,0.75778 0,0 4.6875,0 4.6875,0 0.51938,0 0.85923,-0.33863 0.76233,-0.75778 0,0 -0.34673,-1.49995 -0.34673,-1.49995 C 199.07423,396.33042 198.58544,396 198.07318,396 c 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32191,0 c -0.51226,0 -0.84544,0.33042 -0.74671,0.74227 0,0 0.35957,1.49995 0.35957,1.49995 0.10049,0.41915 0.59979,0.75778 1.11916,0.75778 0,0 4.68751,0 4.68751,0 0.51937,0 0.84617,-0.33863 0.73312,-0.75778 0,0 -0.40452,-1.49995 -0.40452,-1.49995 C 207.40887,396.33042 206.90736,396 206.39511,396 c 0,0 -4.6233,0 -4.6233,0 0,0 0,0 0,0 m 11.09589,0 c -0.51226,0 -0.82846,0.33042 -0.70858,0.74227 0,0 0.43662,1.49994 0.43662,1.49994 0.12202,0.41916 0.63872,0.75779 1.15809,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.82878,-0.33863 0.6942,-0.75779 0,0 -0.48157,-1.49995 -0.48157,-1.49995 C 218.52174,396.33042 218.00325,396 217.49099,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.81573,0.33042 -0.67999,0.74226 0,0 0.49442,1.49995 0.49442,1.49995 0.13816,0.41916 0.66791,0.75779 1.18728,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.81574,-0.33863 0.66501,-0.75778 0,0 -0.53936,-1.49995 -0.53936,-1.49995 C 226.85638,396.33043 226.32517,396 225.81291,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.80301,0.33043 -0.6514,0.74227 0,0 0.5522,1.49995 0.5522,1.49995 0.15433,0.41915 0.69712,0.75778 1.21649,0.75778 0,0 4.6875,0 4.6875,0 0.51938,0 0.80269,-0.33863 0.63582,-0.75778 0,0 -0.59716,-1.49995 -0.59716,-1.49995 C 235.19103,396.33042 234.64709,396 234.13483,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0" - id="path3525" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3784);fill-opacity:1;stroke:none;enable-background:new" - d="m 54.028132,400 c -0.523009,0 -1.09378,0.33823 -1.28125,0.75 0,0 -0.6875,1.5 -0.6875,1.5 -0.190879,0.41924 0.09455,0.75 0.625,0.75 10e-7,0 11.46875,0 11.46875,0 0.53043,0 1.08532,-0.33076 1.25,-0.75 -10e-7,0 0.59375,-1.5 0.59375,-1.5 0.16174,-0.41177 -0.13325,-0.75 -0.65625,-0.75 10e-7,0 -11.3125,0 -11.3125,0 z m 15.09375,0 c -0.523008,0 -1.06068,0.33823 -1.21875,0.75 0,0 -0.59375,1.5 -0.59375,1.5 -0.160941,0.41924 0.15707,0.75 0.6875,0.75 -4e-6,0 4.78125,0 4.78125,0 0.530433,0 1.07092,-0.33076 1.21875,-0.75 -10e-7,0 0.53125,-1.5 0.53125,-1.5 0.145203,-0.41177 -0.16449,-0.75 -0.6875,-0.75 -10e-7,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523003,0 -1.04598,0.33823 -1.1875,0.75 -2e-6,0 -0.53125,1.5 -0.53125,1.5 -0.144088,0.41924 0.15707,0.75 0.6875,0.75 2e-6,0 4.8125,0 4.8125,0 0.530431,0 1.05651,-0.33076 1.1875,-0.75 -2e-6,0 0.46875,-1.5 0.46875,-1.5 0.128662,-0.41177 -0.19574,-0.75 -0.71875,-0.75 10e-7,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523009,0 -1.06251,0.33823 -1.1875,0.75 2e-6,0 -0.4375,1.5 -0.4375,1.5 -0.127249,0.41924 0.18832,0.75 0.71875,0.75 -3e-6,0 4.78125,0 4.78125,0 0.530423,0 1.07335,-0.33076 1.1875,-0.75 0,0 0.40625,-1.5 0.40625,-1.5 0.112118,-0.41177 -0.227,-0.75 -0.75,-0.75 -3e-6,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523007,0 -1.04781,0.33823 -1.15625,0.75 10e-7,0 -0.375,1.5 -0.375,1.5 -0.11041,0.41924 0.21958,0.75 0.75,0.75 -3e-6,0 4.78125,0 4.78125,0 0.530418,0 1.02769,-0.33076 1.125,-0.75 -10e-7,0 0.374998,-1.5 0.374998,-1.5 0.0956,-0.41177 -0.258238,-0.75 -0.781248,-0.75 -10e-7,0 -4.71875,0 -4.71875,0 z m 8.499998,0 c -0.523,0 -1.0331,0.33823 -1.125,0.75 0,0 -0.34375,1.5 -0.34375,1.5 -0.0936,0.41924 0.28208,0.75 0.8125,0.75 0,0 4.78125,0 4.78125,0 0.53042,0 1.01329,-0.33076 1.09375,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.079,-0.41177 -0.25824,-0.75 -0.78125,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -1.01839,0.33823 -1.09375,0.75 0,0 -0.28125,1.5 -0.28125,1.5 -0.0767,0.41924 0.28208,0.75 0.8125,0.75 0,0 4.8125,0 4.8125,0 0.53042,0 0.99888,-0.33076 1.0625,-0.75 0,0 0.21875,-1.5 0.21875,-1.5 0.0625,-0.41177 -0.2895,-0.75 -0.8125,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.46875,0 c -0.52301,0 -0.97245,0.33823 -1.03125,0.75 0,0 -0.21875,1.5 -0.21875,1.5 -0.0599,0.41924 0.31333,0.75 0.84375,0.75 0,0 4.78125,0 4.78125,0 0.53042,0 1.01571,-0.33075 1.0625,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0459,-0.41179 -0.32074,-0.75 -0.84375,-0.75 0,0 -4.75,0 -4.75,0 z m 8.5,0 c -0.523,0 -0.95773,0.33823 -1,0.75 0,0 -0.15625,1.5 -0.15625,1.5 -0.043,0.41924 0.34457,0.75 0.875,0.75 0,0 4.78125,0 4.78125,0 0.53044,0 0.97006,-0.33075 1,-0.75 1e-5,0 0.125,-1.5 0.125,-1.5 0.0294,-0.41177 -0.38324,-0.75 -0.90625,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -0.94302,0.33822 -0.96875,0.75 0,-10e-6 -0.0937,1.5 -0.0937,1.5 -0.0262,0.41925 0.37582,0.75 0.90625,0.75 0,0 4.78125,0 4.78125,0 0.53043,0 0.95565,-0.33076 0.96875,-0.75 1e-5,0 0.0625,-1.5 0.0625,-1.5 0.0129,-0.41177 -0.4145,-0.75 -0.9375,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -0.95956,0.33823 -0.96875,0.75 0,0 -0.0312,1.5 -0.0312,1.5 -0.009,0.41925 0.40707,0.75 0.9375,0.75 0,0 4.8125,0 4.8125,0 0.53043,0 0.94124,-0.33076 0.9375,-0.75 0,0 0,-1.5 0,-1.5 -0.004,-0.41177 -0.44574,-0.75 -0.96875,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523,0 -0.94485,0.33823 -0.9375,0.75 1e-5,0 0.0312,1.5 0.0312,1.5 0.007,0.41924 0.43832,0.75 0.96875,0.75 0,0 4.78125,0 4.78125,0 0.53043,0 0.95809,-0.33076 0.9375,-0.75 0,0 -0.0937,-1.5 -0.0937,-1.5 -0.0202,-0.41177 -0.44574,-0.75 -0.96875,-0.75 -1e-5,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52302,0 -0.93014,0.33823 -0.90625,0.75 -1e-5,0 0.0937,1.5 0.0937,1.5 0.0243,0.41924 0.46957,0.75 1,0.75 l 14.34375,0 c 0.53043,0 0.93114,-0.33076 0.875,-0.75 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0551,-0.41177 -0.50825,-0.75 -1.03125,-0.75 l -14.15625,0 z m 51.90625,0 c -0.523,0 -0.84374,0.33823 -0.71875,0.75 0,0 0.46875,1.5 0.46875,1.5 0.12725,0.41924 0.65708,0.75 1.1875,0.75 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.8591,-0.33076 0.71875,-0.75 1e-5,0 -0.5,-1.5 -0.5,-1.5 -0.13785,-0.41177 -0.69574,-0.75 -1.21875,-0.75 1e-5,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52302,0 -0.82902,0.33823 -0.6875,0.75 0,0 0.53125,1.5 0.53125,1.5 0.14408,0.41924 0.68833,0.75 1.21875,0.75 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.81345,-0.33075 0.65625,-0.75 0,0 -0.5625,-1.5 -0.5625,-1.5 -0.15438,-0.41177 -0.69575,-0.75 -1.21875,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -0.81432,0.33822 -0.65625,0.75 0,-10e-6 0.59375,1.5 0.59375,1.5 0.16095,0.41925 0.71958,0.75 1.25,0.75 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.79903,-0.33075 0.625,-0.75 0,0 -0.625,-1.5 -0.625,-1.5 -0.17093,-0.41177 -0.72699,-0.75 -1.25,-0.75 1e-5,0 -4.71875,0 -4.71875,0 z" - id="path3527" - sodipodi:nodetypes="cccccsccccccsccccccscscsccccscscccsccccsccccccscsccccccccccccccccccccccccccccsccccscccscccccccccccccscccccsccsccccccccccscscsccccsccccccscscccsc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3786);fill-opacity:1;stroke:none;enable-background:new" - d="m 51.903041,404.00001 c -0.53421,0 -1.12119,0.33025 -1.31681,0.74194 0,0 -0.7127,1.49993 -0.7127,1.49993 -0.19925,0.41932 0.0761,0.75812 0.61802,0.75812 0,0 15.65218,0 15.65218,0 0.54195,0 1.11084,-0.3388 1.27492,-0.75812 0,0 0.58694,-1.49993 0.58694,-1.49993 0.16109,-0.41169 -0.13976,-0.74194 -0.67398,-0.74194 0,0 -15.42857,0 -15.42857,0 0,0 0,0 0,0 m 19.28572,0 c -0.53422,0 -1.09043,0.33025 -1.24769,0.74194 0,0 -0.57296,1.49993 -0.57296,1.49993 -0.16017,0.41932 0.1467,0.75812 0.68866,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 1.09664,-0.3388 1.24315,-0.75812 0,0 0.52404,-1.49993 0.52404,-1.49993 0.14384,-0.41169 -0.17086,-0.74194 -0.70508,-0.74194 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -1.07658,0.33025 -1.21658,0.74194 0,0 -0.51008,1.49993 -0.51008,1.49993 -0.14259,0.41932 0.17849,0.75812 0.72045,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 1.08244,-0.3388 1.21136,-0.75812 0,0 0.46116,-1.49993 0.46116,-1.49993 0.12657,-0.41169 -0.20197,-0.74194 -0.73619,-0.74194 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -1.06274,0.33025 -1.18548,0.74194 0,0 -0.44718,1.49993 -0.44718,1.49993 -0.12502,0.41932 0.21027,0.75812 0.75222,0.75812 0,0 4.89131,0 4.89131,0 0.54195,0 1.06823,-0.3388 1.17957,-0.75812 0,0 0.39828,-1.49993 0.39828,-1.49993 0.10931,-0.41169 -0.23308,-0.74194 -0.76729,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -1.04889,0.33025 -1.15437,0.74194 0,0 -0.3843,1.49993 -0.3843,1.49993 -0.10744,0.41932 0.24205,0.75812 0.78401,0.75812 0,0 4.891309,0 4.891309,0 0.54195,0 1.05402,-0.3388 1.14778,-0.75812 0,0 0.33539,-1.49993 0.33539,-1.49993 0.0921,-0.41169 -0.26418,-0.74194 -0.79839,-0.74194 0,0 -4.821429,0 -4.821429,0 0,0 0,0 0,0 m 8.678579,0 c -0.53421,0 -1.03506,0.33025 -1.12327,0.74194 0,0 -0.32142,1.49993 -0.32142,1.49993 -0.0898,0.41932 0.27385,0.75812 0.81581,0.75812 0,0 4.89129,0 4.89129,0 0.54197,0 1.03982,-0.3388 1.11601,-0.75812 0,0 0.2725,-1.49993 0.2725,-1.49993 0.0748,-0.41169 -0.29528,-0.74194 -0.82949,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 M 114.58162,404 c -0.53421,10e-6 -1.02121,0.33026 -1.09217,0.74195 0,0 -0.25853,1.49993 -0.25853,1.49993 -0.0723,0.41932 0.30564,0.75812 0.8476,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 1.02561,-0.3388 1.08421,-0.75812 0,0 0.20962,-1.49993 0.20962,-1.49993 0.0575,-0.41169 -0.32639,-0.74194 -0.8606,-0.74194 0,0 -4.82143,-10e-6 -4.82143,-10e-6 0,0 0,0 0,0 m 8.67857,10e-6 c -0.53421,-10e-6 -1.00736,0.33025 -1.06106,0.74194 0,0 -0.19564,1.49993 -0.19564,1.49993 -0.0547,0.41932 0.33742,0.75812 0.87936,0.75812 0,0 4.89132,0 4.89132,0 0.54195,0 1.0114,-0.3388 1.05242,-0.75812 0,0 0.14674,-1.49993 0.14674,-1.49993 0.0403,-0.41169 -0.3575,-0.74194 -0.89171,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53421,0 -0.99351,0.33025 -1.02995,0.74194 0,0 -0.13276,1.49993 -0.13276,1.49993 -0.0371,0.41932 0.36919,0.75812 0.91116,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 0.99721,-0.3388 1.02065,-0.75812 0,0 0.0839,-1.49993 0.0839,-1.49993 0.023,-0.41169 -0.3886,-0.74194 -0.92282,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53421,0 -0.97967,0.33025 -0.99884,0.74194 0,0 -0.0699,1.49993 -0.0699,1.49993 -0.0195,0.41932 0.40099,0.75812 0.94295,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 0.983,-0.3388 0.98886,-0.75812 0,0 0.021,-1.49993 0.021,-1.49993 0.006,-0.41169 -0.4197,-0.74194 -0.95392,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53421,0 -0.96582,0.33025 -0.96774,0.74194 0,0 -0.007,1.49993 -0.007,1.49993 -0.002,0.41932 0.43277,0.75812 0.97472,0.75812 0,0 4.89131,0 4.89131,0 0.54196,0 0.96879,-0.3388 0.95707,-0.75812 0,0 -0.0419,-1.49993 -0.0419,-1.49993 -0.0115,-0.41169 -0.45081,-0.74195 -0.98503,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67858,0 c -0.53422,0 -0.95198,0.33025 -0.93664,0.74194 0,0 0.0559,1.49993 0.0559,1.49993 0.0156,0.41932 0.46456,0.75812 1.00651,0.75812 0,0 19.56522,0 19.56522,0 0.54195,0 0.93091,-0.3388 0.87231,-0.75812 0,0 -0.20962,-1.49993 -0.20962,-1.49993 -0.0575,-0.41169 -0.53377,-0.74194 -1.06797,-0.74194 0,0 -19.28571,0 -19.28571,0 0,0 0,0 0,0 m 37.60714,0 c -0.53422,0 -0.89198,0.33025 -0.80185,0.74194 0,0 0.32841,1.49993 0.32841,1.49993 0.0918,0.41932 0.60229,0.75812 1.14424,0.75812 0,0 4.89131,0 4.89131,0 0.54195,0 0.89303,-0.3388 0.78755,-0.75812 0,0 -0.37731,-1.49993 -0.37731,-1.49993 -0.10356,-0.41169 -0.61671,-0.74194 -1.15092,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 20.25,0 c -0.53423,0 -0.85968,0.33025 -0.72927,0.74194 0,0 0.47514,1.49993 0.47514,1.49993 0.13283,0.41932 0.67645,0.75812 1.21841,0.75812 0,0 4.89131,0 4.89131,0 0.54195,0 0.8599,-0.3388 0.71339,-0.75812 0,0 -0.52404,-1.49993 -0.52404,-1.49993 -0.14385,-0.41169 -0.6893,-0.74194 -1.22352,-0.74194 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -0.84583,0.33025 -0.69816,0.74194 0,0 0.53802,1.49993 0.53802,1.49993 0.15042,0.41932 0.70824,0.75812 1.2502,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 0.84569,-0.3388 0.68161,-0.75812 0,0 -0.58694,-1.49993 -0.58694,-1.49993 -0.16109,-0.41169 -0.72039,-0.74194 -1.2546,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -0.83198,0.33025 -0.66705,0.74194 0,0 0.60091,1.49993 0.60091,1.49993 0.16799,0.41932 0.74002,0.75812 1.28198,0.75812 0,0 4.8913,0 4.8913,0 0.54195,0 0.83148,-0.3388 0.64982,-0.75812 0,0 -0.64982,-1.49993 -0.64982,-1.49993 -0.17835,-0.41169 -0.7515,-0.74195 -1.28571,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0" - id="path3529" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3788);fill-opacity:1;stroke:none;enable-background:new" - d="m 49.781741,408 c -0.54591,0 -1.14928,0.33016 -1.35357,0.74176 0,0 -0.7445,1.49994 -0.7445,1.49994 -0.20817,0.41941 0.0696,0.7583 0.62362,0.7583 0,0 9,0 9,0 0.554,0 1.15007,-0.33889 1.33579,-0.7583 0,0 0.66421,-1.49994 0.66421,-1.49994 0.18226,-0.4116 -0.11102,-0.74176 -0.65694,-0.74176 0,0 -8.86861,0 -8.86861,0 0,0 0,0 0,0 m 12.81022,0 c -0.54591,0 -1.1284,0.33016 -1.30665,0.74176 0,0 -0.64961,1.49994 -0.64961,1.49994 -0.18164,0.41941 0.11759,0.7583 0.67159,0.7583 0,0 7,0 7,0 0.554,0 1.13193,-0.33889 1.2952,-0.7583 0,0 0.58392,-1.49994 0.58392,-1.49994 0.16023,-0.4116 -0.15073,-0.74176 -0.69664,-0.74176 0,0 -6.89781,0 -6.89781,0 0,0 0,0 0,0 m 10.83942,0 c -0.54592,0 -1.11072,0.33016 -1.26695,0.74176 0,0 -0.56932,1.49994 -0.56932,1.49994 -0.15919,0.41941 0.15818,0.7583 0.71218,0.7583 0,0 8,0 8,0 0.554,0 1.11214,-0.33889 1.25092,-0.7583 0,0 0.49633,-1.49994 0.49633,-1.49994 0.1362,-0.4116 -0.19404,-0.74176 -0.73995,-0.74176 0,0 -7.88321,0 -7.88321,0 0,0 0,0 0,0 m 11.82481,0 c -0.54591,0 -1.09144,0.33016 -1.22363,0.74176 0,0 -0.48174,1.49994 -0.48174,1.49994 -0.13469,0.41941 0.20247,0.7583 0.75647,0.7583 0,0 48.999999,0 48.999999,0 0.554,0 1.02473,-0.33889 1.05535,-0.7583 0,0 0.10948,-1.49994 0.10948,-1.49994 0.03,-0.4116 -0.38535,-0.74176 -0.93126,-0.74175 0,0 -48.284669,-10e-6 -48.284669,-10e-6 0,0 0,0 0,0 m 52.226289,0 c -0.54591,0 -1.0063,0.33016 -1.03234,0.74176 0,0 -0.0949,1.49994 -0.0949,1.49994 -0.0265,0.41941 0.39803,0.7583 0.95204,0.7583 0,0 7.99999,0 7.99999,0 0.55401,0 1.00494,-0.33889 1.01107,-0.7583 0,0 0.0219,-1.49994 0.0219,-1.49994 0.006,-0.4116 -0.42865,-0.74176 -0.97457,-0.74176 0,0 -7.8832,0 -7.8832,0 0,0 0,0 0,0 m 11.8248,0 c -0.54591,0 -0.987,0.33016 -0.98901,0.74176 0,0 -0.007,1.49994 -0.007,1.49994 -0.002,0.41941 0.44231,0.7583 0.9963,0.7583 0,0 7,0 7,0 0.55401,0 0.98681,-0.33889 0.97048,-0.7583 0,0 -0.0584,-1.49994 -0.0584,-1.49994 -0.016,-0.4116 -0.46835,-0.74176 -1.01428,-0.74176 0,0 -6.89781,0 -6.89781,0 0,0 0,0 0,0 m 10.83942,0 c -0.54591,0 -0.96934,0.33016 -0.94931,0.74176 0,0 0.073,1.49994 0.073,1.49994 0.0201,0.41941 0.48262,0.7583 1.03662,0.7583 0,0 7,0 7,0 0.55401,0 0.96867,-0.33889 0.92989,-0.7583 0,0 -0.13868,-1.49994 -0.13868,-1.49994 -0.038,-0.4116 -0.50806,-0.74176 -1.05397,-0.74176 0,0 -6.89782,0 -6.89782,0 0,0 0,0 0,0 m 10.83942,0 c -0.54592,0 -0.95167,0.33016 -0.90961,0.74176 0,0 0.15328,1.49994 0.15328,1.49994 0.0429,0.41941 0.52349,0.7583 1.07749,0.7583 0,0 7,0 7,0 0.554,0 0.95053,-0.33889 0.8893,-0.7583 0,0 -0.21897,-1.49994 -0.21897,-1.49994 -0.0601,-0.4116 -0.54777,-0.74175 -1.09367,-0.74176 0,0 -6.89782,0 -6.89782,0 0,0 0,0 0,0 m 16.75182,0 c -0.54591,0 -0.92435,0.33015 -0.84824,0.74176 0,0 0.27736,1.49994 0.27736,1.49994 0.0776,0.41941 0.58622,0.7583 1.14022,0.7583 0,0 5,0 5,0 0.55401,0 0.92579,-0.33889 0.83395,-0.7583 0,0 -0.32845,-1.49994 -0.32845,-1.49994 -0.0901,-0.4116 -0.60191,-0.74176 -1.14783,-0.74176 0,0 -4.92701,0 -4.92701,0 0,0 0,0 0,0 m 8.86861,0 c -0.54591,0 -0.90989,0.33016 -0.81575,0.74176 0,0 0.34305,1.49994 0.34305,1.49994 0.0959,0.41941 0.61943,0.7583 1.17343,0.7583 0,0 5.00001,0 5.00001,0 0.55399,0 0.91094,-0.33889 0.80073,-0.7583 0,0 -0.39414,-1.49994 -0.39414,-1.49994 -0.10816,-0.4116 -0.63441,-0.74175 -1.18031,-0.74176 0,0 -4.92702,0 -4.92702,0 0,0 0,0 0,0 m 8.86862,0 c -0.54592,0 -0.89544,0.33016 -0.78327,0.74176 0,0 0.40874,1.49994 0.40874,1.49994 0.11429,0.41941 0.65264,0.7583 1.20664,0.7583 0,0 5.00001,0 5.00001,0 0.55399,0 0.8961,-0.33889 0.76752,-0.7583 0,0 -0.45984,-1.49994 -0.45984,-1.49994 C 211.48879,408.33016 210.94809,408 210.40218,408 c 0,0 -4.92701,0 -4.92701,0 0,0 0,0 0,0 m 11.82481,0 c -0.54591,10e-6 -0.87615,0.33016 -0.73995,0.74176 0,0 0.49633,1.49994 0.49633,1.49994 0.13878,0.41941 0.69692,0.7583 1.25092,0.7583 0,0 14,0 14,0 0.55401,0 0.86147,-0.33889 0.69004,-0.7583 0,0 -0.61312,-1.49994 -0.61312,-1.49994 C 232.21596,408.33016 231.64152,408 231.0956,408 c 0,0 -13.79562,0 -13.79562,0 0,0 0,0 0,0 m 17.73723,0 c -0.54591,0 -0.84724,0.33016 -0.67498,0.74176 0,0 0.62771,1.49994 0.62771,1.49994 0.17552,0.41941 0.76334,0.7583 1.31734,0.7583 0,0 5,0 5,0 0.55401,0 0.84663,-0.33889 0.65683,-0.7583 0,0 -0.67881,-1.49994 -0.67881,-1.49994 C 241.09903,408.33016 240.51014,408 239.96423,408 c 0,0 -4.92702,0 -4.92702,0 0,0 0,0 0,0" - id="path3531" - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3790);fill-opacity:1;stroke:none;enable-background:new" - d="m 241.87787,404 c -0.53421,0 -0.81814,0.30153 -0.63594,0.67742 0,0 2.71396,5.59933 2.71396,5.59933 0.19472,0.40003 0.79739,0.72325 1.35139,0.72325 0,0 5.00001,0 5.00001,0 0.55399,0 0.83178,-0.32322 0.62361,-0.72325 0,0 -2.91394,-5.59933 -2.91394,-5.59933 C 247.82134,404.30153 247.23435,404 246.70013,404 c 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0" - id="path3533" - sodipodi:nodetypes="cccccccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient3792);fill-opacity:1;stroke:none;enable-background:new" - d="m 238.07345,396 c -0.51226,0 -0.79028,0.30198 -0.6228,0.67834 0,0 2.49171,5.5994 2.49171,5.5994 0.17778,0.39951 0.74843,0.72226 1.27885,0.72226 0,0 4.78724,0 4.78724,0 0.53042,0 0.80324,-0.32276 0.61236,-0.72226 0,0 -2.67531,-5.5994 -2.67531,-5.5994 C 243.76567,396.30197 243.20899,396 242.69674,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0" - id="path3535" - sodipodi:nodetypes="cccccccccc" - inkscape:connector-curvature="0" /> - </g> - <path - style="display:inline;opacity:0.33333333;fill:url(#linearGradient3794);fill-opacity:1;stroke:none;enable-background:new" - d="m 50.1875,238.03125 c 0.02007,0.0973 0.01137,0.19758 -0.03125,0.3125 0,0 -0.562503,1.5 -0.5625,1.5 -0.156249,0.42132 -0.688407,0.75 -1.1875,0.75 0,0 -4.499999,0 -4.5,0 -0.07438,0 -0.124273,-0.0174 -0.1875,-0.0312 0.04048,0.25418 0.295631,0.4375 0.65625,0.4375 2e-6,0 4.5,0 4.5,0 0.499094,0 1.031251,-0.32868 1.1875,-0.75 -2e-6,0 0.5625,-1.5 0.5625,-1.5 0.130738,-0.35253 -0.07513,-0.63845 -0.4375,-0.71875 z m 16.03125,0 c 0.02727,0.0967 0.03425,0.19858 0,0.3125 0,0 -0.468747,1.5 -0.46875,1.5 -0.126643,0.42132 -0.625904,0.75 -1.125,0.75 0,0 -4.499997,0 -4.5,0 -0.07886,0 -0.150973,-0.0158 -0.21875,-0.0312 0.06009,0.25558 0.325655,0.4375 0.6875,0.4375 0,0 4.5,0 4.5,0 0.499093,0 0.998357,-0.32868 1.125,-0.75 0,0 0.46875,-1.5 0.46875,-1.5 0.104861,-0.34882 -0.105759,-0.63483 -0.46875,-0.71875 z m 16.03125,0 c 0.02829,0.0967 0.02624,0.19858 0,0.3125 0,0 -0.343746,1.5 -0.34375,1.5 -0.09704,0.42132 -0.56341,0.75 -1.0625,0.75 0,0 -4.499994,0 -4.5,0 -0.08984,0 -0.172788,-0.0113 -0.25,-0.0312 0.08088,0.25558 0.356912,0.4375 0.71875,0.4375 3e-6,0 4.5,0 4.5,0 0.499087,0 0.965462,-0.32868 1.0625,-0.75 10e-7,0 0.34375,-1.5 0.34375,-1.5 0.08035,-0.34882 -0.111673,-0.63483 -0.46875,-0.71875 z m -8,0.0312 c 0.02375,0.0897 0.0275,0.17768 0,0.28125 0,0 -0.406249,1.5 -0.40625,1.5 -0.111852,0.42132 -0.625904,0.75 -1.125,0.75 0,0 -4.499995,0 -4.5,0 -0.07886,0 -0.151537,-0.0158 -0.21875,-0.0312 0.06145,0.25558 0.325655,0.4375 0.6875,0.4375 2e-6,0 4.5,0 4.5,0 0.499093,0 1.013148,-0.32868 1.125,-0.75 -2e-6,0 0.40625,-1.5 0.40625,-1.5 0.08975,-0.33804 -0.121782,-0.59379 -0.46875,-0.6875 z m 16.03125,0 c 0.02511,0.0897 0.0202,0.17768 0,0.28125 0,0 -0.28125,1.5 -0.28125,1.5 -0.08224,0.42132 -0.563399,0.75 -1.0625,0.75 0,0 -4.499997,-1e-5 -4.5,0 -0.08984,0 -0.173488,-0.0113 -0.25,-0.0312 0.08224,0.25558 0.356898,0.43751 0.71875,0.4375 0,-1e-5 4.5,0 4.5,0 0.499098,0 0.98026,-0.32868 1.0625,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.06594,-0.33804 -0.12813,-0.59379 -0.46875,-0.6875 z m 11.5625,0 c 0.0319,0.0897 0.0462,0.17768 0.0312,0.28125 0,0 -0.21875,1.5 -0.21875,1.5 -0.0609,0.42132 -0.50091,0.75 -1,0.75 0,0 -4.5,-1e-5 -4.5,0 -0.10281,0 -0.19318,-0.0367 -0.28125,-0.0625 0.09258,0.27019 0.37568,0.46876 0.75,0.46875 0,-1e-5 4.5,0 4.5,0 0.49909,0 0.93914,-0.32868 1,-0.75 0,0 0.21875,-1.5 0.21875,-1.5 0.0475,-0.32893 -0.16492,-0.58634 -0.5,-0.6875 z m 8.03125,0 c 0.0326,0.0897 0.0426,0.17768 0.0312,0.28125 0,0 -0.15625,1.5 -0.15625,1.5 -0.046,0.42132 -0.46965,0.75 -0.96875,0.75 0,0 -4.53125,-1e-5 -4.53125,0 -0.10281,0 -0.19404,-0.0367 -0.28125,-0.0625 0.0947,0.27019 0.37568,0.46875 0.75,0.46875 0,-1e-5 4.53125,0 4.53125,0 0.4991,0 0.9227,-0.32868 0.96875,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0359,-0.32893 -0.16823,-0.58634 -0.5,-0.6875 z m 8.03125,0 c 0.0362,0.0897 0.0389,0.17768 0.0312,0.28125 0,0 -0.0937,1.5 -0.0937,1.5 -0.0312,0.42132 -0.46966,0.75 -0.96875,0.75 0,0 -4.5,0 -4.5,0 -0.11379,0 -0.2166,-0.0311 -0.3125,-0.0625 0.10553,0.27018 0.40693,0.46874 0.78125,0.46875 0,0 4.5,0 4.5,0 0.49909,0 0.93751,-0.32868 0.96875,-0.75 0,0 0.0937,-1.5 0.0937,-1.5 0.0237,-0.31982 -0.1793,-0.57963 -0.5,-0.6875 z m 8,0 c 0.0399,0.0897 0.0666,0.17768 0.0625,0.28125 0,0 -0.0625,1.5 -0.0625,1.5 -0.0164,0.42132 -0.40715,0.75 -0.90625,0.75 0,0 -4.53125,0 -4.53125,0 -0.11379,0 -0.2151,-0.0311 -0.3125,-0.0625 0.11639,0.27018 0.40693,0.46874 0.78125,0.46875 0,0 4.53125,0 4.53125,0 0.4991,0 0.88981,-0.32868 0.90625,-0.75 0,0 0.0625,-1.5 0.0625,-1.5 0.0125,-0.31982 -0.20542,-0.57963 -0.53125,-0.6875 z m 11.59375,0 c 0.0438,0.0897 0.0612,0.17768 0.0625,0.28125 0,0 0.0312,1.5 0.0312,1.5 0.005,0.42132 -0.40715,0.75 -0.90625,0.75 0,0 -4.5,0 -4.5,0 -0.12477,0 -0.23777,-0.0251 -0.34375,-0.0625 0.12812,0.27018 0.43818,0.46874 0.8125,0.46875 0,0 4.5,0 4.5,0 0.4991,0 0.91119,-0.32868 0.90625,-0.75 0,0 -0.0312,-1.5 -0.0312,-1.5 -0.004,-0.3107 -0.21707,-0.57366 -0.53125,-0.6875 z m 8,0 c 0.0474,0.0897 0.0889,0.17768 0.0937,0.28125 0,0 0.0625,1.5 0.0625,1.5 0.0197,0.42132 -0.34465,0.74999 -0.84375,0.75 0,0 -4.50001,0 -4.5,0 -0.13476,0 -0.25723,-0.0192 -0.375,-0.0625 0.14783,0.27019 0.46943,0.46875 0.84375,0.46875 -1e-5,0 4.5,0 4.5,0 0.4991,-1e-5 0.86349,-0.32868 0.84375,-0.75 -1e-5,0 -0.0625,-1.5 -0.0625,-1.5 -0.0146,-0.3107 -0.24291,-0.57366 -0.5625,-0.6875 z m 8.03125,0.0312 c 0.0425,0.0823 0.0861,0.15679 0.0937,0.25 0,0 0.125,1.5 0.125,1.5 0.0345,0.42132 -0.34465,0.74999 -0.84375,0.75 0,0 -4.49999,0 -4.5,0 -0.13475,0 -0.25853,-0.0192 -0.375,-0.0625 0.14994,0.27019 0.46943,0.46875 0.84375,0.46875 10e-6,0 4.5,0 4.5,0 0.4991,-1e-5 0.87828,-0.32868 0.84375,-0.75 0,0 -0.125,-1.5 -0.125,-1.5 -0.0245,-0.29827 -0.25743,-0.5354 -0.5625,-0.65625 z m 8.03125,0 c 0.0457,0.0823 0.0829,0.15679 0.0937,0.25 0,0 0.18749,1.5 0.1875,1.5 0.0493,0.42132 -0.31342,0.75 -0.8125,0.75 0,0 -4.5,0 -4.5,0 -0.14973,0 -0.30477,-0.041 -0.4375,-0.0937 0.16236,0.28495 0.51945,0.5 0.90625,0.5 0,0 4.5,0 4.5,0 0.49908,0 0.86184,-0.32868 0.8125,-0.75 -1e-5,0 -0.1875,-1.5 -0.1875,-1.5 -0.0339,-0.28999 -0.26475,-0.53145 -0.5625,-0.65625 z m 29.40625,0 c 0.0531,0.0799 0.10289,0.16011 0.125,0.25 0,0 0.375,1.5 0.375,1.5 0.10362,0.42132 -0.21966,0.75 -0.71875,0.75 0,0 -4.50001,-1e-5 -4.5,0 -0.17469,0 -0.34719,-0.0546 -0.5,-0.125 0.18196,0.30388 0.56613,0.53126 0.96875,0.53125 -1e-5,-1e-5 4.5,0 4.5,0 0.49909,0 0.82237,-0.32868 0.71875,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.0693,-0.2817 -0.29327,-0.52805 -0.59375,-0.65625 z m -16.03125,0.0312 c 0.0408,0.0724 0.0797,0.13867 0.0937,0.21875 0,0 0.28126,1.5 0.28125,1.5 0.074,0.42132 -0.28215,0.74999 -0.78125,0.75 0,0 -4.50001,0 -4.5,0 -0.15971,0 -0.32744,-0.0342 -0.46875,-0.0937 0.17322,0.29001 0.54647,0.5 0.9375,0.5 -1e-5,0 4.5,0 4.5,0 0.4991,-1e-5 0.85525,-0.32868 0.78125,-0.75 10e-6,0 -0.28125,-1.5 -0.28125,-1.5 -0.0478,-0.2724 -0.27888,-0.49363 -0.5625,-0.625 z m 8.03125,0 c 0.0418,0.0724 0.0769,0.13867 0.0937,0.21875 0,0 0.31249,1.5 0.3125,1.5 0.0888,0.42132 -0.21968,0.75 -0.71875,0.75 0,0 -4.53124,0 -4.53125,0 -0.15971,0 -0.32902,-0.0342 -0.46875,-0.0937 0.17641,0.29001 0.54645,0.5 0.9375,0.5 10e-6,0 4.53125,0 4.53125,0 0.49907,0 0.80756,-0.32868 0.71875,-0.75 -1e-5,0 -0.3125,-1.5 -0.3125,-1.5 -0.0568,-0.26928 -0.2868,-0.49272 -0.5625,-0.625 z M 48.5,242.03125 c 0.01899,0.0973 0.01335,0.19823 -0.03125,0.3125 0,0 -0.593752,1.5 -0.59375,1.5 -0.16359,0.41909 -0.678721,0.75 -1.1875,0.75 0,0 -4.59375,0 -4.59375,0 -0.08038,0 -0.150185,-0.0157 -0.21875,-0.0312 0.04535,0.25537 0.318671,0.4375 0.6875,0.4375 10e-7,0 4.59375,0 4.59375,0 0.50878,0 1.02391,-0.33091 1.1875,-0.75 -10e-7,0 0.59375,-1.5 0.59375,-1.5 0.138923,-0.35591 -0.05869,-0.64352 -0.4375,-0.71875 z m 8.1875,0 c 0.02228,0.0966 0.0088,0.19922 -0.03125,0.3125 0,0 -0.531246,1.5 -0.53125,1.5 -0.14808,0.41909 -0.678725,0.75 -1.1875,0.75 0,0 -4.593751,0 -4.59375,0 -0.06919,0 -0.127418,-0.0196 -0.1875,-0.0312 0.04793,0.25399 0.288611,0.4375 0.65625,0.4375 0,0 4.59375,0 4.59375,0 0.508772,0 1.03942,-0.33091 1.1875,-0.75 10e-7,0 0.53125,-1.5 0.53125,-1.5 0.122554,-0.34685 -0.07375,-0.63435 -0.4375,-0.71875 z m 8.1875,0.0312 c 0.01913,0.0896 0.0013,0.17827 -0.03125,0.28125 0,0 -0.468743,1.5 -0.46875,1.5 -0.1326,0.41909 -0.64747,0.75 -1.15625,0.75 0,0 -4.593745,0 -4.59375,0 -0.08039,0 -0.150048,-0.0157 -0.21875,-0.0312 0.05722,0.25537 0.318635,0.4375 0.6875,0.4375 2e-6,0 4.59375,0 4.59375,0 0.508777,0 1.02365,-0.33091 1.15625,-0.75 4e-6,0 0.46875,-1.5 0.46875,-1.5 0.106339,-0.33613 -0.09098,-0.59328 -0.4375,-0.6875 z m 8.15625,0 c 0.02277,0.0896 0.02877,0.17827 0,0.28125 0,0 -0.4375,1.5 -0.4375,1.5 -0.1171,0.41909 -0.616215,0.75 -1.125,0.75 0,0 -4.593749,0 -4.59375,0 -0.09158,0 -0.172816,-0.0112 -0.25,-0.0312 0.06768,0.25537 0.349892,0.4375 0.71875,0.4375 -2e-6,0 4.59375,0 4.59375,0 0.508782,0 1.0079,-0.33091 1.125,-0.75 -3e-6,0 0.4375,-1.5 0.4375,-1.5 0.09391,-0.33613 -0.117879,-0.59328 -0.46875,-0.6875 z m 8.15625,0 c 0.02348,0.0896 0.02498,0.17827 0,0.28125 0,0 -0.343745,1.5 -0.34375,1.5 -0.10159,0.41909 -0.584977,0.75 -1.09375,0.75 0,0 -4.593744,0 -4.59375,0 -0.09158,0 -0.171888,-0.0112 -0.25,-0.0312 0.07814,0.25537 0.349885,0.4375 0.71875,0.4375 3e-6,0 4.59375,0 4.59375,0 0.50877,0 0.99216,-0.33091 1.09375,-0.75 2e-6,0 0.34375,-1.5 0.34375,-1.5 0.08152,-0.33613 -0.121178,-0.59328 -0.46875,-0.6875 z m 8.1875,0 c 0.02713,0.0896 0.02115,0.17827 0,0.28125 0,0 -0.312495,1.5 -0.3125,1.5 -0.0861,0.41909 -0.553707,0.75 -1.0625,0.75 0,0 -4.593746,0 -4.59375,0 -0.104809,0 -0.19316,-0.0365 -0.28125,-0.0625 0.07788,0.26987 0.368415,0.46875 0.75,0.46875 10e-7,0 4.59375,0 4.59375,0 0.50879,0 0.9764,-0.33091 1.0625,-0.75 2e-6,0 0.3125,-1.5 0.3125,-1.5 0.06717,-0.32707 -0.133937,-0.58581 -0.46875,-0.6875 z m 8.15625,0 c 0.03077,0.0896 0.0486,0.17827 0.03125,0.28125 0,0 -0.25,1.5 -0.25,1.5 -0.0706,0.41909 -0.52248,0.75 -1.03125,0.75 0,0 -4.59375,0 -4.59375,0 -0.10481,0 -0.19196,-0.0365 -0.28125,-0.0625 0.08885,0.26987 0.36841,0.46875 0.75,0.46875 0,0 4.59375,0 4.59375,0 0.50877,0 0.96065,-0.33091 1.03125,-0.75 0,0 0.25,-1.5 0.25,-1.5 0.0551,-0.32707 -0.16051,-0.58581 -0.5,-0.6875 z m 8.1875,0 c 0.0344,0.0896 0.0448,0.17827 0.0312,0.28125 0,0 -0.1875,1.5 -0.1875,1.5 -0.0551,0.41909 -0.52247,0.75 -1.03125,0.75 0,0 -4.59375,0 -4.59375,0 -0.10481,0 -0.19287,-0.0365 -0.28125,-0.0625 0.09103,0.26987 0.36841,0.46875 0.75,0.46875 0,0 4.59375,0 4.59375,0 0.50878,0 0.97614,-0.33091 1.03125,-0.75 0,0 0.1875,-1.5 0.1875,-1.5 0.0418,-0.31801 -0.1721,-0.57909 -0.5,-0.6875 z m 8.1875,0 c 0.0381,0.0896 0.041,0.17827 0.0312,0.28125 0,0 -0.15625,1.5 -0.15625,1.5 -0.0396,0.41909 -0.45998,0.75 -0.96875,0.75 0,0 -4.59375,0 -4.59375,0 -0.12719,0 -0.23676,-0.0249 -0.34375,-0.0625 0.11079,0.26987 0.43093,0.46875 0.8125,0.46875 0,0 4.59375,0 4.59375,0 0.50877,0 0.92914,-0.33091 0.96875,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0292,-0.30895 -0.18299,-0.57311 -0.5,-0.6875 z m 8.15625,0 c 0.0417,0.0896 0.0684,0.17827 0.0625,0.28125 0,0 -0.0937,1.5 -0.0937,1.5 -0.0241,0.41909 -0.45997,0.75 -0.96875,0.75 0,0 -4.59375,0 -4.59375,0 -0.1272,0 -0.23797,-0.0249 -0.34375,-0.0625 0.11297,0.26987 0.43091,0.46875 0.8125,0.46875 0,0 4.59375,0 4.59375,0 0.50878,0 0.94464,-0.33091 0.96875,-0.75 0,0 0.0937,-1.5 0.0937,-1.5 0.0178,-0.30895 -0.20902,-0.57311 -0.53125,-0.6875 z m 8.15625,0 c 0.0424,0.0896 0.0645,0.17827 0.0625,0.28125 0,0 -0.0312,1.5 -0.0312,1.5 -0.009,0.41909 -0.39746,0.75 -0.90625,0.75 0,0 -4.59375,0 -4.59375,0 -0.12719,0 -0.26457,-0.0249 -0.375,-0.0625 0.13273,0.26987 0.46217,0.46875 0.84375,0.46875 0,0 4.59375,0 4.59375,0 0.50879,0 0.89764,-0.33091 0.90625,-0.75 0,0 0.0312,-1.5 0.0312,-1.5 0.006,-0.30895 -0.21269,-0.57311 -0.53125,-0.6875 z m 8.1875,0.0312 c 0.0374,0.0817 0.0609,0.15792 0.0625,0.25 0,0 0.0312,1.5 0.0312,1.5 0.007,0.41909 -0.39749,0.75 -0.90625,0.75 0,0 -4.59374,0 -4.59375,0 -0.13737,0 -0.25906,-0.019 -0.375,-0.0625 0.13493,0.26987 0.46216,0.46875 0.84375,0.46875 10e-6,0 4.59375,0 4.59375,0 0.50876,0 0.91314,-0.33091 0.90625,-0.75 0,0 -0.0312,-1.5 -0.0312,-1.5 -0.005,-0.29535 -0.23024,-0.53422 -0.53125,-0.65625 z m 8.15625,0 c 0.0411,0.0822 0.0888,0.15732 0.0937,0.25 0,0 0.0937,1.5 0.0937,1.5 0.0224,0.41909 -0.39747,0.75 -0.90625,0.75 0,0 -4.5625,0 -4.5625,0 -0.1272,0 -0.26406,-0.0249 -0.375,-0.0625 0.14587,0.26987 0.46216,0.46875 0.84375,0.46875 0,0 4.5625,0 4.5625,0 0.50878,0 0.92864,-0.33091 0.90625,-0.75 0,0 -0.0937,-1.5 -0.0937,-1.5 -0.0159,-0.29659 -0.25385,-0.53486 -0.5625,-0.65625 z m 15.46875,0 c 0.0477,0.0822 0.0823,0.15732 0.0937,0.25 0,0 0.15625,1.5 0.15625,1.5 0.0517,0.41909 -0.30373,0.75 -0.8125,0.75 0,0 -11.9375,0 -11.9375,0 -0.13799,0 -0.28589,-0.0187 -0.40625,-0.0625 0.15685,0.26987 0.49342,0.46875 0.875,0.46875 0,0 11.9375,0 11.9375,0 0.50877,0 0.86416,-0.33091 0.8125,-0.75 0,0 -0.15625,-1.5 -0.15625,-1.5 -0.0353,-0.2866 -0.25844,-0.53014 -0.5625,-0.65625 z m 13.625,0 c 0.0485,0.0796 0.0772,0.16082 0.0937,0.25 0,0 0.28126,1.5 0.28125,1.5 0.0775,0.41909 -0.27247,0.75 -0.78125,0.75 0,0 -4.59375,0 -4.59375,0 -0.16281,0 -0.32767,-0.0339 -0.46875,-0.0937 0.17163,0.28953 0.53887,0.5 0.9375,0.5 0,0 4.59375,0 4.59375,0 0.50878,0 0.85875,-0.33091 0.78125,-0.75 10e-6,0 -0.28125,-1.5 -0.28125,-1.5 -0.0518,-0.28011 -0.26528,-0.52752 -0.5625,-0.65625 z M 192,242.125 c 0.0491,0.073 0.10412,0.13811 0.125,0.21875 0,0 0.37499,1.5 0.375,1.5 0.10849,0.41909 -0.20998,0.75 -0.71875,0.75 0,0 -4.59375,0 -4.59375,0 -0.19333,0 -0.36416,-0.074 -0.53125,-0.15625 0.1818,0.31708 0.57777,0.5625 1,0.5625 0,0 4.59375,0 4.59375,0 0.50877,0 0.82724,-0.33091 0.71875,-0.75 -1e-5,0 -0.375,-1.5 -0.375,-1.5 -0.0681,-0.2631 -0.30185,-0.491 -0.59375,-0.625 z m -8.15625,0.0312 c 0.0372,0.0645 0.0782,0.11743 0.0937,0.1875 0,0 0.31249,1.5 0.3125,1.5 0.093,0.41909 -0.24123,0.75 -0.75,0.75 0,0 -4.59375,0 -4.59375,0 -0.17807,0 -0.346,-0.0543 -0.5,-0.125 0.17676,0.30326 0.55832,0.53125 0.96875,0.53125 0,0 4.59375,0 4.59375,0 0.50877,0 0.84299,-0.33091 0.75,-0.75 -1e-5,0 -0.3125,-1.5 -0.3125,-1.5 -0.0567,-0.2554 -0.2885,-0.45811 -0.5625,-0.59375 z m 19.09375,0 c 0.04,0.062 0.0731,0.12046 0.0937,0.1875 0,0 0.4375,1.5 0.4375,1.5 0.12915,0.41909 -0.14747,0.75 -0.65625,0.75 0,0 -4.59376,0 -4.59375,0 -0.20735,0 -0.40867,-0.0628 -0.59375,-0.15625 0.20102,0.32148 0.63652,0.5625 1.0625,0.5625 -1e-5,0 4.59375,0 4.59375,0 0.50878,0 0.7854,-0.33091 0.65625,-0.75 0,0 -0.4375,-1.5 -0.4375,-1.5 -0.0752,-0.24406 -0.29474,-0.4565 -0.5625,-0.59375 z m 8.15625,0 c 0.0411,0.062 0.0706,0.12046 0.0937,0.1875 0,0 0.53125,1.5 0.53125,1.5 0.14465,0.41909 -0.14747,0.75 -0.65625,0.75 0,0 -4.59375,0 -4.59375,0 -0.20735,0 -0.41067,-0.0628 -0.59375,-0.15625 0.20658,0.32148 0.63652,0.5625 1.0625,0.5625 0,0 4.59375,0 4.59375,0 0.50878,0 0.8009,-0.33091 0.65625,-0.75 0,0 -0.53125,-1.5 -0.53125,-1.5 -0.0842,-0.24405 -0.2976,-0.45649 -0.5625,-0.59375 z m 8.15625,0 c 0.045,0.0633 0.0988,0.11885 0.125,0.1875 0,0 0.59375,1.5 0.59375,1.5 0.16015,0.41909 -0.11621,0.75 -0.625,0.75 0,0 -4.59376,0 -4.59375,0 -0.20734,0 -0.40652,-0.0628 -0.59375,-0.15625 0.22031,0.31913 0.63853,0.5625 1.0625,0.5625 -1e-5,0 4.59375,0 4.59375,0 0.50879,0 0.78515,-0.33091 0.625,-0.75 0,0 -0.59375,-1.5 -0.59375,-1.5 -0.0933,-0.24405 -0.32277,-0.45649 -0.59375,-0.59375 z m 8.21875,0.0312 c 0.0357,0.0521 0.0705,0.1008 0.0937,0.15625 0,0 0.625,1.5 0.625,1.5 0.17565,0.41909 -0.085,0.75 -0.59375,0.75 0,0 -4.59375,0 -4.59375,0 -0.21074,0 -0.43124,-0.06 -0.625,-0.15625 0.23293,0.31913 0.66977,0.5625 1.09375,0.5625 0,0 4.59375,0 4.59375,0 0.50877,0 0.7694,-0.33091 0.59375,-0.75 0,0 -0.625,-1.5 -0.625,-1.5 -0.0943,-0.22501 -0.31393,-0.42463 -0.5625,-0.5625 z M 50.1875,246.03125 c 0.01808,0.0973 0.01326,0.19826 -0.03125,0.3125 0,0 -0.5625,1.5 -0.5625,1.5 -0.16329,0.41915 -0.730631,0.75 -1.25,0.75 0,0 -8.437501,0 -8.4375,0 -0.07064,0 -0.127001,-0.0196 -0.1875,-0.0312 0.03438,0.25399 0.280908,0.4375 0.65625,0.4375 0,0 8.4375,0 8.4375,0 0.51937,0 1.08671,-0.33085 1.25,-0.75 10e-7,0 0.5625,-1.5 0.5625,-1.5 0.138618,-0.35583 -0.0542,-0.64351 -0.4375,-0.71875 z m 8.375,0.0312 c 0.01766,0.0896 0.0049,0.17829 -0.03125,0.28125 0,0 -0.531249,1.5 -0.53125,1.5 -0.14714,0.41915 -0.699377,0.75 -1.21875,0.75 0,0 -4.687501,0 -4.6875,0 -0.08206,0 -0.148733,-0.0157 -0.21875,-0.0312 0.05454,0.25399 0.312195,0.4375 0.6875,0.4375 0,0 4.6875,0 4.6875,0 0.51937,0 1.07161,-0.33085 1.21875,-0.75 -2e-6,0 0.53125,-1.5 0.53125,-1.5 0.117976,-0.33606 -0.0848,-0.59326 -0.4375,-0.6875 z m 8.34375,0 c 0.0184,0.0896 9.29e-4,0.17829 -0.03125,0.28125 0,0 -0.468743,1.5 -0.46875,1.5 -0.13097,0.41915 -0.668127,0.75 -1.1875,0.75 0,0 -4.687497,0 -4.6875,0 -0.09349,0 -0.171415,-0.0112 -0.25,-0.0312 C 60.345126,248.81788 60.62345,249 61,249 c 0,0 4.6875,0 4.6875,0 0.51937,0 1.05653,-0.33085 1.1875,-0.75 4e-6,0 0.46875,-1.5 0.46875,-1.5 0.105028,-0.33606 -0.08825,-0.59326 -0.4375,-0.6875 z m 8.3125,0 c 0.02207,0.0896 0.02821,0.17829 0,0.28125 0,0 -0.406243,1.5 -0.40625,1.5 -0.11484,0.41915 -0.636877,0.75 -1.15625,0.75 0,0 -4.687497,0 -4.6875,0 -0.09349,0 -0.172179,-0.0112 -0.25,-0.0312 0.06536,0.25538 0.3422,0.4375 0.71875,0.4375 0,0 4.6875,0 4.6875,0 0.51937,0 1.04141,-0.33085 1.15625,-0.75 4e-6,0 0.40625,-1.5 0.40625,-1.5 0.09209,-0.33606 -0.115287,-0.59326 -0.46875,-0.6875 z m 8.34375,0 c 0.02575,0.0896 0.02425,0.17829 0,0.28125 0,0 -0.343746,1.5 -0.34375,1.5 -0.09868,0.41915 -0.605627,0.75 -1.125,0.75 0,0 -4.687497,0 -4.6875,0 -0.09349,0 -0.171282,-0.0112 -0.25,-0.0312 0.07588,0.25538 0.3422,0.4375 0.71875,0.4375 0,0 4.6875,0 4.6875,0 0.51937,0 1.02632,-0.33085 1.125,-0.75 10e-7,0 0.34375,-1.5 0.34375,-1.5 0.07702,-0.327 -0.128654,-0.58579 -0.46875,-0.6875 z m 8.3125,0 c 0.02942,0.0896 0.05153,0.17829 0.03125,0.28125 0,0 -0.28125,1.5 -0.28125,1.5 -0.08254,0.41915 -0.57439,0.75 -1.09375,0.75 0,0 -4.687495,0 -4.6875,0 -0.106993,0 -0.19268,-0.0365 -0.28125,-0.0625 0.07583,0.26988 0.360464,0.46875 0.75,0.46875 2e-6,0 4.6875,0 4.6875,0 0.51936,0 1.01121,-0.33085 1.09375,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.06439,-0.327 -0.15538,-0.58579 -0.5,-0.6875 z m 8.375,0 c 0.0331,0.0896 0.0476,0.17829 0.0312,0.28125 0,0 -0.25,1.5 -0.25,1.5 -0.06639,0.41915 -0.54313,0.75 -1.0625,0.75 0,0 -4.6875,0 -4.6875,0 -0.10699,0 -0.19152,-0.0365 -0.28125,-0.0625 0.08689,0.26988 0.36047,0.46875 0.75,0.46875 0,0 4.6875,0 4.6875,0 0.51937,0 0.99611,-0.33085 1.0625,-0.75 0,0 0.25,-1.5 0.25,-1.5 0.0503,-0.31794 -0.16761,-0.57907 -0.5,-0.6875 z m 8.34375,0 c 0.0368,0.0896 0.0436,0.17829 0.0312,0.28125 0,0 -0.1875,1.50001 -0.1875,1.5 -0.0503,0.41916 -0.51188,0.75 -1.03125,0.75 0,0 -4.6875,0 -4.6875,0 -0.11842,0 -0.2141,-0.031 -0.3125,-0.0625 0.0979,0.26988 0.39172,0.46875 0.78125,0.46875 0,0 4.6875,0 4.6875,0 0.51937,0 0.981,-0.33084 1.03125,-0.75 0,10e-6 0.1875,-1.5 0.1875,-1.5 0.037,-0.30888 -0.17908,-0.57309 -0.5,-0.6875 z m 8.3125,0 c 0.0404,0.0896 0.0709,0.17829 0.0625,0.28125 0,0 -0.125,1.50001 -0.125,1.5 -0.0341,0.41916 -0.48063,0.75 -1,0.75 0,0 -4.6875,0 -4.6875,0 -0.12984,0 -0.23665,-0.0249 -0.34375,-0.0625 0.10901,0.26988 0.42297,0.46875 0.8125,0.46875 0,0 4.6875,0 4.6875,0 0.51937,0 0.96591,-0.33084 1,-0.75 0,10e-6 0.125,-1.5 0.125,-1.5 0.0251,-0.30888 -0.20527,-0.57309 -0.53125,-0.6875 z m 8.34375,0 c 0.0412,0.0896 0.0669,0.17829 0.0625,0.28125 0,0 -0.0625,1.50001 -0.0625,1.5 -0.0179,0.41916 -0.44939,0.75 -0.96875,0.75 0,0 -4.68751,0 -4.6875,0 -0.11932,0 -0.24193,-0.0305 -0.34375,-0.0625 0.12007,0.26988 0.42296,0.46875 0.8125,0.46875 -1e-5,0 4.6875,0 4.6875,0 0.51936,0 0.95081,-0.33084 0.96875,-0.75 0,10e-6 0.0625,-1.5 0.0625,-1.5 0.0132,-0.30888 -0.20899,-0.57309 -0.53125,-0.6875 z m 8.34375,0.0312 c 0.0362,0.0817 0.063,0.15794 0.0625,0.25 0,0 0,1.5 0,1.5 -0.002,0.41915 -0.41812,0.75 -0.9375,0.75 0,0 -4.6875,0 -4.6875,0 -0.12984,0 -0.26457,-0.0249 -0.375,-0.0625 0.13113,0.26988 0.45422,0.46875 0.84375,0.46875 0,0 4.6875,0 4.6875,0 0.51938,0 0.93571,-0.33085 0.9375,-0.75 0,0 0,-1.5 0,-1.5 0.001,-0.29652 -0.22521,-0.53483 -0.53125,-0.65625 z m 8.34375,0 c 0.0425,0.0822 0.0906,0.15734 0.0937,0.25 0,0 0.0312,1.5 0.0312,1.5 0.0144,0.41915 -0.38688,0.75 -0.90625,0.75 0,0 -4.68751,0 -4.6875,0 -0.14087,0 -0.28678,-0.0187 -0.40625,-0.0625 0.14223,0.26988 0.48547,0.46875 0.875,0.46875 -1e-5,0 4.6875,0 4.6875,0 0.51937,0 0.92061,-0.33085 0.90625,-0.75 0,0 -0.0312,-1.5 -0.0312,-1.5 -0.0101,-0.29528 -0.24416,-0.5342 -0.5625,-0.65625 z m 8.34375,0 c 0.0434,0.0822 0.087,0.15734 0.0937,0.25 0,0 0.0938,1.5 0.0937,1.5 0.0305,0.41915 -0.35562,0.75 -0.875,0.75 0,0 -4.6875,0 -4.6875,0 -0.14023,0 -0.28525,-0.019 -0.40625,-0.0625 0.15326,0.26988 0.48547,0.46875 0.875,0.46875 0,0 4.6875,0 4.6875,0 0.51938,0 0.9055,-0.33085 0.875,-0.75 1e-5,0 -0.0937,-1.5 -0.0937,-1.5 -0.0215,-0.29528 -0.24787,-0.5342 -0.5625,-0.65625 z m 12.0625,0 c 0.0465,0.0796 0.0823,0.16084 0.0937,0.25 0,0 0.1875,1.5 0.1875,1.5 0.0538,0.41915 -0.32437,0.75 -0.84375,0.75 0,0 -8.4375,0 -8.4375,0 -0.15581,0 -0.30397,-0.0408 -0.4375,-0.0937 0.15694,0.28453 0.50374,0.5 0.90625,0.5 0,0 8.4375,0 8.4375,0 0.51938,0 0.89758,-0.33085 0.84375,-0.75 0,0 -0.1875,-1.5 -0.1875,-1.5 -0.036,-0.28005 -0.25981,-0.5275 -0.5625,-0.65625 z M 176.25,246.125 c 0.0421,0.0722 0.0784,0.13914 0.0937,0.21875 0,0 0.28125,1.5 0.28125,1.5 0.0807,0.41915 -0.26187,0.75 -0.78125,0.75 0,0 -4.6875,0 -4.6875,0 -0.18178,0 -0.34464,-0.0543 -0.5,-0.125 0.17095,0.30329 0.54977,0.53125 0.96875,0.53125 0,0 4.6875,0 4.6875,0 0.51938,0 0.86199,-0.33085 0.78125,-0.75 0,0 -0.28125,-1.5 -0.28125,-1.5 -0.0515,-0.2677 -0.27623,-0.4922 -0.5625,-0.625 z m 8.34375,0 c 0.045,0.0722 0.0753,0.13914 0.0937,0.21875 0,0 0.375,1.5 0.375,1.5 0.0969,0.41915 -0.26187,0.75 -0.78125,0.75 0,0 -4.6875,0 -4.6875,0 -0.18765,0 -0.369,-0.0501 -0.53125,-0.125 0.18321,0.30328 0.58102,0.53125 1,0.53125 0,0 4.6875,0 4.6875,0 0.51938,0 0.87815,-0.33085 0.78125,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.0608,-0.26304 -0.27775,-0.49098 -0.5625,-0.625 z m 8.34375,0 c 0.0488,0.073 0.10326,0.13813 0.125,0.21875 0,0 0.40626,1.5 0.40625,1.5 0.11305,0.41915 -0.23064,0.75 -0.75,0.75 0,0 -4.6875,0 -4.6875,0 -0.18765,0 -0.36573,-0.0501 -0.53125,-0.125 0.1962,0.30182 0.5823,0.53125 1,0.53125 0,0 4.6875,0 4.6875,0 0.51936,0 0.86305,-0.33085 0.75,-0.75 1e-5,0 -0.40625,-1.5 -0.40625,-1.5 -0.0709,-0.26304 -0.30314,-0.49098 -0.59375,-0.625 z m 11.15625,0.0312 c 0.04,0.062 0.0722,0.12048 0.0937,0.1875 0,0 0.46875,1.50001 0.46875,1.5 0.13458,0.41916 -0.16812,0.75 -0.6875,0.75 0,0 -4.6875,0 -4.6875,0 -0.21166,0 -0.40987,-0.0628 -0.59375,-0.15625 0.20061,0.32151 0.62765,0.5625 1.0625,0.5625 0,0 4.6875,0 4.6875,0 0.51938,0 0.82208,-0.33084 0.6875,-0.75 0,10e-6 -0.46875,-1.5 -0.46875,-1.5 -0.0783,-0.244 -0.29654,-0.45648 -0.5625,-0.59375 z m 8.3125,0 c 0.0439,0.0633 0.10031,0.11886 0.125,0.1875 0,0 0.53125,1.5 0.53125,1.5 0.15073,0.41915 -0.13687,0.75 -0.65625,0.75 0,0 -4.6875,0 -4.6875,0 -0.21512,0 -0.43484,-0.06 -0.625,-0.15625 0.21353,0.32151 0.6589,0.5625 1.09375,0.5625 0,0 4.6875,0 4.6875,0 0.51938,0 0.80698,-0.33085 0.65625,-0.75 0,0 -0.53125,-1.5 -0.53125,-1.5 -0.0877,-0.244 -0.32183,-0.45648 -0.59375,-0.59375 z m 8.34375,0 c 0.0465,0.0633 0.0977,0.11886 0.125,0.1875 0,0 0.59375,1.5 0.59375,1.5 0.16687,0.41915 -0.10562,0.75 -0.625,0.75 0,0 -4.6875,0 -4.6875,0 -0.21512,0 -0.43065,-0.06 -0.625,-0.15625 0.2275,0.31915 0.66094,0.5625 1.09375,0.5625 0,0 4.6875,0 4.6875,0 0.51938,0 0.79187,-0.33085 0.625,-0.75 0,0 -0.59375,-1.5 -0.59375,-1.5 -0.096,-0.24126 -0.32007,-0.45623 -0.59375,-0.59375 z m 8.625,0 c 0.0335,0.0445 0.0713,0.0779 0.0937,0.125 0,0 2.68751,5.59375 2.6875,5.59375 0.19088,0.3995 -0.0946,0.71875 -0.625,0.71875 0,0 -4.78125,0 -4.78125,0 -0.24246,0 -0.5003,-0.0457 -0.71875,-0.15625 0.23907,0.32328 0.72848,0.5625 1.1875,0.5625 0,0 4.78125,0 4.78125,0 0.53042,0 0.81588,-0.31925 0.625,-0.71875 10e-6,0 -2.6875,-5.59375 -2.6875,-5.59375 -0.0978,-0.20465 -0.30927,-0.40471 -0.5625,-0.53125 z m -177.8125,3.875 c 0.02054,0.0973 0.01362,0.19828 -0.03125,0.3125 0,0 -0.593753,1.5 -0.59375,1.5 -0.16468,0.41924 -0.719572,0.75 -1.25,0.75 0,0 -11.468751,0 -11.46875,0 -0.08381,0 -0.148085,-0.0157 -0.21875,-0.0312 0.04016,0.254 0.304195,0.4375 0.6875,0.4375 0,0 11.46875,0 11.46875,0 0.530429,0 1.08532,-0.33076 1.25,-0.75 -2e-6,0 0.59375,-1.5 0.59375,-1.5 0.136184,-0.34671 -0.06261,-0.63432 -0.4375,-0.71875 z m 8.53125,0.0312 c 0.01679,0.0896 0.0051,0.17831 -0.03125,0.28125 0,0 -0.531246,1.5 -0.53125,1.5 -0.14783,0.41924 -0.688312,0.75 -1.21875,0.75 0,0 -4.781256,0 -4.78125,0 -0.09548,0 -0.169842,-0.0112 -0.25,-0.0312 C 53.340936,252.81788 53.615438,253 54,253 c -5e-6,0 4.78125,0 4.78125,0 0.530435,0 1.07092,-0.33076 1.21875,-0.75 10e-7,0 0.53125,-1.5 0.53125,-1.5 0.118487,-0.336 -0.08145,-0.59325 -0.4375,-0.6875 z m 8.5,0 c 0.02049,0.0896 0.03217,0.17831 0,0.28125 0,0 -0.468747,1.5 -0.46875,1.5 -0.13099,0.41924 -0.657064,0.75 -1.1875,0.75 0,0 -4.812493,0 -4.8125,0 -0.09548,0 -0.170639,-0.0112 -0.25,-0.0312 0.06124,0.25538 0.334188,0.4375 0.71875,0.4375 4e-6,0 4.8125,0 4.8125,0 0.530433,0 1.05651,-0.33076 1.1875,-0.75 0,0 0.46875,-1.5 0.46875,-1.5 0.10499,-0.336 -0.108643,-0.59325 -0.46875,-0.6875 z m 8.53125,0 c 0.0242,0.0896 0.02803,0.17831 0,0.28125 0,0 -0.406245,1.5 -0.40625,1.5 -0.11415,0.41924 -0.657072,0.75 -1.1875,0.75 0,0 -4.781248,0 -4.78125,0 -0.109269,0 -0.19221,-0.0366 -0.28125,-0.0625 0.05993,0.26989 0.352177,0.46875 0.75,0.46875 -10e-7,0 4.78125,0 4.78125,0 0.530425,0 1.07335,-0.33076 1.1875,-0.75 2e-6,0 0.40625,-1.5 0.40625,-1.5 0.08902,-0.32695 -0.122649,-0.58577 -0.46875,-0.6875 z m 8.53125,0 c 0.0279,0.0896 0.0239,0.17831 0,0.28125 0,0 -0.374996,1.5 -0.375,1.5 -0.09731,0.41924 -0.594577,0.75 -1.125,0.75 0,0 -4.781248,0 -4.78125,0 -0.109267,0 -0.191092,-0.0366 -0.28125,-0.0625 0.07109,0.26989 0.352185,0.46875 0.75,0.46875 -10e-7,0 4.78125,0 4.78125,0 0.53042,0 1.02769,-0.33076 1.125,-0.75 10e-7,0 0.375,-1.5 0.375,-1.5 0.0738,-0.31789 -0.135787,-0.57905 -0.46875,-0.6875 z m 8.46875,0 c 0.02868,0.0896 0.051,0.17831 0.03125,0.28125 0,0 -0.28125,1.5 -0.28125,1.5 -0.08046,0.41924 -0.56333,0.75 -1.09375,0.75 0,0 -4.781247,0 -4.78125,0 -0.121853,0 -0.242044,-0.0305 -0.34375,-0.0625 0.09104,0.26989 0.414685,0.46875 0.8125,0.46875 0,0 4.78125,0 4.78125,0 0.53042,0 1.01329,-0.33076 1.09375,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.06273,-0.32695 -0.15327,-0.58577 -0.5,-0.6875 z m 8.53125,0 c 0.0324,0.0896 0.0469,0.17831 0.0312,0.28125 0,0 -0.21875,1.5 -0.21875,1.5 -0.0636,0.41924 -0.53208,0.75 -1.0625,0.75 0,0 -4.8125,0 -4.8125,0 -0.1111,0 -0.21888,-0.0357 -0.3125,-0.0625 0.09341,0.26989 0.38343,0.46875 0.78125,0.46875 0,0 4.8125,0 4.8125,0 0.53042,0 0.99888,-0.33076 1.0625,-0.75 0,0 0.21875,-1.5 0.21875,-1.5 0.0482,-0.31789 -0.16621,-0.57905 -0.5,-0.6875 z m 8.53125,0 c 0.0361,0.0896 0.0427,0.1783 0.0312,0.28125 0,0 -0.15625,1.5 -0.15625,1.5 -0.0468,0.41925 -0.53208,0.75 -1.0625,0.75 0,0 -4.78125,0 -4.78125,0 -0.12185,0 -0.24183,-0.0305 -0.34375,-0.0625 0.10456,0.26989 0.41468,0.46875 0.8125,0.46875 0,0 4.78125,0 4.78125,0 0.53042,0 1.01571,-0.33075 1.0625,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0344,-0.30884 -0.17839,-0.57308 -0.5,-0.6875 z m 8.5,0 c 0.0427,0.0896 0.0698,0.17831 0.0625,0.28125 0,0 -0.125,1.5 -0.125,1.5 -0.0299,0.41925 -0.46957,0.75 -1,0.75 0,0 -4.78125,0 -4.78125,0 -0.13261,0 -0.26475,-0.0249 -0.375,-0.0625 0.11573,0.26989 0.44593,0.46875 0.84375,0.46875 0,0 4.78125,0 4.78125,0 0.53043,0 0.97006,-0.33075 1,-0.75 0,0 0.125,-1.5 0.125,-1.5 0.022,-0.30883 -0.19593,-0.57307 -0.53125,-0.6875 z m 8.53125,0.0312 c 0.0373,0.0817 0.0654,0.15796 0.0625,0.25 0,0 -0.0625,1.5 -0.0625,1.5 -0.0131,0.41924 -0.43833,0.75 -0.96875,0.75 0,0 -4.78126,0 -4.78125,0 -0.13261,0 -0.26313,-0.0249 -0.375,-0.0625 0.12688,0.26989 0.44593,0.46875 0.84375,0.46875 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.95565,-0.33076 0.96875,-0.75 0,0 0.0625,-1.5 0.0625,-1.5 0.009,-0.29523 -0.21487,-0.53418 -0.53125,-0.65625 z m 8.5,0 c 0.0412,0.0822 0.0928,0.15735 0.0937,0.25 0,0 -1e-5,1.5 0,1.5 0.004,0.41924 -0.40708,0.75 -0.9375,0.75 0,0 -4.81251,0 -4.8125,0 -0.14322,0 -0.28582,-0.019 -0.40625,-0.0625 0.13808,0.26989 0.47718,0.46875 0.875,0.46875 -1e-5,0 4.8125,0 4.8125,0 0.53042,0 0.94124,-0.33076 0.9375,-0.75 -1e-5,0 0,-1.5 0,-1.5 -0.003,-0.29647 -0.23883,-0.53482 -0.5625,-0.65625 z m 8.5,0 c 0.0421,0.0822 0.0892,0.15735 0.0937,0.25 0,0 0.0937,1.5 0.0937,1.5 0.0206,0.41924 -0.40708,0.75 -0.9375,0.75 0,0 -4.78126,0 -4.78125,0 -0.14322,0 -0.28388,-0.019 -0.40625,-0.0625 0.14912,0.26989 0.47718,0.46875 0.875,0.46875 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.95809,-0.33076 0.9375,-0.75 -1e-5,0 -0.0937,-1.5 -0.0937,-1.5 -0.0146,-0.29647 -0.24262,-0.53482 -0.5625,-0.65625 z m 18,0 c 0.0459,0.0796 0.0818,0.16085 0.0937,0.25 0,0 0.21874,1.5 0.21875,1.5 0.0561,0.41924 -0.34458,0.75 -0.875,0.75 l -14.34375,0 c -0.15913,0 -0.30277,-0.0408 -0.4375,-0.0937 0.15247,0.28455 0.49517,0.5 0.90625,0.5 l 14.34375,0 c 0.53042,0 0.93114,-0.33076 0.875,-0.75 -1e-5,0 -0.21875,-1.5 -0.21875,-1.5 -0.0375,-0.28 -0.26011,-0.52748 -0.5625,-0.65625 z m 42.625,0.0625 c 0.0442,0.0633 0.10202,0.11887 0.125,0.1875 0,0 0.5,1.5 0.5,1.5 0.14035,0.41924 -0.18834,0.75 -0.71875,0.75 0,0 -4.78127,0 -4.78125,0 -0.21616,0 -0.43624,-0.0628 -0.625,-0.15625 0.20733,0.32153 0.64965,0.5625 1.09375,0.5625 -2e-5,0 4.78125,0 4.78125,0 0.53041,0 0.8591,-0.33076 0.71875,-0.75 0,0 -0.5,-1.5 -0.5,-1.5 -0.0817,-0.24396 -0.31181,-0.45646 -0.59375,-0.59375 z m 8.5,0 c 0.0454,0.0633 0.0993,0.11887 0.125,0.1875 0,0 0.56249,1.5 0.5625,1.5 0.1572,0.41925 -0.12584,0.75 -0.65625,0.75 0,0 -4.78127,0 -4.78125,0 -0.21616,0 -0.43226,-0.0628 -0.625,-0.15625 0.22164,0.31918 0.65173,0.5625 1.09375,0.5625 -2e-5,0 4.78125,0 4.78125,0 0.53041,0 0.81345,-0.33075 0.65625,-0.75 -1e-5,0 -0.5625,-1.5 -0.5625,-1.5 -0.0904,-0.24121 -0.3192,-0.45622 -0.59375,-0.59375 z m 8.5625,0.0312 c 0.036,0.0521 0.0707,0.10082 0.0937,0.15625 0,0 0.62499,1.5 0.625,1.5 0.17403,0.41925 -0.0946,0.75 -0.625,0.75 0,0 -4.78127,0 -4.78125,0 -0.24069,0 -0.47499,-0.0739 -0.6875,-0.1875 0.22526,0.33839 0.69723,0.59375 1.15625,0.59375 -2e-5,0 4.78125,0 4.78125,0 0.53041,0 0.79903,-0.33075 0.625,-0.75 -1e-5,0 -0.625,-1.5 -0.625,-1.5 -0.0934,-0.22492 -0.30747,-0.4246 -0.5625,-0.5625 z M 53.5625,254.03125 c 0.01955,0.0973 0.01344,0.1983 -0.03125,0.3125 0,0 -0.593752,1.5 -0.59375,1.5 -0.16408,0.41932 -0.70805,0.75 -1.25,0.75 0,0 -15.65625,0 -15.65625,0 -0.08562,0 -0.146963,-0.0157 -0.21875,-0.0312 0.03674,0.25401 0.295907,0.4375 0.6875,0.4375 10e-7,0 15.65625,0 15.65625,0 0.541951,0 1.08592,-0.33068 1.25,-0.75 -10e-7,0 0.59375,-1.5 0.59375,-1.5 0.135637,-0.34663 -0.05856,-0.6343 -0.4375,-0.71875 z m 8.71875,0.0312 c 0.0189,0.0896 0.0047,0.17833 -0.03125,0.28125 0,0 -0.531249,1.5 -0.53125,1.5 -0.14651,0.41932 -0.70804,0.75 -1.25,0.75 0,0 -4.874996,0 -4.875,0 -0.08972,0 -0.174274,-0.0142 -0.25,-0.0312 0.05706,0.25539 0.325829,0.4375 0.71875,0.4375 10e-7,0 4.875,0 4.875,0 0.541957,0 1.10349,-0.33068 1.25,-0.75 -2e-6,0 0.53125,-1.5 0.53125,-1.5 0.114207,-0.32687 -0.08964,-0.58575 -0.4375,-0.6875 z m 8.6875,0 c 0.02264,0.0896 0.03164,0.17833 0,0.28125 0,0 -0.468749,1.5 -0.46875,1.5 -0.12892,0.41932 -0.676785,0.75 -1.21875,0.75 0,0 -4.874998,0 -4.875,0 -0.100702,0 -0.197453,-0.01 -0.28125,-0.0312 0.06771,0.25539 0.357079,0.4375 0.75,0.4375 -10e-7,0 4.875,0 4.875,0 0.541962,0 1.08983,-0.33068 1.21875,-0.75 -2e-6,0 0.46875,-1.5 0.46875,-1.5 0.102624,-0.33379 -0.102504,-0.5914 -0.46875,-0.6875 z m 8.6875,0 c 0.02345,0.0896 0.02733,0.17833 0,0.28125 0,0 -0.374999,1.5 -0.375,1.5 -0.11134,0.41932 -0.645546,0.75 -1.1875,0.75 0,0 -4.906245,0 -4.90625,0 -0.1007,0 -0.196572,-0.01 -0.28125,-0.0312 0.07836,0.25539 0.357086,0.4375 0.75,0.4375 2e-6,0 4.90625,0 4.90625,0 0.541951,0 1.07616,-0.33068 1.1875,-0.75 -2e-6,0 0.375,-1.5 0.375,-1.5 0.08679,-0.32687 -0.120584,-0.58575 -0.46875,-0.6875 z m 8.71875,0 c 0.03012,0.0896 0.02303,0.17833 0,0.28125 0,0 -0.343751,1.5 -0.34375,1.5 -0.09376,0.41932 -0.583049,0.75 -1.125,0.75 0,0 -4.906246,0 -4.90625,0 -0.113519,0 -0.218492,-0.0357 -0.3125,-0.0625 0.0776,0.2699 0.37478,0.46875 0.78125,0.46875 10e-7,0 4.90625,0 4.90625,0 0.541948,0 1.03124,-0.33068 1.125,-0.75 -4e-6,0 0.34375,-1.5 0.34375,-1.5 0.07094,-0.3171 -0.127383,-0.57854 -0.46875,-0.6875 z m 8.6875,0 c 0.03386,0.0896 0.04995,0.17833 0.03125,0.28125 0,0 -0.28125,1.5 -0.28125,1.5 -0.07619,0.41932 -0.58303,0.75 -1.125,0.75 0,0 -4.875,0 -4.875,0 -0.1245,0 -0.24167,-0.0305 -0.34375,-0.0625 0.08887,0.2699 0.40603,0.46875 0.8125,0.46875 0,0 4.875,0 4.875,0 0.54197,0 1.04881,-0.33068 1.125,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.05762,-0.3171 -0.15413,-0.57854 -0.5,-0.6875 z m 8.6875,0 c 0.0347,0.0896 0.0456,0.17833 0.0312,0.28125 0,0 -0.1875,1.5 -0.1875,1.5 -0.0586,0.41932 -0.55179,0.75 -1.09375,0.75 0,0 -4.875,0 -4.875,0 -0.13549,0 -0.26192,-0.0249 -0.375,-0.0625 0.1089,0.2699 0.43728,0.46875 0.84375,0.46875 0,0 4.875,0 4.875,0 0.54196,0 1.03515,-0.33068 1.09375,-0.75 0,0 0.1875,-1.5 0.1875,-1.5 0.0443,-0.3171 -0.15814,-0.57854 -0.5,-0.6875 z m 8.71875,0 c 0.0384,0.0896 0.0413,0.17833 0.0312,0.28125 0,0 -0.15625,1.5 -0.15625,1.5 -0.041,0.41932 -0.4893,0.75 -1.03125,0.75 0,0 -4.90625,0 -4.90625,0 -0.13549,0 -0.26329,-0.0249 -0.375,-0.0625 0.11138,0.2699 0.4373,0.46875 0.84375,0.46875 0,0 4.90625,0 4.90625,0 0.54195,0 0.99023,-0.33068 1.03125,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0302,-0.30876 -0.16934,-0.57305 -0.5,-0.6875 z m 8.6875,0.0312 c 0.0359,0.0817 0.0676,0.15798 0.0625,0.25 0,0 -0.0938,1.5 -0.0937,1.5 -0.0234,0.41932 -0.45804,0.75 -1,0.75 0,0 -4.90625,0 -4.90625,0 -0.13549,0 -0.26174,-0.0249 -0.375,-0.0625 0.12264,0.2699 0.43727,0.46875 0.84375,0.46875 0,0 4.90625,0 4.90625,0 0.54196,0 0.97656,-0.33068 1,-0.75 -1e-5,0 0.0937,-1.5 0.0937,-1.5 0.0166,-0.29641 -0.2094,-0.5348 -0.53125,-0.65625 z m 8.71875,0 c 0.0393,0.0817 0.0638,0.15798 0.0625,0.25 0,0 -0.0312,1.5 -0.0312,1.5 -0.006,0.41932 -0.45804,0.75 -1,0.75 0,0 -4.875,0 -4.875,0 -0.14633,0 -0.28448,-0.019 -0.40625,-0.0625 0.13391,0.2699 0.46853,0.46875 0.875,0.46875 0,0 4.875,0 4.875,0 0.54196,0 0.99414,-0.33068 1,-0.75 0,0 0.0312,-1.5 0.0312,-1.5 0.004,-0.28818 -0.21887,-0.53085 -0.53125,-0.65625 z m 8.65625,0 c 0.0408,0.0822 0.0912,0.15737 0.0937,0.25 0,0 0.0625,1.5 0.0625,1.5 0.0117,0.41932 -0.42679,0.75 -0.96875,0.75 0,0 -4.90624,0 -4.90625,0 -0.16259,0 -0.30386,-0.0408 -0.4375,-0.0937 0.13567,0.28543 0.48544,0.5 0.90625,0.5 10e-6,0 4.90625,0 4.90625,0 0.54196,0 0.98047,-0.33068 0.96875,-0.75 0,0 -0.0625,-1.5 -0.0625,-1.5 -0.008,-0.29641 -0.23965,-0.5348 -0.5625,-0.65625 z m 23.25,0.0312 c 0.0414,0.0722 0.0826,0.13917 0.0937,0.21875 0,0 0.18749,1.5 0.1875,1.5 0.0586,0.41932 -0.33305,0.75 -0.875,0.75 0,0 -19.56251,0 -19.5625,0 -0.16258,0 -0.30166,-0.0408 -0.4375,-0.0937 0.14811,0.28456 0.48624,0.5 0.90625,0.5 -1e-5,0 19.5625,0 19.5625,0 0.54195,0 0.9336,-0.33068 0.875,-0.75 -1e-5,0 -0.1875,-1.5 -0.1875,-1.5 -0.0367,-0.26294 -0.27053,-0.49095 -0.5625,-0.625 z m 23.1875,0 c 0.0491,0.073 0.10472,0.13816 0.125,0.21875 0,0 0.375,1.5 0.375,1.5 0.10548,0.41932 -0.2393,0.75 -0.78125,0.75 0,0 -4.90625,0 -4.90625,0 -0.19581,0 -0.39117,-0.0501 -0.5625,-0.125 0.19677,0.30187 0.59539,0.53125 1.03125,0.53125 0,0 4.90625,0 4.90625,0 0.54195,0 0.88673,-0.33068 0.78125,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.0661,-0.26294 -0.2931,-0.49095 -0.59375,-0.625 z m 20.3125,0.0312 c 0.0442,0.0633 0.10102,0.11889 0.125,0.1875 0,0 0.53125,1.5 0.53125,1.5 0.14651,0.41932 -0.17681,0.75 -0.71875,0.75 0,0 -4.90625,0 -4.90625,0 -0.23572,0 -0.45377,-0.0823 -0.65625,-0.1875 0.20682,0.33428 0.65973,0.59375 1.125,0.59375 0,0 4.90625,0 4.90625,0 0.54194,0 0.86526,-0.33068 0.71875,-0.75 0,0 -0.53125,-1.5 -0.53125,-1.5 -0.0852,-0.24391 -0.31381,-0.45645 -0.59375,-0.59375 z m 8.75,0.0312 c 0.0349,0.0521 0.0721,0.10083 0.0937,0.15625 0,0 0.59375,1.5 0.59375,1.5 0.16408,0.41932 -0.14554,0.75 -0.6875,0.75 0,0 -4.90626,0 -4.90625,0 -0.22448,0 -0.45645,-0.06 -0.65625,-0.15625 0.22868,0.31921 0.67337,0.5625 1.125,0.5625 -1e-5,0 4.90625,0 4.90625,0 0.54196,0 0.85158,-0.33068 0.6875,-0.75 0,0 -0.59375,-1.5 -0.59375,-1.5 -0.088,-0.22487 -0.30711,-0.42459 -0.5625,-0.5625 z m 8.6875,0 c 0.0371,0.0521 0.0697,0.10083 0.0937,0.15625 0,0 0.65625,1.5 0.65625,1.5 0.18166,0.41932 -0.1143,0.75 -0.65625,0.75 0,0 -4.87499,0 -4.875,0 -0.24773,0 -0.50008,-0.0724 -0.71875,-0.1875 0.23255,0.33843 0.7185,0.59375 1.1875,0.59375 10e-6,0 4.875,0 4.875,0 0.54195,0 0.83791,-0.33068 0.65625,-0.75 0,0 -0.65625,-1.5 -0.65625,-1.5 -0.0968,-0.2235 -0.30355,-0.42464 -0.5625,-0.5625 z m 8.78125,0 c 0.0221,0.0305 0.0461,0.0622 0.0625,0.0937 0,0 2.90626,5.59374 2.90625,5.59375 0.20817,0.40003 -0.071,0.71875 -0.625,0.71875 0,0 -5,0 -5,0 -0.25487,0 -0.52074,-0.0444 -0.75,-0.15625 0.25652,0.32022 0.74252,0.5625 1.21875,0.5625 0,0 5,0 5,0 0.55398,0 0.83317,-0.31872 0.625,-0.71875 1e-5,-1e-5 -2.90625,-5.59375 -2.90625,-5.59375 -0.0978,-0.18794 -0.28654,-0.37511 -0.53125,-0.5 z M 55.75,258.031 c 0.02129,0.0966 0.01282,0.19931 -0.03125,0.3125 0,0 -0.593749,1.5 -0.59375,1.5 -0.16327,0.41941 -0.727249,0.75 -1.28125,0.75 0,0 -6.999999,0 -7,0 -0.102939,0 -0.196459,-0.01 -0.28125,-0.0312 0.05226,0.2554 0.34835,0.4375 0.75,0.4375 2e-6,0 7,0 7,0 0.554002,0 1.11798,-0.33059 1.28125,-0.75 -2e-6,0 0.59375,-1.5 0.59375,-1.5 0.133707,-0.34346 -0.05438,-0.63132 -0.4375,-0.71875 z m -10.84375,0.0312 c 0.01033,0.0896 -0.01693,0.17835 -0.0625,0.28125 0,0 -0.656252,1.5 -0.65625,1.5 -0.18572,0.41941 -0.789749,0.75 -1.34375,0.75 0,0 -8.999999,0 -9,0 -0.08048,0 -0.15052,-0.018 -0.21875,-0.0312 0.03313,0.25402 0.287164,0.4375 0.6875,0.4375 2e-6,0 9,0 9,0 0.554002,0 1.15803,-0.33059 1.34375,-0.75 -10e-7,0 0.65625,-1.5 0.65625,-1.5 0.148726,-0.33587 -0.04297,-0.59321 -0.40625,-0.6875 z m 22.71875,0 c 0.02128,0.0896 0.0028,0.17835 -0.03125,0.28125 0,0 -0.499998,1.5 -0.5,1.5 -0.13878,0.41941 -0.695995,0.75 -1.25,0.75 0,0 -7.999995,0 -8,0 -0.102939,0 -0.195821,-0.01 -0.28125,-0.0312 0.06336,0.2554 0.34835,0.4375 0.75,0.4375 2e-6,0 8,0 8,0 0.554002,0 1.11122,-0.33059 1.25,-0.75 -10e-7,0 0.5,-1.5 0.5,-1.5 0.10767,-0.32539 -0.08343,-0.58463 -0.4375,-0.6875 z m 52.3125,0.0312 c 0.0348,0.0817 0.0692,0.158 0.0625,0.25 0,0 -0.0937,1.5 -0.0937,1.5 -0.0306,0.41941 -0.50851,0.75 -1.0625,0.75 0,0 -48.999995,0 -49,0 -0.116041,0 -0.218279,-0.0357 -0.3125,-0.0625 0.0621,0.27027 0.3657,0.4691 0.7812,0.4691 2e-6,0 49,0 49,0 0.55399,0 1.03188,-0.33059 1.0625,-0.75 0,0 0.0937,-1.5 0.0937,-1.5 0.0216,-0.29635 -0.20679,-0.53478 -0.53125,-0.65625 z m 11.875,0 c 0.0386,0.0817 0.0638,0.158 0.0625,0.25 0,0 -0.0312,1.5 -0.0312,1.5 -0.006,0.41941 -0.44599,0.75 -1,0.75 0,0 -8,0 -8,0 -0.1662,0 -0.30118,-0.0408 -0.4375,-0.0937 0.12802,0.28545 0.47608,0.5 0.90625,0.5 0,0 8,0 8,0 0.55401,0 0.99387,-0.33059 1,-0.75 0,0 0.0312,-1.5 0.0312,-1.5 0.004,-0.28812 -0.2183,-0.53083 -0.53125,-0.65625 z m 10.84375,0 c 0.0428,0.0822 0.0901,0.15739 0.0937,0.25 0,0 0.0625,1.5 0.0625,1.5 0.0163,0.41941 -0.41474,0.75 -0.96875,0.75 0,0 -7,0 -7,0 -0.1662,0 -0.33092,-0.0408 -0.46875,-0.0937 0.14131,0.28545 0.50734,0.5 0.9375,0.5 0,0 7,0 7,0 0.55401,0 0.98508,-0.33059 0.96875,-0.75 -1e-5,0 -0.0625,-1.5 -0.0625,-1.5 -0.0112,-0.28812 -0.24545,-0.53083 -0.5625,-0.65625 z m 10.90625,0.0312 c 0.037,0.0716 0.0552,0.13986 0.0625,0.21875 0,0 0.15625,1.5 0.15625,1.5 0.0388,0.41941 -0.38349,0.75 -0.9375,0.75 0,0 -7,0 -7,0 -0.1662,0 -0.32917,-0.0408 -0.46875,-0.0937 0.15466,0.28458 0.50815,0.5 0.9375,0.5 0,0 7,0 7,0 0.55401,0 0.97628,-0.33059 0.9375,-0.75 0,0 -0.15625,-1.5 -0.15625,-1.5 -0.0247,-0.26754 -0.23676,-0.49214 -0.53125,-0.625 z m 10.84375,0 c 0.0409,0.0722 0.0821,0.13919 0.0937,0.21875 0,0 0.21875,1.5 0.21875,1.5 0.0612,0.41941 -0.321,0.75 -0.875,0.75 0,0 -7,0 -7,0 -0.18973,0 -0.37086,-0.0572 -0.53125,-0.125 0.16421,0.30335 0.55309,0.53125 1,0.53125 0,0 7,0 7,0 0.554,0 0.93623,-0.33059 0.875,-0.75 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0391,-0.26754 -0.26355,-0.49214 -0.5625,-0.625 z m 14.8125,0 c 0.0476,0.073 0.10736,0.13818 0.125,0.21875 0,0 0.34374,1.5 0.34375,1.5 0.0918,0.41941 -0.28974,0.75 -0.84375,0.75 0,0 -5,0 -5,0 -0.21534,0 -0.41181,-0.0706 -0.59375,-0.15625 0.18058,0.31718 0.60274,0.5625 1.0625,0.5625 0,0 5,0 5,0 0.55401,0 0.93559,-0.33059 0.84375,-0.75 -1e-5,0 -0.34375,-1.5 -0.34375,-1.5 -0.0575,-0.26289 -0.29065,-0.49093 -0.59375,-0.625 z m 8.9375,0.0312 c 0.0384,0.062 0.0762,0.12052 0.0937,0.1875 0,0 0.375,1.5 0.375,1.5 0.11021,0.41941 -0.22727,0.75 -0.78125,0.75 0,0 -5,0 -5,0 -0.21963,0 -0.43702,-0.0674 -0.625,-0.15625 0.19124,0.32159 0.62991,0.5625 1.09375,0.5625 0,0 5,0 5,0 0.55398,0 0.89146,-0.33059 0.78125,-0.75 0,0 -0.375,-1.5 -0.375,-1.5 -0.0641,-0.24386 -0.28571,-0.45643 -0.5625,-0.59375 z m 8.90625,0 c 0.041,0.062 0.0732,0.12052 0.0937,0.1875 0,0 0.4375,1.5 0.4375,1.5 0.12858,0.41941 -0.19602,0.75 -0.75,0.75 0,0 -5,0 -5,0 -0.22947,0 -0.45874,-0.06 -0.65625,-0.15625 0.20495,0.32159 0.66116,0.5625 1.125,0.5625 0,0 5,0 5,0 0.55398,0 0.87858,-0.33059 0.75,-0.75 0,0 -0.4375,-1.5 -0.4375,-1.5 -0.0739,-0.24111 -0.28468,-0.45619 -0.5625,-0.59375 z m 20.75,0.0312 c 0.0361,0.0521 0.0711,0.10084 0.0937,0.15625 0,0 0.62501,1.5 0.625,1.5 0.17143,0.41941 -0.13349,0.75 -0.6875,0.75 0,0 -14,0 -14,0 -0.22947,0 -0.45564,-0.06 -0.65625,-0.15625 0.22212,0.31924 0.66333,0.5625 1.125,0.5625 0,0 14,0 14,0 0.55401,0 0.85893,-0.33059 0.6875,-0.75 10e-6,0 -0.625,-1.5 -0.625,-1.5 -0.0913,-0.22346 -0.30326,-0.42463 -0.5625,-0.5625 z m 8.875,0 c 0.0405,0.0542 0.0988,0.0985 0.125,0.15625 0,0 0.6875,1.5 0.6875,1.5 0.1898,0.41941 -0.10224,0.75 -0.65625,0.75 0,0 -5,0 -5,0 -0.25487,0 -0.52536,-0.0711 -0.75,-0.1875 0.23998,0.33847 0.73933,0.59375 1.21875,0.59375 0,0 5,0 5,0 0.55401,0 0.84605,-0.33059 0.65625,-0.75 0,0 -0.6875,-1.5 -0.6875,-1.5 -0.10112,-0.22346 -0.3289,-0.42463 -0.59375,-0.5625 z" - id="path2749" - inkscape:connector-curvature="0" /> - </g> - <g - transform="translate(-2.0196324,-147.75)" - id="g2699" - style="display:inline;opacity:0.65753425;fill:url(#linearGradient3812);fill-opacity:1;enable-background:new"> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - id="path2701" - d="m 57.797201,392 c -0.50195,0 -1.04457,0.3305 -1.21721,0.74243 0,0 -0.62865,1.49994 -0.62865,1.49994 -0.17565,0.41909 0.0921,0.75763 0.60083,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 1.05052,-0.33854 1.21411,-0.75763 0,0 0.58552,-1.49994 0.58552,-1.49994 C 63.104421,392.3305 62.829351,392 62.327401,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -1.03235,0.3305 -1.18975,0.74243 0,0 -0.5732,1.49994 -0.5732,1.49994 -0.16014,0.41909 0.12009,0.75763 0.62886,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 1.038,-0.33854 1.18608,-0.75763 0,0 0.53006,-1.49994 0.53006,-1.49994 C 71.271001,392.3305 70.983711,392 70.481761,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -1.02012,0.3305 -1.16229,0.74243 0,0 -0.51772,1.49994 -0.51772,1.49994 -0.14465,0.41909 0.14809,0.75763 0.65687,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 1.02548,-0.33854 1.15808,-0.75763 0,0 0.47458,-1.49994 0.47458,-1.49994 C 79.437591,392.3305 79.138071,392 78.636131,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -1.00791,0.3305 -1.13484,0.74243 0,0 -0.46225,1.49994 -0.46225,1.49994 -0.12915,0.41909 0.17611,0.75763 0.68488,0.75763 0,0 4.59184,0 4.59184,0 0.50878,0 1.01296,-0.33854 1.13006,-0.75763 0,0 0.4191,-1.49994 0.4191,-1.49994 C 87.604171,392.3305 87.292431,392 86.790491,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.99568,0.3305 -1.10738,0.74243 0,0 -0.40679,1.49994 -0.40679,1.49994 -0.11365,0.41909 0.20413,0.75763 0.71291,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 1.00044,-0.33854 1.10203,-0.75763 0,0 0.36364,-1.49994 0.36364,-1.49994 0.0999,-0.41193 -0.2241,-0.74243 -0.72605,-0.74243 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.98346,0.3305 -1.07993,0.74243 0,0 -0.35131,1.49994 -0.35131,1.49994 -0.0982,0.41909 0.23215,0.75763 0.74093,0.75763 0,0 4.591819,0 4.591819,0 0.50879,0 0.98793,-0.33854 1.07403,-0.75763 0,0 0.30817,-1.49994 0.30817,-1.49994 0.0846,-0.41193 -0.25156,-0.74243 -0.75352,-0.74242 0,0 -4.530189,-10e-6 -4.530189,-10e-6 0,0 0,0 0,0 m 8.154359,0 c -0.50194,0 -0.97123,0.3305 -1.05248,0.74243 0,0 -0.29584,1.49994 -0.29584,1.49994 -0.0827,0.41909 0.26017,0.75763 0.76895,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.9754,-0.33854 1.046,-0.75763 0,0 0.2527,-1.49994 0.2527,-1.49994 C 112.10394,392.3305 111.75552,392 111.25357,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,10e-6 c -0.50193,-10e-6 -0.959,0.33049 -1.02501,0.74242 0,0 -0.24037,1.49994 -0.24037,1.49994 -0.0672,0.41909 0.28818,0.75763 0.79696,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.96288,-0.33854 1.01799,-0.75763 0,0 0.19723,-1.49994 0.19723,-1.49994 C 120.27056,392.3305 119.90988,392 119.40794,392 c 0,0 -4.53021,10e-6 -4.53021,10e-6 0,0 0,0 0,0 M 123.0321,392 c -0.50194,0 -0.94678,0.3305 -0.99756,0.74243 0,0 -0.1849,1.49994 -0.1849,1.49994 -0.0517,0.41909 0.31621,0.75763 0.82497,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.95036,-0.33854 0.98997,-0.75763 0,0 0.14175,-1.49994 0.14175,-1.49994 C 128.43707,392.33049 128.06424,392 127.5623,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,10e-6 -0.93456,0.3305 -0.9701,0.74243 0,0 -0.12943,1.49994 -0.12943,1.49994 -0.0362,0.41909 0.34421,0.75763 0.85299,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.93785,-0.33854 0.96196,-0.75763 0,0 0.0863,-1.49994 0.0863,-1.49994 C 136.60371,392.3305 136.21864,392 135.71668,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -0.92233,0.33049 -0.94265,0.74243 0,0 -0.074,1.49994 -0.074,1.49994 -0.0207,0.41909 0.37224,0.75763 0.88101,0.75763 0,0 4.59184,0 4.59184,0 0.50879,0 0.92532,-0.33854 0.93393,-0.75763 0,0 0.0308,-1.49994 0.0308,-1.49994 0.008,-0.41193 -0.38883,-0.74243 -0.89079,-0.74243 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -0.91011,0.3305 -0.91519,0.74243 0,0 -0.0185,1.49994 -0.0185,1.49994 -0.005,0.41909 0.40025,0.75763 0.90903,0.75763 0,0 4.59185,0 4.59185,0 0.50876,0 0.91279,-0.33854 0.9059,-0.75763 0,0 -0.0247,-1.49994 -0.0247,-1.49994 -0.007,-0.41193 -0.4163,-0.74242 -0.91824,-0.74243 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -0.8979,0.3305 -0.88774,0.74243 0,0 0.037,1.49994 0.037,1.49994 0.0103,0.41909 0.42827,0.75763 0.93705,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.90029,-0.33854 0.8779,-0.75763 0,0 -0.0801,-1.49994 -0.0801,-1.49994 -0.022,-0.41193 -0.44376,-0.74243 -0.9457,-0.74242 0,0 -4.5302,-10e-6 -4.5302,-10e-6 0,0 0,0 0,0 m 8.15437,0 c -0.50196,0 -0.88568,0.3305 -0.86029,0.74243 0,0 0.0925,1.49994 0.0925,1.49994 0.0258,0.41909 0.45629,0.75763 0.96506,0.75763 0,0 11.93878,0 11.93878,0 0.50877,0 0.87663,-0.33854 0.82497,-0.75763 0,0 -0.1849,-1.49994 -0.1849,-1.49994 -0.0508,-0.41193 -0.49561,-0.74242 -0.99755,-0.74243 0,0 -11.77852,0 -11.77852,0 0,0 0,0 0,0 m 20.83891,0 c -0.50194,0 -0.85443,0.33049 -0.79011,0.74243 0,0 0.2342,1.49994 0.2342,1.49994 0.0654,0.41909 0.52789,0.75763 1.03667,0.75763 0,0 4.59184,0 4.59184,0 0.50878,0 0.85577,-0.33854 0.77827,-0.75763 0,0 -0.27735,-1.49994 -0.27735,-1.49994 C 190.14014,392.3305 189.67498,392 189.17303,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -0.84222,0.3305 -0.76266,0.74243 0,0 0.28967,1.49994 0.28967,1.49994 0.0809,0.41909 0.55591,0.75763 1.06469,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.84324,-0.33854 0.75025,-0.75763 0,0 -0.33282,-1.49994 -0.33282,-1.49994 -0.0914,-0.41193 -0.56882,-0.74242 -1.07076,-0.74243 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.82999,0.3305 -0.73521,0.74243 0,0 0.34515,1.49994 0.34515,1.49994 0.0964,0.41909 0.58393,0.75763 1.0927,0.75763 0,0 4.59185,0 4.59185,0 0.50876,0 0.83072,-0.33854 0.72223,-0.75763 0,0 -0.38829,-1.49994 -0.38829,-1.49994 C 206.47335,392.3305 205.9837,392 205.48176,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 10.87248,0 c -0.50194,10e-6 -0.81369,0.3305 -0.6986,0.74243 0,0 0.41911,1.49994 0.41911,1.49994 0.1171,0.41909 0.62128,0.75763 1.13006,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.81403,-0.33854 0.68488,-0.75763 0,0 -0.46225,-1.49994 -0.46225,-1.49994 C 217.36212,392.33049 216.85618,392 216.35423,392 c 0,0 -4.5302,0 -4.5302,0 0,0 0,0 0,0 m 8.15436,0 c -0.50194,0 -0.80147,0.33049 -0.67114,0.74243 0,0 0.47458,1.49994 0.47458,1.49994 0.1326,0.41909 0.6493,0.75763 1.15808,0.75763 0,0 4.59183,0 4.59183,0 0.50878,0 0.80152,-0.33854 0.65687,-0.75763 0,0 -0.51772,-1.49994 -0.51772,-1.49994 C 225.52871,392.3305 225.01055,392 224.5086,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15437,0 c -0.50195,0 -0.78926,0.3305 -0.64369,0.74243 0,0 0.53005,1.49994 0.53005,1.49994 0.14809,0.41909 0.67732,0.75763 1.18609,0.75763 0,0 4.59184,0 4.59184,0 0.50878,0 0.789,-0.33854 0.62885,-0.75763 0,0 -0.57319,-1.49994 -0.57319,-1.49994 C 233.6953,392.3305 233.16491,392 232.66297,392 c 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0 m 8.15436,0 c -0.50195,0 -0.77703,0.3305 -0.61623,0.74243 0,0 0.58551,1.49994 0.58551,1.49994 0.1636,0.41909 0.70534,0.75763 1.21412,0.75763 0,0 4.59184,0 4.59184,0 0.50877,0 0.77647,-0.33854 0.60082,-0.75763 0,0 -0.62865,-1.49994 -0.62865,-1.49994 -0.17265,-0.41193 -0.71526,-0.74242 -1.2172,-0.74243 0,0 -4.53021,0 -4.53021,0 0,0 0,0 0,0" - style="display:inline;fill:url(#linearGradient3796);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - id="path2703" - d="m 59.562374,387.99172 c -0.492566,0 -1.02148,0.33244 -1.186454,0.74672 0,0 -0.600568,1.50823 -0.600568,1.50823 -0.167765,0.42132 0.09855,0.76162 0.597605,0.76162 0,0 4.50446,0 4.50446,0 0.499096,0 1.027112,-0.3403 1.183361,-0.76162 0,0 0.559364,-1.50823 0.559364,-1.50823 0.153638,-0.41428 -0.11962,-0.74672 -0.612187,-0.74672 0,0 -4.445581,0 -4.445581,0 0,0 0,0 0,0 m 16.004072,0 c -0.492566,0 -0.998121,0.33244 -1.133975,0.74672 0,0 -0.494591,1.50823 -0.494591,1.50823 -0.138162,0.42132 0.152036,0.76162 0.651132,0.76162 0,0 4.50446,0 4.50446,0 0.499096,0 1.00319,-0.3403 1.129833,-0.76162 0,0 0.453378,-1.50823 0.453378,-1.50823 0.124537,-0.41428 -0.172079,-0.74672 -0.664645,-0.74672 0,0 -4.445592,0 -4.445592,0 0,0 0,0 0,0 m 8.002041,0 c -0.492566,0 -0.986442,0.33244 -1.107745,0.74672 0,0 -0.441599,1.50823 -0.441599,1.50823 -0.123358,0.42132 0.1788,0.76162 0.677896,0.76162 0,0 4.50445,0 4.50445,0 0.499096,0 0.991238,-0.3403 1.10309,-0.76162 0,0 0.400375,-1.50823 0.400375,-1.50823 0.109986,-0.41428 -0.198319,-0.74672 -0.690895,-0.74672 0,0 -4.445572,0 -4.445572,0 0,0 0,0 0,0 m 8.002042,0 c -0.492567,0 -0.974764,0.33244 -1.081506,0.74672 0,0 -0.388616,1.50823 -0.388616,1.50823 -0.108546,0.42132 0.205563,0.76162 0.70465,0.76162 0,0 4.504469,-10e-6 4.504469,-10e-6 0.499086,10e-6 0.979278,-0.34029 1.076316,-0.76161 0,0 0.347392,-1.50823 0.347392,-1.50823 0.09543,-0.41428 -0.224568,-0.74672 -0.717124,-0.74672 0,0 -4.445581,0 -4.445581,0 0,0 0,0 0,0 m 8.002041,0 c -0.492567,0 -0.963095,0.33244 -1.055277,0.74672 0,0 -0.335612,1.50823 -0.335612,1.50823 -0.09371,0.42132 0.232307,0.76162 0.731413,0.76161 0,0 4.504446,10e-6 4.504446,10e-6 0.4991,0 0.96733,-0.3403 1.04957,-0.76162 0,0 0.2944,-1.50823 0.2944,-1.50823 0.0808,-0.41428 -0.2508,-0.74672 -0.74337,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 11.5585,0 c -0.49257,0 -0.94622,0.33244 -1.01738,0.74672 0,0 -0.25908,1.50823 -0.25908,1.50823 -0.0724,0.42132 0.27098,0.76162 0.77008,0.76161 0,0 4.50445,10e-6 4.50445,10e-6 0.49909,0 0.95005,-0.3403 1.01091,-0.76162 0,0 0.21785,-1.50823 0.21785,-1.50823 0.0599,-0.41428 -0.28868,-0.74672 -0.78126,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 8.00203,0 c -0.49256,0 -0.93454,0.33244 -0.99114,0.74672 0,0 -0.20607,1.50823 -0.20607,1.50823 -0.0575,0.42132 0.29773,0.76161 0.79683,0.76161 0,0 4.50445,10e-6 4.50445,10e-6 0.4991,0 0.9381,-0.3403 0.98415,-0.76162 0,0 0.16486,-1.50823 0.16486,-1.50823 0.0452,-0.41428 -0.31492,-0.74672 -0.80749,-0.74672 0,0 -4.44559,0 -4.44559,0 0,0 0,0 0,0 m 8.00205,0 c -0.49257,0 -0.92286,0.33244 -0.96491,0.74672 0,0 -0.15309,1.50823 -0.15309,1.50823 -0.0427,0.42132 0.32449,0.76161 0.82358,0.76162 0,0 4.50447,0 4.50447,0 0.49909,0 0.92613,-0.3403 0.95737,-0.76162 0,0 0.11188,-1.50823 0.11188,-1.50823 0.0307,-0.41428 -0.34115,-0.74672 -0.83372,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00203,0 c -0.49257,-10e-6 -0.91117,0.33244 -0.93867,0.74672 0,0 -0.10006,1.50823 -0.10006,1.50823 -0.028,0.42132 0.35124,0.76161 0.85034,0.76162 0,0 4.50446,0 4.50446,0 0.4991,0 0.91418,-0.3403 0.93062,-0.76162 0,0 0.0588,-1.50823 0.0588,-1.50823 0.0162,-0.41428 -0.36739,-0.74672 -0.85996,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 11.55851,0 c -0.49258,0 -0.89431,0.33244 -0.90079,0.74672 0,0 -0.0236,1.50823 -0.0236,1.50823 -0.007,0.42132 0.38991,0.76161 0.88901,0.76162 0,0 4.50445,0 4.50445,0 0.49909,0 0.89692,-0.3403 0.89198,-0.76162 0,0 -0.0176,-1.50823 -0.0176,-1.50823 -0.005,-0.41428 -0.40529,-0.74672 -0.89786,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 8.00203,0 c -0.49257,0 -0.88262,0.33244 -0.87454,0.74672 0,0 0.0294,1.50823 0.0294,1.50823 0.008,0.42132 0.41666,0.76162 0.91576,0.76162 0,0 4.50445,0 4.50445,0 0.4991,-10e-6 0.88495,-0.3403 0.86521,-0.76162 0,0 -0.0706,-1.50823 -0.0706,-1.50823 -0.0195,-0.41428 -0.43153,-0.74672 -0.9241,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00204,0 c -0.49257,0 -0.87095,0.33244 -0.84829,0.74672 0,0 0.0824,1.50823 0.0824,1.50823 0.0231,0.42132 0.44341,0.76162 0.9425,0.76162 0,0 4.50447,-10e-6 4.50447,-10e-6 0.49909,0 0.87298,-0.34029 0.83845,-0.76161 0,0 -0.12365,-1.50823 -0.12365,-1.50823 -0.034,-0.41428 -0.45777,-0.74672 -0.95034,-0.74672 0,0 -4.44557,0 -4.44557,0 0,0 0,0 0,0 m 8.00203,0 c -0.49256,0 -0.85926,0.33244 -0.82206,0.74672 0,0 0.13542,1.50823 0.13542,1.50823 0.0379,0.42132 0.47018,0.76162 0.96928,0.76162 0,0 4.50446,-10e-6 4.50446,-10e-6 0.49909,10e-6 0.86103,-0.34029 0.81169,-0.76161 0,0 -0.17664,-1.50823 -0.17664,-1.50823 -0.0485,-0.41428 -0.484,-0.74672 -0.97656,-0.74672 0,0 -4.44559,0 -4.44559,0 0,0 0,0 0,0 m 13.33673,0 c -0.49256,0 -0.83979,0.33244 -0.77832,0.74672 0,0 0.22373,1.50823 0.22373,1.50823 0.0625,0.42132 0.51479,0.76162 1.01387,0.76162 0,0 4.50446,-10e-6 4.50446,-10e-6 0.4991,0 0.8411,-0.34029 0.7671,-0.76161 0,0 -0.26496,-1.50823 -0.26496,-1.50823 -0.0727,-0.41428 -0.52773,-0.74672 -1.0203,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00204,0 c -0.49257,0 -0.82812,0.33244 -0.75211,0.74672 0,0 0.27674,1.50823 0.27674,1.50823 0.0773,0.42132 0.54154,0.76162 1.04064,0.76162 0,0 4.50446,-10e-6 4.50446,-10e-6 0.49908,10e-6 0.82915,-0.34029 0.74034,-0.76161 0,0 -0.31796,-1.50823 -0.31796,-1.50823 -0.0874,-0.41428 -0.55396,-0.74672 -1.04653,-0.74672 0,0 -4.44558,0 -4.44558,0 0,0 0,0 0,0 m 8.00204,0 c -0.49257,0 -0.81644,0.33244 -0.72587,0.74672 0,0 0.32973,1.50823 0.32973,1.50823 0.0921,0.42132 0.56829,0.76162 1.06739,0.76161 0,0 4.50446,0 4.50446,0 0.49909,10e-6 0.8172,-0.34029 0.71358,-0.76161 0,0 -0.37094,-1.50823 -0.37094,-1.50823 -0.1019,-0.41428 -0.5802,-0.74672 -1.07278,-0.74673 0,0 -4.44557,10e-6 -4.44557,10e-6 0,0 0,0 0,0" - style="display:inline;fill:url(#linearGradient3798);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - id="path2705" - d="m 55.676858,396 c -0.51226,0 -1.06894,0.33042 -1.24878,0.74227 0,0 -0.65494,1.49995 -0.65494,1.49995 -0.18302,0.41915 0.0872,0.75778 0.60663,0.75778 0,0 8.4375,0 8.4375,0 0.51937,0 1.0694,-0.33863 1.23269,-0.75778 0,0 0.58431,-1.49995 0.58431,-1.49995 0.16044,-0.41185 -0.12324,-0.74227 -0.6355,-0.74227 0,0 -8.32191,0 -8.32191,0 0,0 0,0 0,0 m 12.02054,0 c -0.51226,0 -1.05054,0.33042 -1.20746,0.74227 0,0 -0.57147,1.49995 -0.57147,1.49995 -0.1597,0.41915 0.12942,0.75778 0.6488,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.05635,-0.33863 1.20349,-0.75778 0,0 0.52652,-1.49995 0.52652,-1.49995 C 73.129358,396.33042 72.832948,396 72.320688,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -1.03781,0.33042 -1.17887,0.74227 0,0 -0.51368,1.49995 -0.51368,1.49995 -0.14354,0.41915 0.15862,0.75778 0.678,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.04332,-0.33863 1.17429,-0.75778 0,0 0.46874,-1.49995 0.46874,-1.49995 C 81.464008,396.33042 81.154868,396 80.642608,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -1.02509,0.33042 -1.15027,0.74227 0,0 -0.45589,1.49995 -0.45589,1.49995 -0.1274,0.41915 0.18781,0.75778 0.70719,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.03026,-0.33863 1.1451,-0.75778 0,0 0.41094,-1.49995 0.41094,-1.49995 C 89.798658,396.33042 89.476788,396 88.964528,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -1.01236,0.33042 -1.12168,0.74227 0,0 -0.3981,1.49995 -0.3981,1.49995 -0.11125,0.41915 0.21701,0.75778 0.73639,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 1.01722,-0.33863 1.1159,-0.75778 0,0 0.35316,-1.49995 0.35316,-1.49995 0.097,-0.41185 -0.23763,-0.74227 -0.74989,-0.74227 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.321912,0 c -0.51226,0 -0.999622,0.33043 -1.093072,0.74227 0,0 -0.34031,1.49995 -0.34031,1.49995 -0.0951,0.41915 0.2462,0.75778 0.765582,0.75778 0,0 4.6875,0 4.6875,0 0.51936,0 1.00417,-0.33863 1.08671,-0.75778 0,0 0.29536,-1.49995 0.29536,-1.49995 0.0811,-0.41185 -0.26623,-0.74227 -0.77848,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.98689,0.33042 -1.06447,0.74227 0,0 -0.28252,1.49995 -0.28252,1.49995 -0.079,0.41915 0.27539,0.75778 0.79477,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 0.99113,-0.33863 1.05752,-0.75778 0,0 0.23758,-1.49995 0.23758,-1.49995 0.0652,-0.41185 -0.29483,-0.74227 -0.80709,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.97416,0.33042 -1.03587,0.74227 0,0 -0.22474,1.49995 -0.22474,1.49995 -0.0628,0.41915 0.30459,0.75778 0.82397,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 0.97808,-0.33863 1.02833,-0.75779 0,0 0.17978,-1.49994 0.17978,-1.49994 C 123.13728,396.33042 122.76446,396 122.2522,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.96144,0.33042 -1.00728,0.74227 0,0 -0.16694,1.49995 -0.16694,1.49995 -0.0467,0.41915 0.33378,0.75778 0.85316,0.75778 0,0 4.6875,0 4.6875,0 0.51937,0 0.96504,-0.33863 0.99913,-0.75779 0,0 0.122,-1.49994 0.122,-1.49994 C 131.4719,396.33042 131.08637,396 130.57411,396 c 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32191,0 c -0.51225,0 -0.9487,0.33042 -0.97867,0.74227 0,0 -0.10916,1.49994 -0.10916,1.49994 -0.0305,0.41916 0.36298,0.75779 0.88236,0.75779 0,0 4.6875,0 4.6875,0 0.51937,0 0.95199,-0.33863 0.96993,-0.75779 0,0 0.0642,-1.49995 0.0642,-1.49995 C 139.8065,396.33042 139.40828,396 138.89602,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.93596,0.33042 -0.95008,0.74226 0,0 -0.0514,1.49995 -0.0514,1.49995 -0.0144,0.41916 0.39217,0.75779 0.91154,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.93895,-0.33863 0.94074,-0.75778 0,0 0.006,-1.49995 0.006,-1.49995 0.002,-0.41184 -0.40921,-0.74227 -0.92147,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.92323,0.33042 -0.92148,0.74226 0,0 0.006,1.49995 0.006,1.49995 0.002,0.41916 0.42137,0.75779 0.94074,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.92591,-0.33863 0.91155,-0.75778 0,0 -0.0514,-1.49995 -0.0514,-1.49995 -0.0141,-0.41185 -0.4378,-0.74227 -0.95007,-0.74227 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.91052,0.33043 -0.89289,0.74227 0,0 0.0642,1.49995 0.0642,1.49995 0.018,0.41915 0.45057,0.75778 0.96994,0.75778 0,0 4.6875,0 4.6875,0 0.51938,0 0.91286,-0.33863 0.88236,-0.75778 0,0 -0.10916,-1.49995 -0.10916,-1.49995 -0.03,-0.41185 -0.46641,-0.74227 -0.97868,-0.74227 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32191,0 c -0.51226,0 -0.89778,0.33042 -0.86428,0.74227 0,0 0.122,1.49995 0.122,1.49995 0.0341,0.41915 0.47976,0.75778 0.99913,0.75778 0,0 8.4375,0 8.4375,0 0.51938,0 0.89402,-0.33863 0.84019,-0.75778 0,0 -0.19263,-1.49995 -0.19263,-1.49995 C 176.84849,396.33042 176.39366,396 175.8814,396 c 0,0 -8.32192,0 -8.32192,0 0,0 0,0 0,0 m 17.5685,0 c -0.51226,0 -0.8709,0.33042 -0.80392,0.74226 0,0 0.244,1.49995 0.244,1.49995 0.0682,0.41916 0.5414,0.75779 1.06077,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.87227,-0.33863 0.79153,-0.75778 0,0 -0.28895,-1.49995 -0.28895,-1.49995 C 190.73961,396.33042 190.26353,396 189.75126,396 c 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32192,0 c -0.51227,0 -0.85818,0.33043 -0.77532,0.74227 0,0 0.30178,1.49995 0.30178,1.49995 0.0843,0.41915 0.5706,0.75778 1.08997,0.75778 0,0 4.6875,0 4.6875,0 0.51938,0 0.85923,-0.33863 0.76233,-0.75778 0,0 -0.34673,-1.49995 -0.34673,-1.49995 C 199.07423,396.33042 198.58544,396 198.07318,396 c 0,0 -4.62328,0 -4.62328,0 0,0 0,0 0,0 m 8.32191,0 c -0.51226,0 -0.84544,0.33042 -0.74671,0.74227 0,0 0.35957,1.49995 0.35957,1.49995 0.10049,0.41915 0.59979,0.75778 1.11916,0.75778 0,0 4.68751,0 4.68751,0 0.51937,0 0.84617,-0.33863 0.73312,-0.75778 0,0 -0.40452,-1.49995 -0.40452,-1.49995 C 207.40887,396.33042 206.90736,396 206.39511,396 c 0,0 -4.6233,0 -4.6233,0 0,0 0,0 0,0 m 11.09589,0 c -0.51226,0 -0.82846,0.33042 -0.70858,0.74227 0,0 0.43662,1.49994 0.43662,1.49994 0.12202,0.41916 0.63872,0.75779 1.15809,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.82878,-0.33863 0.6942,-0.75779 0,0 -0.48157,-1.49995 -0.48157,-1.49995 C 218.52174,396.33042 218.00325,396 217.49099,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.81573,0.33042 -0.67999,0.74226 0,0 0.49442,1.49995 0.49442,1.49995 0.13816,0.41916 0.66791,0.75779 1.18728,0.75779 0,0 4.6875,0 4.6875,0 0.51938,0 0.81574,-0.33863 0.66501,-0.75778 0,0 -0.53936,-1.49995 -0.53936,-1.49995 C 226.85638,396.33043 226.32517,396 225.81291,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0 m 8.32192,0 c -0.51226,0 -0.80301,0.33043 -0.6514,0.74227 0,0 0.5522,1.49995 0.5522,1.49995 0.15433,0.41915 0.69712,0.75778 1.21649,0.75778 0,0 4.6875,0 4.6875,0 0.51938,0 0.80269,-0.33863 0.63582,-0.75778 0,0 -0.59716,-1.49995 -0.59716,-1.49995 C 235.19103,396.33042 234.64709,396 234.13483,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0" - style="display:inline;fill:url(#linearGradient3800);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccsccccccsccccccscscsccccscscccsccccsccccccscsccccccccccccccccccccccccccccsccccscccscccccccccccccscccccsccsccccccccccscscsccccsccccccscscccsc" - id="path2707" - d="m 54.028132,400 c -0.523009,0 -1.09378,0.33823 -1.28125,0.75 0,0 -0.6875,1.5 -0.6875,1.5 -0.190879,0.41924 0.09455,0.75 0.625,0.75 10e-7,0 11.46875,0 11.46875,0 0.53043,0 1.08532,-0.33076 1.25,-0.75 -10e-7,0 0.59375,-1.5 0.59375,-1.5 0.16174,-0.41177 -0.13325,-0.75 -0.65625,-0.75 10e-7,0 -11.3125,0 -11.3125,0 z m 15.09375,0 c -0.523008,0 -1.06068,0.33823 -1.21875,0.75 0,0 -0.59375,1.5 -0.59375,1.5 -0.160941,0.41924 0.15707,0.75 0.6875,0.75 -4e-6,0 4.78125,0 4.78125,0 0.530433,0 1.07092,-0.33076 1.21875,-0.75 -10e-7,0 0.53125,-1.5 0.53125,-1.5 0.145203,-0.41177 -0.16449,-0.75 -0.6875,-0.75 -10e-7,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523003,0 -1.04598,0.33823 -1.1875,0.75 -2e-6,0 -0.53125,1.5 -0.53125,1.5 -0.144088,0.41924 0.15707,0.75 0.6875,0.75 2e-6,0 4.8125,0 4.8125,0 0.530431,0 1.05651,-0.33076 1.1875,-0.75 -2e-6,0 0.46875,-1.5 0.46875,-1.5 0.128662,-0.41177 -0.19574,-0.75 -0.71875,-0.75 10e-7,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523009,0 -1.06251,0.33823 -1.1875,0.75 2e-6,0 -0.4375,1.5 -0.4375,1.5 -0.127249,0.41924 0.18832,0.75 0.71875,0.75 -3e-6,0 4.78125,0 4.78125,0 0.530423,0 1.07335,-0.33076 1.1875,-0.75 0,0 0.40625,-1.5 0.40625,-1.5 0.112118,-0.41177 -0.227,-0.75 -0.75,-0.75 -3e-6,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523007,0 -1.04781,0.33823 -1.15625,0.75 10e-7,0 -0.375,1.5 -0.375,1.5 -0.11041,0.41924 0.21958,0.75 0.75,0.75 -3e-6,0 4.78125,0 4.78125,0 0.530418,0 1.02769,-0.33076 1.125,-0.75 -10e-7,0 0.374998,-1.5 0.374998,-1.5 0.0956,-0.41177 -0.258238,-0.75 -0.781248,-0.75 -10e-7,0 -4.71875,0 -4.71875,0 z m 8.499998,0 c -0.523,0 -1.0331,0.33823 -1.125,0.75 0,0 -0.34375,1.5 -0.34375,1.5 -0.0936,0.41924 0.28208,0.75 0.8125,0.75 0,0 4.78125,0 4.78125,0 0.53042,0 1.01329,-0.33076 1.09375,-0.75 0,0 0.28125,-1.5 0.28125,-1.5 0.079,-0.41177 -0.25824,-0.75 -0.78125,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -1.01839,0.33823 -1.09375,0.75 0,0 -0.28125,1.5 -0.28125,1.5 -0.0767,0.41924 0.28208,0.75 0.8125,0.75 0,0 4.8125,0 4.8125,0 0.53042,0 0.99888,-0.33076 1.0625,-0.75 0,0 0.21875,-1.5 0.21875,-1.5 0.0625,-0.41177 -0.2895,-0.75 -0.8125,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.46875,0 c -0.52301,0 -0.97245,0.33823 -1.03125,0.75 0,0 -0.21875,1.5 -0.21875,1.5 -0.0599,0.41924 0.31333,0.75 0.84375,0.75 0,0 4.78125,0 4.78125,0 0.53042,0 1.01571,-0.33075 1.0625,-0.75 0,0 0.15625,-1.5 0.15625,-1.5 0.0459,-0.41179 -0.32074,-0.75 -0.84375,-0.75 0,0 -4.75,0 -4.75,0 z m 8.5,0 c -0.523,0 -0.95773,0.33823 -1,0.75 0,0 -0.15625,1.5 -0.15625,1.5 -0.043,0.41924 0.34457,0.75 0.875,0.75 0,0 4.78125,0 4.78125,0 0.53044,0 0.97006,-0.33075 1,-0.75 1e-5,0 0.125,-1.5 0.125,-1.5 0.0294,-0.41177 -0.38324,-0.75 -0.90625,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -0.94302,0.33822 -0.96875,0.75 0,-10e-6 -0.0937,1.5 -0.0937,1.5 -0.0262,0.41925 0.37582,0.75 0.90625,0.75 0,0 4.78125,0 4.78125,0 0.53043,0 0.95565,-0.33076 0.96875,-0.75 1e-5,0 0.0625,-1.5 0.0625,-1.5 0.0129,-0.41177 -0.4145,-0.75 -0.9375,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -0.95956,0.33823 -0.96875,0.75 0,0 -0.0312,1.5 -0.0312,1.5 -0.009,0.41925 0.40707,0.75 0.9375,0.75 0,0 4.8125,0 4.8125,0 0.53043,0 0.94124,-0.33076 0.9375,-0.75 0,0 0,-1.5 0,-1.5 -0.004,-0.41177 -0.44574,-0.75 -0.96875,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.523,0 -0.94485,0.33823 -0.9375,0.75 1e-5,0 0.0312,1.5 0.0312,1.5 0.007,0.41924 0.43832,0.75 0.96875,0.75 0,0 4.78125,0 4.78125,0 0.53043,0 0.95809,-0.33076 0.9375,-0.75 0,0 -0.0937,-1.5 -0.0937,-1.5 -0.0202,-0.41177 -0.44574,-0.75 -0.96875,-0.75 -1e-5,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52302,0 -0.93014,0.33823 -0.90625,0.75 -1e-5,0 0.0937,1.5 0.0937,1.5 0.0243,0.41924 0.46957,0.75 1,0.75 l 14.34375,0 c 0.53043,0 0.93114,-0.33076 0.875,-0.75 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0551,-0.41177 -0.50825,-0.75 -1.03125,-0.75 l -14.15625,0 z m 51.90625,0 c -0.523,0 -0.84374,0.33823 -0.71875,0.75 0,0 0.46875,1.5 0.46875,1.5 0.12725,0.41924 0.65708,0.75 1.1875,0.75 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.8591,-0.33076 0.71875,-0.75 1e-5,0 -0.5,-1.5 -0.5,-1.5 -0.13785,-0.41177 -0.69574,-0.75 -1.21875,-0.75 1e-5,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52302,0 -0.82902,0.33823 -0.6875,0.75 0,0 0.53125,1.5 0.53125,1.5 0.14408,0.41924 0.68833,0.75 1.21875,0.75 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.81345,-0.33075 0.65625,-0.75 0,0 -0.5625,-1.5 -0.5625,-1.5 -0.15438,-0.41177 -0.69575,-0.75 -1.21875,-0.75 0,0 -4.71875,0 -4.71875,0 z m 8.5,0 c -0.52301,0 -0.81432,0.33822 -0.65625,0.75 0,-10e-6 0.59375,1.5 0.59375,1.5 0.16095,0.41925 0.71958,0.75 1.25,0.75 -1e-5,0 4.78125,0 4.78125,0 0.53042,0 0.79903,-0.33075 0.625,-0.75 0,0 -0.625,-1.5 -0.625,-1.5 -0.17093,-0.41177 -0.72699,-0.75 -1.25,-0.75 1e-5,0 -4.71875,0 -4.71875,0 z" - style="display:inline;fill:url(#linearGradient3802);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - id="path2709" - d="m 51.903041,404.00001 c -0.53421,0 -1.12119,0.33025 -1.31681,0.74194 0,0 -0.7127,1.49993 -0.7127,1.49993 -0.19925,0.41932 0.0761,0.75812 0.61802,0.75812 0,0 15.65218,0 15.65218,0 0.54195,0 1.11084,-0.3388 1.27492,-0.75812 0,0 0.58694,-1.49993 0.58694,-1.49993 0.16109,-0.41169 -0.13976,-0.74194 -0.67398,-0.74194 0,0 -15.42857,0 -15.42857,0 0,0 0,0 0,0 m 19.28572,0 c -0.53422,0 -1.09043,0.33025 -1.24769,0.74194 0,0 -0.57296,1.49993 -0.57296,1.49993 -0.16017,0.41932 0.1467,0.75812 0.68866,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 1.09664,-0.3388 1.24315,-0.75812 0,0 0.52404,-1.49993 0.52404,-1.49993 0.14384,-0.41169 -0.17086,-0.74194 -0.70508,-0.74194 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -1.07658,0.33025 -1.21658,0.74194 0,0 -0.51008,1.49993 -0.51008,1.49993 -0.14259,0.41932 0.17849,0.75812 0.72045,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 1.08244,-0.3388 1.21136,-0.75812 0,0 0.46116,-1.49993 0.46116,-1.49993 0.12657,-0.41169 -0.20197,-0.74194 -0.73619,-0.74194 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -1.06274,0.33025 -1.18548,0.74194 0,0 -0.44718,1.49993 -0.44718,1.49993 -0.12502,0.41932 0.21027,0.75812 0.75222,0.75812 0,0 4.89131,0 4.89131,0 0.54195,0 1.06823,-0.3388 1.17957,-0.75812 0,0 0.39828,-1.49993 0.39828,-1.49993 0.10931,-0.41169 -0.23308,-0.74194 -0.76729,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -1.04889,0.33025 -1.15437,0.74194 0,0 -0.3843,1.49993 -0.3843,1.49993 -0.10744,0.41932 0.24205,0.75812 0.78401,0.75812 0,0 4.891309,0 4.891309,0 0.54195,0 1.05402,-0.3388 1.14778,-0.75812 0,0 0.33539,-1.49993 0.33539,-1.49993 0.0921,-0.41169 -0.26418,-0.74194 -0.79839,-0.74194 0,0 -4.821429,0 -4.821429,0 0,0 0,0 0,0 m 8.678579,0 c -0.53421,0 -1.03506,0.33025 -1.12327,0.74194 0,0 -0.32142,1.49993 -0.32142,1.49993 -0.0898,0.41932 0.27385,0.75812 0.81581,0.75812 0,0 4.89129,0 4.89129,0 0.54197,0 1.03982,-0.3388 1.11601,-0.75812 0,0 0.2725,-1.49993 0.2725,-1.49993 0.0748,-0.41169 -0.29528,-0.74194 -0.82949,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 M 114.58162,404 c -0.53421,10e-6 -1.02121,0.33026 -1.09217,0.74195 0,0 -0.25853,1.49993 -0.25853,1.49993 -0.0723,0.41932 0.30564,0.75812 0.8476,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 1.02561,-0.3388 1.08421,-0.75812 0,0 0.20962,-1.49993 0.20962,-1.49993 0.0575,-0.41169 -0.32639,-0.74194 -0.8606,-0.74194 0,0 -4.82143,-10e-6 -4.82143,-10e-6 0,0 0,0 0,0 m 8.67857,10e-6 c -0.53421,-10e-6 -1.00736,0.33025 -1.06106,0.74194 0,0 -0.19564,1.49993 -0.19564,1.49993 -0.0547,0.41932 0.33742,0.75812 0.87936,0.75812 0,0 4.89132,0 4.89132,0 0.54195,0 1.0114,-0.3388 1.05242,-0.75812 0,0 0.14674,-1.49993 0.14674,-1.49993 0.0403,-0.41169 -0.3575,-0.74194 -0.89171,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53421,0 -0.99351,0.33025 -1.02995,0.74194 0,0 -0.13276,1.49993 -0.13276,1.49993 -0.0371,0.41932 0.36919,0.75812 0.91116,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 0.99721,-0.3388 1.02065,-0.75812 0,0 0.0839,-1.49993 0.0839,-1.49993 0.023,-0.41169 -0.3886,-0.74194 -0.92282,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53421,0 -0.97967,0.33025 -0.99884,0.74194 0,0 -0.0699,1.49993 -0.0699,1.49993 -0.0195,0.41932 0.40099,0.75812 0.94295,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 0.983,-0.3388 0.98886,-0.75812 0,0 0.021,-1.49993 0.021,-1.49993 0.006,-0.41169 -0.4197,-0.74194 -0.95392,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53421,0 -0.96582,0.33025 -0.96774,0.74194 0,0 -0.007,1.49993 -0.007,1.49993 -0.002,0.41932 0.43277,0.75812 0.97472,0.75812 0,0 4.89131,0 4.89131,0 0.54196,0 0.96879,-0.3388 0.95707,-0.75812 0,0 -0.0419,-1.49993 -0.0419,-1.49993 -0.0115,-0.41169 -0.45081,-0.74195 -0.98503,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67858,0 c -0.53422,0 -0.95198,0.33025 -0.93664,0.74194 0,0 0.0559,1.49993 0.0559,1.49993 0.0156,0.41932 0.46456,0.75812 1.00651,0.75812 0,0 19.56522,0 19.56522,0 0.54195,0 0.93091,-0.3388 0.87231,-0.75812 0,0 -0.20962,-1.49993 -0.20962,-1.49993 -0.0575,-0.41169 -0.53377,-0.74194 -1.06797,-0.74194 0,0 -19.28571,0 -19.28571,0 0,0 0,0 0,0 m 37.60714,0 c -0.53422,0 -0.89198,0.33025 -0.80185,0.74194 0,0 0.32841,1.49993 0.32841,1.49993 0.0918,0.41932 0.60229,0.75812 1.14424,0.75812 0,0 4.89131,0 4.89131,0 0.54195,0 0.89303,-0.3388 0.78755,-0.75812 0,0 -0.37731,-1.49993 -0.37731,-1.49993 -0.10356,-0.41169 -0.61671,-0.74194 -1.15092,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 20.25,0 c -0.53423,0 -0.85968,0.33025 -0.72927,0.74194 0,0 0.47514,1.49993 0.47514,1.49993 0.13283,0.41932 0.67645,0.75812 1.21841,0.75812 0,0 4.89131,0 4.89131,0 0.54195,0 0.8599,-0.3388 0.71339,-0.75812 0,0 -0.52404,-1.49993 -0.52404,-1.49993 -0.14385,-0.41169 -0.6893,-0.74194 -1.22352,-0.74194 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -0.84583,0.33025 -0.69816,0.74194 0,0 0.53802,1.49993 0.53802,1.49993 0.15042,0.41932 0.70824,0.75812 1.2502,0.75812 0,0 4.8913,0 4.8913,0 0.54196,0 0.84569,-0.3388 0.68161,-0.75812 0,0 -0.58694,-1.49993 -0.58694,-1.49993 -0.16109,-0.41169 -0.72039,-0.74194 -1.2546,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0 m 8.67857,0 c -0.53422,0 -0.83198,0.33025 -0.66705,0.74194 0,0 0.60091,1.49993 0.60091,1.49993 0.16799,0.41932 0.74002,0.75812 1.28198,0.75812 0,0 4.8913,0 4.8913,0 0.54195,0 0.83148,-0.3388 0.64982,-0.75812 0,0 -0.64982,-1.49993 -0.64982,-1.49993 -0.17835,-0.41169 -0.7515,-0.74195 -1.28571,-0.74194 0,0 -4.82143,0 -4.82143,0 0,0 0,0 0,0" - style="display:inline;fill:url(#linearGradient3804);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" - id="path2711" - d="m 49.781741,408 c -0.54591,0 -1.14928,0.33016 -1.35357,0.74176 0,0 -0.7445,1.49994 -0.7445,1.49994 -0.20817,0.41941 0.0696,0.7583 0.62362,0.7583 0,0 9,0 9,0 0.554,0 1.15007,-0.33889 1.33579,-0.7583 0,0 0.66421,-1.49994 0.66421,-1.49994 0.18226,-0.4116 -0.11102,-0.74176 -0.65694,-0.74176 0,0 -8.86861,0 -8.86861,0 0,0 0,0 0,0 m 12.81022,0 c -0.54591,0 -1.1284,0.33016 -1.30665,0.74176 0,0 -0.64961,1.49994 -0.64961,1.49994 -0.18164,0.41941 0.11759,0.7583 0.67159,0.7583 0,0 7,0 7,0 0.554,0 1.13193,-0.33889 1.2952,-0.7583 0,0 0.58392,-1.49994 0.58392,-1.49994 0.16023,-0.4116 -0.15073,-0.74176 -0.69664,-0.74176 0,0 -6.89781,0 -6.89781,0 0,0 0,0 0,0 m 10.83942,0 c -0.54592,0 -1.11072,0.33016 -1.26695,0.74176 0,0 -0.56932,1.49994 -0.56932,1.49994 -0.15919,0.41941 0.15818,0.7583 0.71218,0.7583 0,0 8,0 8,0 0.554,0 1.11214,-0.33889 1.25092,-0.7583 0,0 0.49633,-1.49994 0.49633,-1.49994 0.1362,-0.4116 -0.19404,-0.74176 -0.73995,-0.74176 0,0 -7.88321,0 -7.88321,0 0,0 0,0 0,0 m 11.82481,0 c -0.54591,0 -1.09144,0.33016 -1.22363,0.74176 0,0 -0.48174,1.49994 -0.48174,1.49994 -0.13469,0.41941 0.20247,0.7583 0.75647,0.7583 0,0 48.999999,0 48.999999,0 0.554,0 1.02473,-0.33889 1.05535,-0.7583 0,0 0.10948,-1.49994 0.10948,-1.49994 0.03,-0.4116 -0.38535,-0.74176 -0.93126,-0.74175 0,0 -48.284669,-10e-6 -48.284669,-10e-6 0,0 0,0 0,0 m 52.226289,0 c -0.54591,0 -1.0063,0.33016 -1.03234,0.74176 0,0 -0.0949,1.49994 -0.0949,1.49994 -0.0265,0.41941 0.39803,0.7583 0.95204,0.7583 0,0 7.99999,0 7.99999,0 0.55401,0 1.00494,-0.33889 1.01107,-0.7583 0,0 0.0219,-1.49994 0.0219,-1.49994 0.006,-0.4116 -0.42865,-0.74176 -0.97457,-0.74176 0,0 -7.8832,0 -7.8832,0 0,0 0,0 0,0 m 11.8248,0 c -0.54591,0 -0.987,0.33016 -0.98901,0.74176 0,0 -0.007,1.49994 -0.007,1.49994 -0.002,0.41941 0.44231,0.7583 0.9963,0.7583 0,0 7,0 7,0 0.55401,0 0.98681,-0.33889 0.97048,-0.7583 0,0 -0.0584,-1.49994 -0.0584,-1.49994 -0.016,-0.4116 -0.46835,-0.74176 -1.01428,-0.74176 0,0 -6.89781,0 -6.89781,0 0,0 0,0 0,0 m 10.83942,0 c -0.54591,0 -0.96934,0.33016 -0.94931,0.74176 0,0 0.073,1.49994 0.073,1.49994 0.0201,0.41941 0.48262,0.7583 1.03662,0.7583 0,0 7,0 7,0 0.55401,0 0.96867,-0.33889 0.92989,-0.7583 0,0 -0.13868,-1.49994 -0.13868,-1.49994 -0.038,-0.4116 -0.50806,-0.74176 -1.05397,-0.74176 0,0 -6.89782,0 -6.89782,0 0,0 0,0 0,0 m 10.83942,0 c -0.54592,0 -0.95167,0.33016 -0.90961,0.74176 0,0 0.15328,1.49994 0.15328,1.49994 0.0429,0.41941 0.52349,0.7583 1.07749,0.7583 0,0 7,0 7,0 0.554,0 0.95053,-0.33889 0.8893,-0.7583 0,0 -0.21897,-1.49994 -0.21897,-1.49994 -0.0601,-0.4116 -0.54777,-0.74175 -1.09367,-0.74176 0,0 -6.89782,0 -6.89782,0 0,0 0,0 0,0 m 16.75182,0 c -0.54591,0 -0.92435,0.33015 -0.84824,0.74176 0,0 0.27736,1.49994 0.27736,1.49994 0.0776,0.41941 0.58622,0.7583 1.14022,0.7583 0,0 5,0 5,0 0.55401,0 0.92579,-0.33889 0.83395,-0.7583 0,0 -0.32845,-1.49994 -0.32845,-1.49994 -0.0901,-0.4116 -0.60191,-0.74176 -1.14783,-0.74176 0,0 -4.92701,0 -4.92701,0 0,0 0,0 0,0 m 8.86861,0 c -0.54591,0 -0.90989,0.33016 -0.81575,0.74176 0,0 0.34305,1.49994 0.34305,1.49994 0.0959,0.41941 0.61943,0.7583 1.17343,0.7583 0,0 5.00001,0 5.00001,0 0.55399,0 0.91094,-0.33889 0.80073,-0.7583 0,0 -0.39414,-1.49994 -0.39414,-1.49994 -0.10816,-0.4116 -0.63441,-0.74175 -1.18031,-0.74176 0,0 -4.92702,0 -4.92702,0 0,0 0,0 0,0 m 8.86862,0 c -0.54592,0 -0.89544,0.33016 -0.78327,0.74176 0,0 0.40874,1.49994 0.40874,1.49994 0.11429,0.41941 0.65264,0.7583 1.20664,0.7583 0,0 5.00001,0 5.00001,0 0.55399,0 0.8961,-0.33889 0.76752,-0.7583 0,0 -0.45984,-1.49994 -0.45984,-1.49994 C 211.48879,408.33016 210.94809,408 210.40218,408 c 0,0 -4.92701,0 -4.92701,0 0,0 0,0 0,0 m 11.82481,0 c -0.54591,10e-6 -0.87615,0.33016 -0.73995,0.74176 0,0 0.49633,1.49994 0.49633,1.49994 0.13878,0.41941 0.69692,0.7583 1.25092,0.7583 0,0 14,0 14,0 0.55401,0 0.86147,-0.33889 0.69004,-0.7583 0,0 -0.61312,-1.49994 -0.61312,-1.49994 C 232.21596,408.33016 231.64152,408 231.0956,408 c 0,0 -13.79562,0 -13.79562,0 0,0 0,0 0,0 m 17.73723,0 c -0.54591,0 -0.84724,0.33016 -0.67498,0.74176 0,0 0.62771,1.49994 0.62771,1.49994 0.17552,0.41941 0.76334,0.7583 1.31734,0.7583 0,0 5,0 5,0 0.55401,0 0.84663,-0.33889 0.65683,-0.7583 0,0 -0.67881,-1.49994 -0.67881,-1.49994 C 241.09903,408.33016 240.51014,408 239.96423,408 c 0,0 -4.92702,0 -4.92702,0 0,0 0,0 0,0" - style="display:inline;fill:url(#linearGradient3806);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccc" - id="path2713" - d="m 241.87787,404 c -0.53421,0 -0.81814,0.30153 -0.63594,0.67742 0,0 2.71396,5.59933 2.71396,5.59933 0.19472,0.40003 0.79739,0.72325 1.35139,0.72325 0,0 5.00001,0 5.00001,0 0.55399,0 0.83178,-0.32322 0.62361,-0.72325 0,0 -2.91394,-5.59933 -2.91394,-5.59933 C 247.82134,404.30153 247.23435,404 246.70013,404 c 0,0 -4.82142,0 -4.82142,0 0,0 0,0 0,0" - style="display:inline;fill:url(#linearGradient3808);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccccc" - id="path2716" - d="m 238.07345,396 c -0.51226,0 -0.79028,0.30198 -0.6228,0.67834 0,0 2.49171,5.5994 2.49171,5.5994 0.17778,0.39951 0.74843,0.72226 1.27885,0.72226 0,0 4.78724,0 4.78724,0 0.53042,0 0.80324,-0.32276 0.61236,-0.72226 0,0 -2.67531,-5.5994 -2.67531,-5.5994 C 243.76567,396.30197 243.20899,396 242.69674,396 c 0,0 -4.62329,0 -4.62329,0 0,0 0,0 0,0" - style="display:inline;fill:url(#linearGradient3810);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - </g> - </g> - <use - style="display:inline;enable-background:new" - x="0" - y="0" - xlink:href="#g5060" - id="use5107" - width="2000" - height="600" /> - <g - style="display:inline;enable-background:new" - id="g2770" - transform="translate(-20.000023,744.14152)"> - <path - transform="matrix(0.46199322,0,0,0.4937608,3.0222567,-10.79137)" - id="path5623" - d="m 115.15625,245.5 c -3.34118,3.24479 -8.07617,5.35516 -13.15625,7.8125 -0.65659,0.31761 -1.28407,0.68883 -1.65625,1.25 C 101.9707,256.99291 108.875,257 115,257 l 66,0 c 6.125,0 13.0293,-0.007 14.65625,-2.4375 -0.37218,-0.56117 -0.99967,-0.93239 -1.65625,-1.25 -5.08008,-2.45734 -9.81507,-4.56771 -13.15625,-7.8125 l -65.6875,0 z" - style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5659);enable-background:new" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.46199322,0,0,0.4937608,3.0222568,-10.79137)" - id="path5663" - d="m 115.15625,245.5 c -3.34118,3.24479 -8.07617,5.35516 -13.15625,7.8125 -0.65659,0.31761 -1.28407,0.68883 -1.65625,1.25 C 101.9707,256.99291 108.875,257 115,257 l 66,0 c 6.125,0 13.0293,-0.007 14.65625,-2.4375 -0.37218,-0.56117 -0.99967,-0.93239 -1.65625,-1.25 -5.08008,-2.45734 -9.81507,-4.56771 -13.15625,-7.8125 l -65.6875,0 z" - style="display:inline;opacity:0.3;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter5677);enable-background:new" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient8775);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - d="m 58.7304,92.955372 0.436788,8.979548 c 0.284503,5.84882 -3.494307,7.39493 -7.862191,9.50777 -0.44935,0.21736 -0.873576,0.47116 -0.873576,1.05642 l 0,1.58463 c 0,1.58462 3.494307,1.58462 6.551826,1.58462 l 28.828033,0 c 3.057519,0 6.551826,0 6.551826,-1.58462 l 0,-1.58463 c 0,-0.58526 -0.42423,-0.83906 -0.873576,-1.05642 -4.367884,-2.11284 -8.146694,-3.65895 -7.862192,-9.50777 l 0.436789,-8.979548 -25.333727,0 z" - id="path5383" - sodipodi:nodetypes="czsccccccszcc" - inkscape:connector-curvature="0" /> - <path - d="m 119.48438,204.46094 0.97656,20.08008 c 0.33058,6.79614 -1.73679,11.20248 -5.15039,14.43945 -3.41361,3.23697 -8.11681,5.33108 -13.10938,7.74609 -0.5002,0.24196 -0.95339,0.49935 -1.25781,0.81055 -0.30442,0.3112 -0.48242,0.65432 -0.48242,1.21289 l 0,3.625 c 0,0.73754 0.36065,1.24302 1.13281,1.70117 0.77216,0.45816 1.94648,0.79404 3.35352,1.01563 2.81407,0.44316 6.55267,0.44726 10.05273,0.44726 l 66,0 c 3.50006,0 7.23866,-0.004 10.05273,-0.44726 1.40704,-0.22159 2.58136,-0.55747 3.35352,-1.01563 0.77216,-0.45815 1.13281,-0.96363 1.13281,-1.70117 l 0,-3.625 c 0,-0.55857 -0.178,-0.90169 -0.48242,-1.21289 -0.30442,-0.3112 -0.75762,-0.56859 -1.25781,-0.81055 -4.99257,-2.41501 -9.69577,-4.50912 -13.10938,-7.74609 -3.4136,-3.23697 -5.48097,-7.64331 -5.15039,-14.43945 l 0.97656,-20.08008 -57.03124,0 z" - id="path4469" - style="display:inline;opacity:0.50700001;fill:url(#radialGradient8777);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter4465);enable-background:new" - inkscape:original="M 119 204 L 120 224.5625 C 120.65135 237.953 112 241.47529 102 246.3125 C 100.97124 246.81013 100 247.41009 100 248.75 L 100 252.375 C 99.999997 256.0029 108 256 115 256 L 181 256 C 188 256 196 256.0029 196 252.375 L 196 248.75 C 196 247.41009 195.02875 246.81013 194 246.3125 C 184 241.47529 175.34865 237.953 176 224.5625 L 177 204 L 119 204 z " - inkscape:radius="-0.46100891" - sodipodi:type="inkscape:offset" /> - <path - id="path5598" - d="m 58.730391,92.955372 0.436789,8.954158 24.46015,0 0.436788,-8.954158 -25.333727,0 z" - style="display:inline;opacity:0.35;fill:url(#linearGradient8779);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - transform="matrix(0.43678839,0,0,0.43678839,6.7525729,-44.196187)" - clip-path="url(#clipPath5584)" - style="display:inline;fill:none;stroke:url(#linearGradient8781);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999993;stroke-opacity:1;filter:url(#filter5592);enable-background:new" - d="m 119.00002,314 1,20.55814 c 0.65135,13.3905 -8,16.93023 -18,21.76744 -1.02876,0.49763 -2,1.0787 -2,2.41861 l 0,3.62791 c 0,3.6279 8,3.6279 15,3.6279 l 66,0 c 7,0 15,0 15,-3.6279 l 0,-3.62791 c 0,-1.33991 -0.97125,-1.92098 -2,-2.41861 -10,-4.83721 -18.65135,-8.37694 -18,-21.76744 l 1,-20.55814 -58,0 z" - id="path5580" - sodipodi:nodetypes="czsccccccszcc" - inkscape:connector-curvature="0" /> - <rect - ry="0.94092482" - rx="0.92817533" - y="29.169882" - x="22.476974" - height="65.532639" - width="97.840584" - id="rect4022" - style="display:inline;fill:url(#radialGradient8783);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - <rect - y="34.862511" - x="25.534473" - height="55.035339" - width="91.725586" - id="rect5233" - style="display:inline;opacity:0.3;fill:url(#linearGradient8785);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - <rect - y="35.299297" - x="25.971262" - height="54.161762" - width="90.852005" - id="rect3248" - style="display:inline;fill:url(#radialGradient8787);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - <rect - y="35.299297" - x="25.971262" - height="54.161762" - width="90.852005" - id="rect5685" - style="display:inline;opacity:0.19178084;fill:url(#linearGradient8789);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - <path - style="display:inline;opacity:0.24497992;fill:url(#radialGradient8791);fill-opacity:1;stroke:none;enable-background:new" - d="m 94.348502,36.172878 22.037958,0 0,53.288184 -48.483512,0 26.445554,-53.288184 z" - id="path5379" - sodipodi:nodetypes="ccccc" - inkscape:connector-curvature="0" /> - <rect - transform="matrix(0.43678839,0,0,0.43678839,6.7525729,-122.8181)" - clip-path="url(#clipPath5221)" - y="362" - x="44" - height="125" - width="208.75005" - id="rect5217" - style="display:inline;opacity:0.6;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5252);enable-background:new" /> - <path - sodipodi:nodetypes="ccccccccc" - id="rect5262" - d="m 38.125046,-270 219.749954,0 c 1.17725,0 2.125,0.94775 2.125,2.125 l 0,143.75 c 0,1.17725 -0.94775,2.125 -2.125,2.125 l -219.749954,0 c -1.17725,0 -2.125,-0.94775 -2.125,-2.125 l 0,-143.75 c 0,-1.17725 0.94775,-2.125 2.125,-2.125 z" - clip-path="url(#clipPath5266)" - style="display:inline;opacity:0.7;fill:none;stroke:url(#linearGradient8793);stroke-width:1.98621953;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter5681);enable-background:new" - transform="matrix(0.43678839,0,0,0.44287032,6.7525729,148.73878)" - inkscape:connector-curvature="0" /> - <path - id="rect5338" - d="m 22.953898,30.358132 c -0.06696,0.07181 -0.135052,0.141497 -0.176651,0.232044 0.109453,0.20427 0.320057,0.341241 0.570721,0.341241 l 96.098582,0 c 0.25066,0 0.46127,-0.136971 0.57072,-0.341241 -0.0416,-0.09055 -0.10969,-0.16023 -0.17665,-0.232044 -0.10828,0.08433 -0.24253,0.136496 -0.39407,0.136496 l -96.098582,0 c -0.151538,0 -0.285791,-0.05216 -0.39407,-0.136496 z" - style="display:inline;fill:url(#radialGradient8795);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <rect - transform="scale(1,-1)" - y="-90.334648" - x="25.534473" - height="0.43678838" - width="91.725586" - id="rect5359" - style="display:inline;fill:url(#radialGradient8797);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - <rect - transform="scale(-1,1)" - y="34.862511" - x="-117.69682" - height="55.035339" - width="0.43676841" - id="rect5369" - style="display:inline;fill:url(#radialGradient8799);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - <path - id="path5491" - d="m 50.472361,112.18771 c -0.03094,0.0931 -0.04095,0.19649 -0.04095,0.31394 l 0,1.58336 c -10e-7,1.58462 3.494307,1.58335 6.551826,1.58335 l 28.828034,0 c 3.057518,0 6.551826,10e-4 6.551826,-1.58335 l 0,-1.58336 c 0,-0.11745 -0.01,-0.22081 -0.04093,-0.31394 -0.411468,1.29361 -3.653338,1.29671 -6.510899,1.29671 l -28.828034,0 c -2.857557,0 -6.099431,-0.003 -6.510877,-1.29671 z" - style="display:inline;fill:url(#linearGradient8801);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - id="path5525" - d="m 50.472361,112.18771 c -0.03092,0.0581 -0.04093,0.12251 -0.04093,0.19575 l 0,0.98727 c 0,0.98806 3.494307,0.98727 6.551826,0.98727 l 28.828034,0 c 3.057518,0 6.551825,8.7e-4 6.551825,-0.98727 l 0,-0.98727 c 0,-0.0732 -0.01,-0.13768 -0.04093,-0.19575 -0.411446,0.8066 -3.653315,0.80853 -6.510877,0.80853 l -28.828034,0 c -2.857557,0 -6.099431,-0.002 -6.510877,-0.80853 z" - style="display:inline;fill:url(#linearGradient8803);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - id="path5531" - d="m 50.472361,112.18771 c 0.411446,1.29361 3.65332,1.29671 6.510877,1.29671 l 28.828034,0 c 2.857561,0 6.099431,-0.003 6.510877,-1.29671 -0.411446,0.8066 -3.653316,0.80532 -6.510877,0.80532 l -28.828034,0 c -2.857557,0 -6.099431,10e-4 -6.510877,-0.80532 z m 0,0 c -0.02416,0.0453 -0.02346,0.0959 -0.0273,0.15014 0.0064,-0.0522 0.01184,-0.10357 0.0273,-0.15014 z m -0.0273,0.15014 c -8.74e-4,0.0153 -0.01363,0.0249 -0.01363,0.0409 l 0,0.12285 c 0,-0.0587 0.0073,-0.11164 0.01363,-0.1638 z m 41.877087,-0.15014 c 0.01546,0.0466 0.02092,0.098 0.0273,0.15014 -0.0039,-0.0542 -0.0031,-0.10485 -0.0273,-0.15014 z m 0.0273,0.15014 c 0.0064,0.0522 0.01363,0.10507 0.01363,0.1638 l 0,-0.12285 c 0,-0.0161 -0.01258,-0.0257 -0.01363,-0.0409 z" - style="display:inline;opacity:0.75;fill:url(#radialGradient8805);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <path - id="path5575" - d="m 50.431412,113.85296 0,0.23205 c -1e-6,1.58462 3.494307,1.58335 6.551826,1.58335 l 28.828034,0 c 3.057518,0 6.551826,10e-4 6.551826,-1.58335 l 0,-0.23205 c 0,1.38577 -3.494308,1.37861 -6.551826,1.37861 l -28.828034,0 c -3.057519,0 -6.551827,0.007 -6.551826,-1.37861 z" - style="display:inline;opacity:0.19178084;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - <circle - id="path5553" - style="display:inline;fill:url(#radialGradient8807);fill-opacity:1;stroke:none;enable-background:new" - cx="52.12397" - cy="113.04763" - r="1.1465695" /> - <rect - transform="matrix(0.43678839,0,0,0.44002814,6.7525729,3.4147904)" - ry="1" - rx="0.5" - y="63" - x="38" - height="143" - width="1" - id="rect5695" - style="display:inline;fill:url(#radialGradient8809);fill-opacity:1;stroke:none;filter:url(#filter5713);enable-background:new" /> - <rect - transform="matrix(0.43678839,0,0,-0.44002814,7.1893613,121.78236)" - ry="1" - rx="0.5" - y="63" - x="257" - height="143" - width="1" - id="rect5717" - style="display:inline;opacity:0.38356162;fill:url(#radialGradient8811);fill-opacity:1;stroke:none;filter:url(#filter5713);enable-background:new" /> - <circle - id="path4066" - style="display:inline;fill:url(#radialGradient8813);fill-opacity:1;stroke:none;enable-background:new" - cx="90.51062" - cy="112.97042" - r="0.68328547" /> - <rect - transform="scale(1,-1)" - y="-93.828949" - x="23.449694" - height="0.43678838" - width="95.895142" - id="rect4473" - style="display:inline;opacity:0.36529679;fill:url(#radialGradient8815);fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - <g - id="g4477" - transform="matrix(0.43678839,0,0,0.43678839,6.7525729,3.8505364)"> - <path - style="display:inline;opacity:0.18264842;fill:url(#linearGradient8817);fill-opacity:1;stroke:none;enable-background:new" - d="m 240,200 c -2.19965,0 -4,1.80035 -4,4 l 0,4 12,0 0,-4 c 0,-2.19965 -1.80035,-4 -4,-4 l -4,0 z" - id="path4088" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient8819);fill-opacity:1;stroke:none;enable-background:new" - d="m 240,201 c -1.66165,0 -3,1.33835 -3,3 l 0,4 10,0 0,-4 c 0,-1.66165 -1.33835,-3 -3,-3 l -4,0 z" - id="rect4080" - inkscape:connector-curvature="0" /> - <path - style="display:inline;opacity:0.55707762;fill:url(#radialGradient8821);fill-opacity:1;stroke:none;enable-background:new" - d="m 240,201 c -1.66165,0 -3,1.33835 -3,3 l 0,4 10,0 0,-4 c 0,-1.66165 -1.33835,-3 -3,-3 l -4,0 z" - id="path4247" - sodipodi:nodetypes="ccccccc" - inkscape:connector-curvature="0" /> - <path - style="display:inline;fill:url(#linearGradient8823);fill-opacity:1;stroke:none;enable-background:new" - d="m 240,203 c -0.58774,0 -1,0.41226 -1,1 l 0,3 6,0 0,-3 c 0,-0.58774 -0.41226,-1 -1,-1 l -4,0 z" - id="path4148" - sodipodi:nodetypes="ccccccc" - transform="matrix(1,0,0,0.75,0,51.75)" - inkscape:connector-curvature="0" /> - <path - style="display:inline;opacity:0.65;fill:none;stroke:url(#linearGradient8825);stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter4461);enable-background:new" - d="m 240,211.32322 c -1.66165,0 -3,1.33835 -3,3 l 0,6.67678 10,0 0,-6.67678 c 0,-1.66165 -1.33835,-3 -3,-3 l -4,0 z" - id="path4361" - clip-path="url(#clipPath4367)" - sodipodi:nodetypes="ccccccc" - transform="translate(0,-10)" - inkscape:connector-curvature="0" /> - </g> - <path - sodipodi:nodetypes="ccccc" - id="path10688" - d="m 67.70441,36.172878 15.049343,0 -13.977229,38.874164 -7.425402,-0.43679 6.353288,-38.437374 z" - style="display:inline;opacity:0.24497992;fill:url(#radialGradient8827);fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - </g> - </g> -</svg> diff --git a/kpov_judge/web/kpov_judge/static/icons/drive-harddisk.png b/kpov_judge/web/kpov_judge/static/icons/drive-harddisk.png Binary files differdeleted file mode 100644 index ce482f2..0000000 --- a/kpov_judge/web/kpov_judge/static/icons/drive-harddisk.png +++ /dev/null diff --git a/kpov_judge/web/kpov_judge/static/icons/drive-harddisk.svg b/kpov_judge/web/kpov_judge/static/icons/drive-harddisk.svg deleted file mode 100644 index 5f36f85..0000000 --- a/kpov_judge/web/kpov_judge/static/icons/drive-harddisk.svg +++ /dev/null @@ -1,491 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - sodipodi:docname="drive-harddisk.svg" - inkscape:version="0.91 r13725" - sodipodi:version="0.32" - id="svg2913" - height="60" - width="48" - inkscape:output_extension="org.inkscape.output.svg.inkscape" - version="1.1"> - <defs - id="defs3"> - <inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 24 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="48 : 24 : 1" - inkscape:persp3d-origin="24 : 16 : 1" - id="perspective79" /> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5060" - id="radialGradient6719" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-2.774389,0,0,1.969706,112.7623,-872.8854)" - cx="605.71429" - cy="486.64789" - fx="605.71429" - fy="486.64789" - r="117.14286" /> - <linearGradient - inkscape:collect="always" - id="linearGradient5060"> - <stop - style="stop-color:black;stop-opacity:1;" - offset="0" - id="stop5062" /> - <stop - style="stop-color:black;stop-opacity:0;" - offset="1" - id="stop5064" /> - </linearGradient> - <radialGradient - inkscape:collect="always" - xlink:href="#linearGradient5060" - id="radialGradient6717" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.774389,0,0,1.969706,-1891.633,-872.8854)" - cx="605.71429" - cy="486.64789" - fx="605.71429" - fy="486.64789" - r="117.14286" /> - <linearGradient - id="linearGradient5048"> - <stop - style="stop-color:black;stop-opacity:0;" - offset="0" - id="stop5050" /> - <stop - id="stop5056" - offset="0.5" - style="stop-color:black;stop-opacity:1;" /> - <stop - style="stop-color:black;stop-opacity:0;" - offset="1" - id="stop5052" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5048" - id="linearGradient6715" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(2.774389,0,0,1.969706,-1892.179,-872.8854)" - x1="302.85715" - y1="366.64789" - x2="302.85715" - y2="609.50507" /> - <linearGradient - id="linearGradient2555"> - <stop - id="stop2557" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#e6e6e6;stop-opacity:1.0000000;" - offset="0.50000000" - id="stop2561" /> - <stop - id="stop2563" - offset="0.75000000" - style="stop-color:#ffffff;stop-opacity:1.0000000;" /> - <stop - style="stop-color:#e1e1e1;stop-opacity:1.0000000;" - offset="0.84166664" - id="stop2565" /> - <stop - id="stop2559" - offset="1.0000000" - style="stop-color:#ffffff;stop-opacity:1.0000000;" /> - </linearGradient> - <linearGradient - id="linearGradient4274"> - <stop - style="stop-color:#ffffff;stop-opacity:0.25490198;" - offset="0.0000000" - id="stop4276" /> - <stop - style="stop-color:#ffffff;stop-opacity:1.0000000;" - offset="1.0000000" - id="stop4278" /> - </linearGradient> - <linearGradient - id="linearGradient4264" - inkscape:collect="always"> - <stop - id="stop4266" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop4268" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient4254" - inkscape:collect="always"> - <stop - id="stop4256" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop4258" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient4244"> - <stop - id="stop4246" - offset="0.0000000" - style="stop-color:#e4e4e4;stop-opacity:1.0000000;" /> - <stop - id="stop4248" - offset="1.0000000" - style="stop-color:#d3d3d3;stop-opacity:1.0000000;" /> - </linearGradient> - <linearGradient - id="linearGradient4236" - inkscape:collect="always"> - <stop - id="stop4238" - offset="0" - style="stop-color:#eeeeee;stop-opacity:1;" /> - <stop - id="stop4240" - offset="1" - style="stop-color:#eeeeee;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient4228"> - <stop - id="stop4230" - offset="0.0000000" - style="stop-color:#bbbbbb;stop-opacity:1.0000000;" /> - <stop - id="stop4232" - offset="1.0000000" - style="stop-color:#9f9f9f;stop-opacity:1.0000000;" /> - </linearGradient> - <linearGradient - id="linearGradient4184"> - <stop - id="stop4186" - offset="0.0000000" - style="stop-color:#838383;stop-opacity:1.0000000;" /> - <stop - id="stop4188" - offset="1.0000000" - style="stop-color:#bbbbbb;stop-opacity:0.0000000;" /> - </linearGradient> - <linearGradient - gradientTransform="translate(0.795493,-19.887374)" - y2="35.28125" - x2="24.6875" - y1="35.28125" - x1="7.0625" - gradientUnits="userSpaceOnUse" - id="linearGradient4209" - xlink:href="#linearGradient4184" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="40.943935" - x2="36.183067" - y1="28.481176" - x1="7.6046205" - id="linearGradient4234" - xlink:href="#linearGradient4228" - inkscape:collect="always" - gradientTransform="translate(0,-18.561553)" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="33.758667" - x2="12.221823" - y1="37.205811" - x1="12.277412" - id="linearGradient4242" - xlink:href="#linearGradient4236" - inkscape:collect="always" - gradientTransform="translate(0,-18.561553)" /> - <radialGradient - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.286242,0.781698,-0.710782,1.169552,-2.354348,-23.438415)" - r="20.935818" - fy="2.958519" - fx="15.571491" - cy="2.958519" - cx="15.571491" - id="radialGradient4250" - xlink:href="#linearGradient4244" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="47.620636" - x2="44.0961" - y1="4.433136" - x1="12.378357" - id="linearGradient4260" - xlink:href="#linearGradient4254" - inkscape:collect="always" - gradientTransform="translate(0,-18.561553)" /> - <radialGradient - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1,0,0,0.651032,0,9.455693)" - r="23.555494" - fy="27.096155" - fx="23.201941" - cy="27.096155" - cx="23.201941" - id="radialGradient4270" - xlink:href="#linearGradient4264" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="26.357183" - x2="23.688078" - y1="11.318835" - x1="23.688078" - id="linearGradient4272" - xlink:href="#linearGradient4274" - inkscape:collect="always" - gradientTransform="translate(0,-18.561553)" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient2555" - id="linearGradient2553" - x1="33.431175" - y1="31.964777" - x2="21.747974" - y2="11.780679" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.037815,0,0,1.060747,-1.632878,-20.656179)" /> - </defs> - <sodipodi:namedview - inkscape:window-y="31" - inkscape:window-x="435" - inkscape:window-height="818" - inkscape:window-width="999" - inkscape:document-units="px" - inkscape:grid-bbox="true" - showgrid="false" - inkscape:current-layer="layer2" - inkscape:cy="5.2373352" - inkscape:cx="-9.3185683" - inkscape:zoom="5.6568543" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" - inkscape:window-maximized="0" /> - <metadata - id="metadata4"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title>Drive - Hard Disk</dc:title> - <dc:creator> - <cc:Agent> - <dc:title>Jakub Steiner</dc:title> - </cc:Agent> - </dc:creator> - <dc:subject> - <rdf:Bag> - <rdf:li>hdd</rdf:li> - <rdf:li>hard drive</rdf:li> - <rdf:li>fixed</rdf:li> - <rdf:li>media</rdf:li> - <rdf:li>solid</rdf:li> - </rdf:Bag> - </dc:subject> - <cc:license - rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" /> - <dc:identifier /> - <dc:source>http://jimmac.musichall.cz</dc:source> - </cc:Work> - <cc:License - rdf:about="http://creativecommons.org/publicdomain/zero/1.0/"> - <cc:permits - rdf:resource="http://creativecommons.org/ns#Reproduction" /> - <cc:permits - rdf:resource="http://creativecommons.org/ns#Distribution" /> - <cc:permits - rdf:resource="http://creativecommons.org/ns#DerivativeWorks" /> - </cc:License> - </rdf:RDF> - </metadata> - <g - inkscape:label="pix" - id="layer2" - inkscape:groupmode="layer" - transform="translate(0,12)"> - <g - transform="matrix(0.0245274,0,0,0.02086758,45.69054,17.592047)" - id="g6707"> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40206185;fill:url(#linearGradient6715);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="rect6709" - width="1339.6335" - height="478.35718" - x="-1559.2523" - y="-150.69685" /> - <path - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40206185;fill:url(#radialGradient6717);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - d="m -219.61876,-150.68038 c 0,0 0,478.33079 0,478.33079 142.874166,0.90045 345.40022,-107.16966 345.40014,-239.196175 0,-132.026537 -159.436816,-239.134595 -345.40014,-239.134615 z" - id="path6711" - sodipodi:nodetypes="cccc" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccc" - id="path6713" - d="m -1559.2523,-150.68038 c 0,0 0,478.33079 0,478.33079 -142.8742,0.90045 -345.4002,-107.16966 -345.4002,-239.196175 0,-132.026537 159.4368,-239.134595 345.4002,-239.134615 z" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.40206185;fill:url(#radialGradient6719);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - inkscape:connector-curvature="0" /> - </g> - <path - sodipodi:nodetypes="cccsccccccccc" - id="path4196" - d="m 11.28569,-10.598925 c -0.625,0 -1.031249,0.29018 -1.281248,0.8437528 -10e-7,0 -6.4687505,17.1035572 -6.4687505,17.1035572 0,0 -0.25,0.671559 -0.25,1.78125 0,0 0,9.649968 0,9.649968 0,1.082613 0.6577855,1.625002 1.65625,1.625 l 38.5624985,0 c 0.984853,0 1.59375,-0.71818 1.59375,-1.84375 l 0,-9.649968 c 0,0 0.105963,-0.770423 -0.09375,-1.3125 L 38.28569,-9.5989216 c -0.184525,-0.5119064 -0.636905,-0.9880984 -1.125,-1.0000034 l -25.875,0 z" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#535353;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccccccccc" - id="path4170" - d="m 3.2735915,8.435259 0.7646021,-0.692215 37.6096894,0.0625 3.462407,0.317298 0,10.438532 c 0,1.125569 -0.607018,1.843331 -1.591871,1.843331 l -38.5829876,0 c -0.9984647,0 -1.6618399,-0.542051 -1.6618399,-1.624664 l 0,-10.344782 z" - style="fill:url(#linearGradient4234);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.02044296px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="csccccccs" - id="path3093" - d="m 3.5490842,7.352851 c -0.7142857,1.464286 -6.156e-4,2.392857 1.0357143,2.392857 0,0 38.9999985,0 38.9999985,0 1.119047,-0.02381 1.845238,-1.011905 1.428571,-2.142858 L 38.299082,-9.6078486 C 38.114558,-10.119755 37.64432,-10.595947 37.156225,-10.607852 l -25.857142,0 c -0.625,0 -1.035714,0.303573 -1.285713,0.8571458 0,0 -6.4642858,17.1035572 -6.4642858,17.1035572 z" - style="fill:url(#radialGradient4250);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <rect - y="12.61263" - x="7.857996" - height="5.5625" - width="17.625" - id="rect4174" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#linearGradient4209);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.40899992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" /> - <path - sodipodi:nodetypes="cscc" - id="path4194" - d="m 7.8579947,18.175127 c 0,0 0,-4.011485 0,-4.011485 1.8355274,3.179226 8.2964903,4.011485 12.9374973,4.011485 0,0 -12.9374973,0 -12.9374973,0 z" - style="opacity:0.81142853;fill:url(#linearGradient4242);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="cccccccc" - id="path4201" - d="m 44.796162,7.067135 c 0.06352,1.249974 -0.414003,2.31584 -1.322116,2.34375 0,0 -38.1187164,-1e-6 -38.1187163,0 -1.2892319,0 -1.867736,-0.324947 -2.0840507,-0.868056 0.091761,0.944332 0.8258174,1.649306 2.0840507,1.649306 -1e-7,-1e-6 38.1187163,0 38.1187163,0 1.076007,-0.03307 1.752805,-1.424024 1.352164,-2.994791 L 44.79616,7.067135 Z" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - id="path4211" - d="m 10.96875,-8.405303 c -0.04608,0.200321 -0.1875,0.386797 -0.1875,0.59375 0,0.948605 0.59098,1.789474 1.34375,2.59375 0.240268,-0.154075 0.365117,-0.354408 0.625,-0.5 -0.940309,-0.816004 -1.553396,-1.716582 -1.78125,-2.6875 z m 26.65625,0 c -0.228727,0.969616 -0.842012,1.872426 -1.78125,2.6875 0.274144,0.153582 0.403988,0.36824 0.65625,0.53125 0.757262,-0.806656 1.3125,-1.673044 1.3125,-2.625 0,-0.206953 -0.141594,-0.393429 -0.1875,-0.59375 z m 2.1875,8.43750001 C 39.198709,4.072308 32.513887,7.282197 24.28125,7.282197 c -8.212254,1e-6 -14.8601499,-3.192786 -15.5,-7.21874999 -0.032357,0.197132 -0.125,0.391882 -0.125,0.59375 3e-7,4.31794699 6.989104,7.84375099 15.625,7.84374999 8.635896,0 15.656249,-3.525802 15.65625,-7.84374999 0,-0.212924 -0.08905,-0.417356 -0.125,-0.625 z" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.69142857;fill:url(#linearGradient4272);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - inkscape:connector-curvature="0" /> - <ellipse - id="path4224" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:0.45762712;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="7.2920389" - cy="7.2087765" - rx="1.3700194" - ry="1.016466" /> - <ellipse - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:0.45762712;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="path4226" - cx="41.1707" - cy="7.1203885" - rx="1.3700194" - ry="1.016466" /> - <path - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4260);stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 11.642515,-10.14583 c -0.601692,0 -0.992791,0.2793583 -1.233466,0.812287 -10e-7,0 -6.4150149,16.590722 -6.4150149,16.590722 0,0 -0.2406768,0.646515 -0.2406768,1.714823 0,0 0,9.290096 0,9.290096 0,1.35474 0.4440561,1.626899 1.5944841,1.626899 l 37.6869046,0 c 1.323126,0 1.534316,-0.316397 1.534316,-1.837492 l 0,-9.290096 c 0,0 0.10201,-0.741691 -0.09025,-1.263553 L 37.885616,-9.3081194 C 37.707973,-9.8009359 37.334964,-10.134369 36.865071,-10.14583 l -25.222556,0 z" - id="path4252" - sodipodi:nodetypes="cccsccccccccc" - inkscape:connector-curvature="0" /> - <path - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885" - d="m 40.5,12.867613 0,5.020935" - id="path4282" - inkscape:connector-curvature="0" /> - <path - id="path4284" - d="m 38.5,12.92739 0,5.020935" - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885" - inkscape:connector-curvature="0" /> - <path - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885" - d="m 36.5,12.92739 0,5.020935" - id="path4286" - inkscape:connector-curvature="0" /> - <path - id="path4288" - d="m 34.5,12.92739 0,5.020935" - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885" - inkscape:connector-curvature="0" /> - <path - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885" - d="m 32.5,12.92739 0,5.020935" - id="path4290" - inkscape:connector-curvature="0" /> - <path - id="path4292" - d="m 30.5,12.92739 0,5.020935" - style="fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:0.42372885" - inkscape:connector-curvature="0" /> - <path - id="path4294" - d="m 39.5,12.917512 0,5.020935" - style="opacity:0.09714284;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.09714284;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" - d="m 37.5,12.977289 0,5.020935" - id="path4296" - inkscape:connector-curvature="0" /> - <path - id="path4298" - d="m 35.5,12.977289 0,5.020935" - style="opacity:0.09714284;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - style="opacity:0.09714284;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" - d="m 33.5,12.977289 0,5.020935" - id="path4300" - inkscape:connector-curvature="0" /> - <path - id="path4302" - d="m 31.5,12.977289 0,5.020935" - style="opacity:0.09714284;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000048px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - id="path4572" - d="m 7.875,12.625947 0,5.53125 12.5625,0 -12.21875,-0.34375 -0.34375,-5.1875 z" - style="opacity:0.43999999;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <ellipse - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.20571427;fill:url(#linearGradient2553);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.93365198;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.42372879;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="path2545" - cx="24.312496" - cy="0.094684198" - rx="15.437498" - ry="7.0937457" /> - </g> -</svg> diff --git a/kpov_judge/web/kpov_judge/static/icons/internet.png b/kpov_judge/web/kpov_judge/static/icons/internet.png Binary files differdeleted file mode 100644 index 2f70cbf..0000000 --- a/kpov_judge/web/kpov_judge/static/icons/internet.png +++ /dev/null diff --git a/kpov_judge/web/kpov_judge/static/icons/internet.svg b/kpov_judge/web/kpov_judge/static/icons/internet.svg deleted file mode 100644 index 5efbd24..0000000 --- a/kpov_judge/web/kpov_judge/static/icons/internet.svg +++ /dev/null @@ -1,3398 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="72.355682" - height="80" - viewBox="0 0 72.355684 79.999999" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="internet.svg"> - <defs - id="defs4"> - <linearGradient - id="linearGradient5513"> - <stop - id="stop5515" - offset="0" - style="stop-color:#d3d7cf;stop-opacity:1" /> - <stop - style="stop-color:#979894;stop-opacity:1" - offset="0.11058617" - id="stop5517" /> - <stop - style="stop-color:#d3d7cf;stop-opacity:1" - offset="0.21474838" - id="stop5519" /> - <stop - id="stop5521" - offset="0.35913071" - style="stop-color:#ffffff;stop-opacity:1" /> - <stop - id="stop5523" - offset="1" - style="stop-color:#555753;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient5567" - inkscape:collect="always"> - <stop - id="stop5569" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop5571" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient5615"> - <stop - style="stop-color:#000000;stop-opacity:1;" - offset="0" - id="stop5617" /> - <stop - id="stop5619" - offset="0.59850603" - style="stop-color:#000000;stop-opacity:0.31506849" /> - <stop - style="stop-color:#000000;stop-opacity:0;" - offset="1" - id="stop5621" /> - </linearGradient> - <linearGradient - id="linearGradient5316" - inkscape:collect="always"> - <stop - id="stop5318" - offset="0" - style="stop-color:#000000;stop-opacity:1;" /> - <stop - id="stop5320" - offset="1" - style="stop-color:#000000;stop-opacity:0;" /> - </linearGradient> - <clipPath - id="clipPath5584" - clipPathUnits="userSpaceOnUse"> - <path - style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - d="m 119.00002,314 1,20.55814 c 0.65135,13.3905 -8,16.93023 -18,21.76744 -1.02876,0.49763 -2,1.0787 -2,2.41861 l 0,3.62791 c 0,3.6279 8,3.6279 15,3.6279 l 66,0 c 7,0 15,0 15,-3.6279 l 0,-3.62791 c 0,-1.33991 -0.97125,-1.92098 -2,-2.41861 -10,-4.83721 -18.65135,-8.37694 -18,-21.76744 l 1,-20.55814 -58,0 z" - id="path5586" - sodipodi:nodetypes="czsccccccszcc" - inkscape:connector-curvature="0" /> - </clipPath> - <linearGradient - id="linearGradient10629-2"> - <stop - id="stop10631-8" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - id="stop10633-2" - offset="1" - style="stop-color:#959595;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient12756-7"> - <stop - id="stop12758-4" - offset="0" - style="stop-color:#5789ca;stop-opacity:1" /> - <stop - id="stop12760-6" - offset="1" - style="stop-color:#023c88;stop-opacity:1" /> - </linearGradient> - <clipPath - id="clipPath5221" - clipPathUnits="userSpaceOnUse"> - <rect - y="362" - x="44" - height="124" - width="208.00005" - id="rect5223" - style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - </clipPath> - <clipPath - id="clipPath5266" - clipPathUnits="userSpaceOnUse"> - <rect - ry="2.125" - rx="2.125" - y="-270" - x="36.000046" - height="148" - width="223.99995" - id="rect5268" - style="display:inline;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" /> - </clipPath> - <linearGradient - id="linearGradient5496"> - <stop - id="stop5498" - offset="0" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#ffffff;stop-opacity:1" - offset="0.0312636" - id="stop5505" /> - <stop - id="stop5507" - offset="0.19532859" - style="stop-color:#d3d7cf;stop-opacity:1" /> - <stop - style="stop-color:#babdb6;stop-opacity:1" - offset="0.82031411" - id="stop5509" /> - <stop - id="stop5511" - offset="0.95833272" - style="stop-color:#ffffff;stop-opacity:1" /> - <stop - id="stop5500" - offset="1" - style="stop-color:#888a85;stop-opacity:1" /> - </linearGradient> - <linearGradient - id="linearGradient4070"> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0" - id="stop4072" /> - <stop - id="stop4074" - offset="0.52789462" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:0;" - offset="1" - id="stop4076" /> - </linearGradient> - <linearGradient - id="linearGradient5555"> - <stop - id="stop5557" - offset="0" - style="stop-color:#ffffff;stop-opacity:1;" /> - <stop - style="stop-color:#ffffff;stop-opacity:1;" - offset="0.59523809" - id="stop5563" /> - <stop - id="stop5559" - offset="1" - style="stop-color:#ffffff;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient4134"> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0" - id="stop4136" /> - <stop - id="stop3378" - offset="0.56766391" - style="stop-color:#2e3436;stop-opacity:1" /> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="1" - id="stop4138" /> - </linearGradient> - <clipPath - id="clipPath4367" - clipPathUnits="userSpaceOnUse"> - <path - id="path4369" - d="m 240,211 c -1.66165,0 -3,1.33835 -3,3 l 0,4 10,0 0,-4 c 0,-1.66165 -1.33835,-3 -3,-3 l -4,0 z" - style="display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - </clipPath> - <clipPath - id="clipPath4287" - clipPathUnits="userSpaceOnUse"> - <path - id="path4289" - d="m 164.5,171.375 c -1.80944,16.18787 3.57797,26.96266 12.53125,33.84375 8.95328,6.88109 21.33929,9.97794 33.65625,11.5 12.31696,1.52206 24.61016,1.44261 33.34375,1.8125 4.36679,0.18494 7.85588,0.49346 9.875,1.09375 1.00956,0.30014 1.60095,0.69442 1.78125,0.9375 0.1803,0.24308 0.21449,0.38792 -0.0937,1 -0.5676,1.12711 -1.88943,1.92802 -4.03125,2.4375 -2.14182,0.50948 -4.98306,0.67251 -8.125,0.65625 -6.28389,-0.0325 -13.813,-0.76309 -20.09375,-0.59375 -3.14038,0.0847 -5.97092,0.38298 -8.25,1.1875 -2.27908,0.80452 -4.09475,2.22183 -4.6875,4.40625 -0.59275,2.18442 0.001,4.85419 1.8125,8.25 1.81134,3.39581 4.88283,7.55678 9.53125,12.75 l 1.5,-1.3125 c -4.58534,-5.12274 -7.56231,-9.211 -9.25,-12.375 -1.68769,-3.164 -2.04477,-5.34946 -1.65625,-6.78125 0.38852,-1.43179 1.47822,-2.3819 3.40625,-3.0625 1.92803,-0.6806 4.61811,-0.98059 7.65625,-1.0625 6.07628,-0.16382 13.59915,0.56045 20.03125,0.59375 3.21605,0.0166 6.13826,-0.14209 8.5625,-0.71875 2.42424,-0.57666 4.45416,-1.60938 5.40625,-3.5 0.51688,-1.0264 0.50003,-2.21986 -0.125,-3.0625 -0.62503,-0.84264 -1.60421,-1.29702 -2.8125,-1.65625 -2.41658,-0.71845 -5.96364,-1.00067 -10.375,-1.1875 -8.82271,-0.37366 -21.00798,-0.31129 -33.15625,-1.8125 -12.14827,-1.50121 -24.21446,-4.58175 -32.6875,-11.09375 -8.47304,-6.512 -13.50101,-16.33486 -11.75,-32 l -2,-0.25 z" - style="display:inline;fill:#555753;fill-opacity:1;fill-rule:evenodd;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - </clipPath> - <clipPath - id="clipPath3519" - clipPathUnits="userSpaceOnUse"> - <path - style="display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new" - d="m 49.053018,377.91849 c -0.710706,0.0727 -1.339556,0.49196 -1.68004,1.12002 l -14.280335,26.38285 c -0.171895,0.32432 -0.254644,0.67287 -0.248894,1.02669 1.72e-4,0.0106 -3.28e-4,0.0205 0,0.0311 l 0,2.98673 0,0.31112 0.06222,0 c 0.04534,0.25962 0.109053,0.51286 0.248895,0.74669 0.388063,0.64889 1.079535,1.05365 1.835599,1.0578 l 220.862957,0 c 0.76537,0.002 1.4767,-0.39926 1.86671,-1.0578 0.13743,-0.23204 0.20572,-0.48851 0.2489,-0.74669 0.0487,-0.29136 0.0622,-0.87113 0.0622,-0.87113 l 0,-2.08449 c 0,-0.49198 -0.0355,-0.98746 -0.28001,-1.43115 L 242.9109,379.0074 c -0.38858,-0.68003 -1.11464,-1.09662 -1.89783,-1.08891 l -191.742269,0 c -0.07255,-0.004 -0.145236,-0.004 -0.217783,0 z" - id="path3521" - sodipodi:nodetypes="cccsccccsccsscsccccc" - inkscape:connector-curvature="0" /> - </clipPath> - <clipPath - id="clipPath3599" - clipPathUnits="userSpaceOnUse"> - <path - id="path3601" - d="m 208.28125,157.9375 c -0.008,0.10327 -0.005,0.2131 0.0312,0.3125 l 1.09375,3.0625 c 0.10951,0.28392 0.3832,0.47053 0.6875,0.46875 l 2,0 c 0.23532,-0.002 0.45756,-0.12059 0.59375,-0.3125 0.1362,-0.19191 0.16975,-0.43353 0.0937,-0.65625 l -1.03125,-2.875 -3.46875,0 z m 7.96875,0 c -0.0101,0.11643 0.0164,0.23327 0.0625,0.34375 l 1.28125,3.0625 c 0.11937,0.27165 0.39086,0.44442 0.6875,0.4375 l 2,0 c 0.24322,0.002 0.45595,-0.11207 0.59375,-0.3125 0.1378,-0.20044 0.18268,-0.46111 0.0937,-0.6875 l -1.1875,-2.84375 -3.53125,0 z m 8.03125,0 c -0.0114,0.12934 0.005,0.25506 0.0625,0.375 l 1.53125,3.0625 c 0.12384,0.24906 0.3781,0.40646 0.65625,0.40625 l 2,0 c 0.24601,-0.004 0.46165,-0.13617 0.59375,-0.34375 0.13209,-0.20758 0.16299,-0.46291 0.0625,-0.6875 l -1.40625,-2.8125 -3.5,0 z" - style="display:inline;fill:#888a85;fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - </clipPath> - <clipPath - id="clipPath3655" - clipPathUnits="userSpaceOnUse"> - <path - id="path3657" - d="m 55.5625,287.96875 c -0.954459,-2e-5 -1.753046,0.47221 -2.125,1.40625 0,0 -0.59375,1.5 -0.59375,1.5 -0.155151,0.38964 -0.144272,0.90146 0.0625,1.3125 -0.5424,0.20441 -0.994862,0.57872 -1.25,1.1875 0,0 -0.625,1.46875 -0.625,1.46875 -0.01064,0.0102 -0.02106,0.0206 -0.03125,0.0312 -0.147112,0.351 -0.147348,0.80716 0,1.1875 -0.654855,0.16843 -1.194974,0.58271 -1.5,1.28125 0,0 -0.65625,1.5 -0.65625,1.5 -0.179615,0.41135 -0.163645,0.96978 0.09375,1.40625 -0.456605,0.2136 -0.850785,0.56008 -1.09375,1.09375 0,0 -0.6875,1.5 -0.6875,1.5 -0.166596,0.3659 -0.171331,0.84393 0,1.25 -0.62588,0.17262 -1.15115,0.55035 -1.46875,1.21875 0,0 -0.71875,1.5 -0.71875,1.5 -0.176959,0.37241 -0.209116,0.89133 -0.03125,1.3125 -0.590006,0.18007 -1.095835,0.56208 -1.40625,1.1875 0,0 -0.75,1.5 -0.75,1.5 -0.230425,0.46425 -0.217387,1.17845 0.15625,1.625 0.373637,0.44655 0.898009,0.5625 1.375,0.5625 0,0 9,0 9,0 0.953978,0 1.816699,-0.36523 2.25,-1.34375 0,0 0.108824,-0.25767 0.1875,-0.4375 -0.05805,0.4359 -0.07391,0.93458 0.21875,1.25 0.380339,0.40991 0.866761,0.53125 1.34375,0.53125 0,0 7,0 7,0 0.953978,0 1.836332,-0.39264 2.21875,-1.375 0,0 0.114925,-0.25416 0.1875,-0.4375 -0.06545,0.45383 -0.06104,0.9589 0.25,1.28125 0.379673,0.39347 0.866761,0.53125 1.34375,0.53125 0,0 8,0 8,0 0.953978,0 1.877328,-0.40568 2.21875,-1.4375 0,0 0.07819,-0.23457 0.125,-0.375 -0.05472,0.45853 -0.005,0.99507 0.3125,1.3125 0.378095,0.37806 0.866761,0.5 1.34375,0.5 0,0 49,0 49,0 0.47699,0 0.93217,-0.13944 1.3125,-0.40625 0.38033,-0.26681 0.70843,-0.71185 0.75,-1.28125 0.0146,0.52272 0.27443,1.01257 0.625,1.28125 0.3817,0.29252 0.83551,0.40625 1.3125,0.40625 0,0 8,0 8,0 0.47699,0 0.93469,-0.12271 1.3125,-0.40625 0.37781,-0.28354 0.67936,-0.78654 0.6875,-1.34375 -0.003,0.56895 0.30769,1.06032 0.6875,1.34375 0.37981,0.28343 0.83551,0.40625 1.3125,0.40625 0,0 7,0 7,0 0.47699,0 0.93334,-0.11356 1.3125,-0.40625 0.35741,-0.2759 0.64298,-0.75536 0.65625,-1.28125 0.0269,0.56108 0.34012,1.00636 0.71875,1.28125 0.37863,0.27489 0.83551,0.40625 1.3125,0.40625 0,0 7,0 7,0 0.47699,0 0.93189,-0.13504 1.3125,-0.4375 0.33417,-0.26556 0.5727,-0.72805 0.59375,-1.21875 0.0587,0.57406 0.39957,1.02196 0.78125,1.28125 0.38168,0.25929 0.83551,0.375 1.3125,0.375 0,0 7,0 7,0 0.47699,0 0.93486,-0.14417 1.3125,-0.46875 0.37764,-0.32458 0.64177,-0.89451 0.5625,-1.4375 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0846,-0.57915 -0.39998,-0.99087 -0.8125,-1.25 0.26304,-0.33524 0.43753,-0.80255 0.375,-1.25 0,0 -0.1875,-1.46875 -0.1875,-1.46875 -0.0771,-0.55194 -0.38883,-0.96029 -0.75,-1.21875 0.28697,-0.32745 0.46979,-0.80673 0.40625,-1.28125 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 0,0 -0.21875,-1.5 -0.21875,-1.5 -0.0863,-0.64445 -0.46892,-1.08991 -0.96875,-1.34375 0.21754,-0.31446 0.3334,-0.71895 0.28125,-1.125 0,0 -0.1875,-1.5 -0.1875,-1.5 -0.0628,-0.48882 -0.28162,-0.88199 -0.59375,-1.15625 0.3204,-0.33632 0.49776,-0.85491 0.4375,-1.34375 0,0 -0.15625,-1.46875 -0.15625,-1.46875 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 -0.0652,-0.52853 -0.32297,-0.94463 -0.6875,-1.21875 0.29245,-0.33453 0.46156,-0.80893 0.40625,-1.28125 0,0 -0.1875,-1.5 -0.1875,-1.5 -0.12129,-1.03687 -1.01431,-1.65625 -1.96875,-1.65625 0,0 -4.46875,0 -4.46875,0 -0.83019,-2e-5 -1.54501,0.68576 -1.6875,1.53125 -0.17843,-0.9173 -0.95265,-1.53125 -1.84375,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.84102,-2e-5 -1.56875,0.66895 -1.71875,1.53125 -0.16424,-0.90063 -0.93185,-1.53125 -1.8125,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.82937,-2e-5 -1.55984,0.62799 -1.75,1.46875 -0.1816,-0.84615 -0.93291,-1.46875 -1.78125,-1.46875 0,0 -4.46875,0 -4.46875,0 -0.95446,-2e-5 -1.92074,0.6785 -1.9375,1.75 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0,0 0,1.5 0,1.5 -0.0127,0.7602 0.51176,1.35605 1.15625,1.625 -0.12836,0.20924 -0.21851,0.45518 -0.25,0.71875 C 141.54605,292.6745 140.75707,292 139.875,292 c 0,0 -1.36761,0 -2.65625,0 0.10967,-0.21224 0.17748,-0.46182 0.1875,-0.71875 0,0 0.0312,-1.5 0.0312,-1.5 0.0104,1.6e-4 0.0208,1.6e-4 0.0312,0 0.0406,-1.03535 -0.92056,-1.8125 -1.875,-1.8125 0,0 -4.46875,0 -4.46875,0 -0.8829,-4e-5 -1.66429,0.61268 -1.84375,1.53125 -0.13633,-0.84769 -0.8474,-1.53125 -1.6875,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.88361,-2e-5 -1.66805,0.58302 -1.875,1.5 -0.0558,-0.35964 -0.0917,-0.72331 -0.34375,-0.96875 -0.34903,-0.33981 -0.83528,-0.53125 -1.3125,-0.53125 0,0 -4.46875,0 -4.46875,0 -0.91613,-2e-5 -1.71751,0.62448 -1.90625,1.5625 -0.048,-0.38038 -0.0844,-0.78197 -0.34375,-1.03125 -0.35372,-0.33993 -0.83528,-0.53125 -1.3125,-0.53125 0,0 -4.4375,0 -4.4375,0 -0.95446,-2e-5 -1.827,0.58662 -2,1.59375 0,0 -0.28125,1.5 -0.28125,1.5 -0.0536,0.31226 0.002,0.64303 0.125,0.9375 -1.12495,0 -2.25,0 -2.25,0 -0.91516,0 -1.75034,0.50557 -2,1.46875 -0.0327,-0.2552 -0.0561,-0.53156 -0.15625,-0.75 0.44269,-0.26266 0.79037,-0.68755 0.90625,-1.28125 0,0 0.28125,-1.5 0.28125,-1.5 0.0966,-0.49519 -0.0595,-1.03926 -0.40625,-1.40625 -0.34672,-0.36699 -0.83528,-0.5625 -1.3125,-0.5625 0,0 -4.46875,0 -4.46875,0 -0.915444,-2e-5 -1.710844,0.56161 -1.96875,1.46875 -0.03828,-0.3233 -0.03241,-0.66466 -0.25,-0.90625 -0.343882,-0.38181 -0.835278,-0.5625 -1.3125,-0.5625 0,0 -4.46875,0 -4.46875,0 -0.939161,-2e-5 -1.734609,0.55554 -2,1.5 -0.04106,-0.35142 -0.01918,-0.73118 -0.25,-0.96875 -0.356725,-0.36715 -0.835278,-0.53125 -1.3125,-0.53125 0,0 -4.4375,0 -4.4375,0 -0.93898,-2e-5 -1.735581,0.53284 -2.03125,1.46875 -0.03961,-0.3294 -0.0041,-0.67482 -0.21875,-0.90625 -0.354335,-0.38205 -0.835278,-0.5625 -1.3125,-0.5625 0,0 -4.4375,0 -4.4375,0 -0.954458,-2e-5 -1.780034,0.51209 -2.09375,1.46875 0,0 -0.5,1.5 -0.5,1.5 -0.12705,0.38743 -0.100069,0.86623 0.09375,1.25 -0.488335,0.2274 -0.859572,0.66202 -1.0625,1.25 -0.01042,-1.6e-4 -0.02083,-1.6e-4 -0.03125,0 0,0 -0.02942,0.057 -0.03125,0.0625 -0.02217,-0.33391 0.05809,-0.69358 -0.15625,-0.9375 C 67.430108,292.16289 66.945446,292 66.46875,292 c 0,0 -4.53125,0 -4.53125,0 -0.95339,0 -1.765397,0.46514 -2.125,1.40625 0,0 -0.02922,0.0571 -0.03125,0.0625 -0.01147,-0.19812 0.02259,-0.40569 0,-0.59375 0.545726,-0.21265 0.981483,-0.64147 1.21875,-1.28125 0,0 0.5625,-1.5 0.5625,-1.5 0.179465,-0.48392 0.129105,-1.11671 -0.21875,-1.53125 -0.347855,-0.41454 -0.866528,-0.59375 -1.34375,-0.59375 0,0 -4.4375,0 -4.4375,0 z m 124.46875,0 c -0.47723,-10e-6 -0.95826,0.19131 -1.3125,0.53125 -0.35424,0.33994 -0.54646,0.8825 -0.46875,1.40625 0,0 0.21875,1.5 0.21875,1.5 0.0798,0.53832 0.34906,0.94708 0.71875,1.21875 -0.26977,0.33547 -0.41592,0.81906 -0.34375,1.28125 0,0 0.25,1.5 0.25,1.5 0.0761,0.48761 0.32391,0.85876 0.65625,1.125 -0.32612,0.33975 -0.52016,0.86671 -0.4375,1.375 0,0 0.25,1.5 0.25,1.5 0.17473,1.07374 1.11146,1.625 2.0625,1.625 0,0 4.6875,0 4.6875,0 0.47552,0 0.94708,-0.17982 1.3125,-0.53125 0.26989,-0.25956 0.31039,-0.66816 0.34375,-1.0625 0.21406,1.06435 1.14271,1.59375 2.09375,1.59375 0,0 4.6875,0 4.6875,0 0.47552,0 0.94205,-0.14878 1.3125,-0.5 0.254,-0.24081 0.26705,-0.65396 0.3125,-1.03125 0.25227,1.05222 1.17396,1.53125 2.125,1.53125 0,0 4.6875,0 4.6875,0 0.47552,0 0.943,-0.16609 1.3125,-0.53125 0.3695,-0.36516 0.54773,-0.97545 0.40625,-1.5 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 0,0 -0.40625,-1.5 -0.40625,-1.5 -0.14437,-0.53537 -0.44735,-0.90971 -0.84375,-1.15625 0.27003,-0.37065 0.3959,-0.86963 0.28125,-1.3125 0,0 -0.375,-1.5 -0.375,-1.5 -0.1461,-0.56436 -0.46062,-0.9773 -0.875,-1.21875 0.23847,-0.36882 0.35298,-0.86254 0.25,-1.28125 0,0 -0.375,-1.5 -0.375,-1.5 -0.2439,-0.99158 -1.10808,-1.53123 -2.0625,-1.53125 0,0 -4.46875,0 -4.46875,0 -0.47723,-10e-6 -0.96239,0.1954 -1.3125,0.5625 -0.22033,0.23102 -0.20073,0.57924 -0.25,0.90625 -0.25187,-0.92205 -1.05332,-1.46875 -1.96875,-1.46875 0,0 -4.46875,0 -4.46875,0 -0.47723,-10e-6 -0.96015,0.17815 -1.3125,0.53125 -0.22952,0.23 -0.22498,0.60044 -0.28125,0.9375 -0.24104,-0.9479 -1.0622,-1.46875 -1.96875,-1.46875 0,0 -4.4375,0 -4.4375,0 z m -23.03125,3.5 c 0.11392,0.71011 0.60204,1.21996 1.21875,1.4375 -0.0803,0.19647 -0.12542,0.43348 -0.15625,0.65625 -0.10414,-0.74332 -0.62988,-1.26775 -1.28125,-1.46875 -0.002,-6.2e-4 0.002,-0.0306 0,-0.0312 0.10195,-0.18702 0.1833,-0.37752 0.21875,-0.59375 z M 113.0625,291.5 c 0.0232,0.17627 0.0518,0.33615 0.0937,0.5 -0.14062,0 -0.14256,0 -0.28125,0 0.0799,-0.15281 0.14914,-0.31838 0.1875,-0.5 z m 8.09375,0 c 0.0253,0.16913 0.0512,0.33704 0.0937,0.5 -0.14056,0 -0.14357,0 -0.28125,0 0.0809,-0.15546 0.15147,-0.316 0.1875,-0.5 z m 8.0625,0 c 0.0288,0.17533 0.0701,0.33742 0.125,0.5 -0.15589,0 -0.16167,0 -0.3125,0 0.0805,-0.15519 0.15026,-0.31679 0.1875,-0.5 z m 35.875,0 c 0.0358,0.18021 0.0807,0.34922 0.15625,0.5 -0.13979,0 -0.14281,0 -0.28125,0 0.054,-0.16157 0.0958,-0.32771 0.125,-0.5 z M 85.25,291.53125 c 0.02875,0.25051 0.04355,0.49985 0.125,0.71875 -0.484087,0.24213 -0.869524,0.65358 -1.03125,1.25 -0.02549,-0.23994 -0.02276,-0.50632 -0.09375,-0.71875 0.468832,-0.23903 0.826246,-0.64776 1,-1.25 z m 8.0625,0 c 0.02955,0.2599 0.05336,0.52424 0.15625,0.75 -0.452621,0.25373 -0.80225,0.67248 -0.9375,1.25 -0.01405,-0.27176 -0.01907,-0.55064 -0.125,-0.78125 0.430938,-0.25455 0.755853,-0.67751 0.90625,-1.21875 z m 93.3125,0 c 0.12103,0.48859 0.38382,0.86798 0.75,1.125 -0.13851,0.23531 -0.14573,0.54366 -0.1875,0.84375 -0.11163,-0.49842 -0.37712,-0.90209 -0.75,-1.15625 0.12578,-0.23421 0.1418,-0.52798 0.1875,-0.8125 z m 8.0625,0 c 0.13351,0.51897 0.4448,0.90296 0.84375,1.15625 -0.12884,0.24326 -0.13258,0.54787 -0.15625,0.84375 -0.12652,-0.57023 -0.43216,-0.97059 -0.84375,-1.21875 0.1121,-0.22611 0.12149,-0.51306 0.15625,-0.78125 z m -117.5,0.0312 c 0.02271,0.22423 0.0083,0.45614 0.0625,0.65625 -0.505646,0.23167 -0.907219,0.64465 -1.09375,1.25 -0.02243,-0.21779 -0.0086,-0.45496 -0.0625,-0.65625 0.505308,-0.23158 0.903706,-0.64438 1.09375,-1.25 z m 71.75,0 c 0.13694,0.63587 0.57541,1.1227 1.125,1.34375 -0.10731,0.19071 -0.18825,0.42039 -0.21875,0.65625 -0.0945,-0.70073 -0.55073,-1.21702 -1.15625,-1.4375 0.10413,-0.1725 0.20436,-0.3551 0.25,-0.5625 z M 207.8125,292 c -0.47669,10e-6 -0.96403,0.14754 -1.3125,0.53125 -0.34847,0.38371 -0.48153,1.00687 -0.34375,1.5 0,0 0.40625,1.46875 0.40625,1.46875 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0.15326,0.54851 0.47111,0.92148 0.875,1.15625 -0.26953,0.37604 -0.38211,0.88987 -0.25,1.34375 0,0 0.4375,1.5 0.4375,1.5 0.20696,0.71088 0.71164,1.13723 1.3125,1.34375 -0.17301,0.35148 -0.23787,0.78441 -0.125,1.15625 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0,0 0.46875,1.5 0.46875,1.5 0.18013,0.59348 0.5592,0.96558 1.03125,1.1875 -0.23244,0.37715 -0.3224,0.88665 -0.1875,1.3125 0,0 0.46875,1.5 0.46875,1.5 0.20149,0.63607 0.60949,1.06043 1.125,1.28125 -0.19851,0.36992 -0.25428,0.82807 -0.125,1.21875 0,0 0.5,1.5 0.5,1.5 0.34141,1.03186 1.26477,1.4375 2.21875,1.4375 0,0 14,0 14,0 0.47699,0 0.96692,-0.12094 1.34375,-0.53125 0.30265,-0.32953 0.28895,-0.83915 0.21875,-1.28125 0.0757,0.18181 0.1875,0.4375 0.1875,0.4375 0.40896,0.97722 1.29602,1.375 2.25,1.375 0,0 5,0 5,0 0.47699,0 0.99947,-0.13458 1.375,-0.5625 0.28026,-0.31936 0.21383,-0.76948 0.15625,-1.1875 0.0345,0.0709 0.21875,0.46875 0.21875,0.46875 0.45552,0.93579 1.31037,1.28125 2.25,1.28125 0,0 5,0 5,0 0.4698,0 0.96276,-0.12535 1.34375,-0.5625 0.38099,-0.43715 0.42703,-1.16472 0.1875,-1.625 0,0 -2.90625,-5.59375 -2.90625,-5.59375 -0.24412,-0.46911 -0.62253,-0.71361 -1,-0.90625 -0.12981,-0.0663 -0.26794,-0.10913 -0.40625,-0.15625 0.18708,-0.41717 0.17843,-0.93905 0,-1.3125 0,0 -2.6875,-5.59375 -2.6875,-5.59375 -0.28954,-0.606 -0.74663,-0.97865 -1.28125,-1.15625 0.17429,-0.39877 0.1839,-0.85454 0.0312,-1.21875 0,0 -0.625,-1.5 -0.625,-1.5 -0.38797,-0.92567 -1.20289,-1.37498 -2.15625,-1.375 0,0 -4.53125,0 -4.53125,0 -0.4767,0 -0.99594,0.1461 -1.34375,0.5625 -0.20167,0.24144 -0.1066,0.58828 -0.125,0.90625 -0.004,-0.0105 -0.0312,-0.0937 -0.0312,-0.0937 -0.35961,-0.94108 -1.17161,-1.375 -2.125,-1.375 0,0 -4.53125,0 -4.53125,0 -0.4767,0 -1.00187,0.17747 -1.34375,0.59375 -0.21329,0.25971 -0.11615,0.60621 -0.125,0.9375 -0.007,-0.0208 -0.0625,-0.125 -0.0625,-0.125 C 222.264,292.4508 221.45339,292 220.5,292 c 0,0 -4.53125,0 -4.53125,0 -0.47669,0 -0.967,0.16295 -1.3125,0.5625 -0.20868,0.24132 -0.16061,0.58629 -0.1875,0.90625 -0.31214,-1.01288 -1.17162,-1.46875 -2.125,-1.46875 0,0 -4.53125,0 -4.53125,0 z m -99,1.03125 c 0.14052,0 0.14195,0 0.28125,0 -0.0731,0.14235 -0.14938,0.29892 -0.1875,0.46875 -0.0203,-0.15567 -0.0597,-0.31979 -0.0937,-0.46875 z m 8.1875,0 c 0.12499,0 0.12672,0 0.25,0 -0.0752,0.151 -0.12215,0.31918 -0.15625,0.5 -0.0209,-0.16583 -0.0547,-0.33885 -0.0937,-0.5 z m 8.1875,0 c 0.12478,0 0.12792,0 0.25,0 -0.0726,0.14998 -0.12577,0.32201 -0.15625,0.5 -0.024,-0.16864 -0.0441,-0.34041 -0.0937,-0.5 z m 8.125,0 c 0.15589,0 0.16167,0 0.3125,0 -0.075,0.15438 -0.12806,0.31685 -0.15625,0.5 -0.0268,-0.17766 -0.0842,-0.34576 -0.15625,-0.5 z m 16.5625,2.375 c 0.0239,0.2109 0.10105,0.38806 0.1875,0.5625 -0.16254,0 -0.1952,0 -0.375,0 0.0835,-0.17221 0.16307,-0.35958 0.1875,-0.5625 z m -24.65625,0.0312 c 0.023,0.18371 0.0696,0.35656 0.125,0.53125 -0.1213,0 -0.17408,0 -0.3125,0 0.0825,-0.16202 0.15759,-0.33744 0.1875,-0.53125 z m 8.21875,0 c 0.0276,0.18367 0.0649,0.35908 0.125,0.53125 -0.11595,0 -0.15305,0 -0.28125,0 0.0797,-0.16191 0.12809,-0.33603 0.15625,-0.53125 z m 8.21875,0 c 0.0246,0.19338 0.0777,0.36717 0.15625,0.53125 -0.13225,0 -0.16655,0 -0.3125,0 0.0801,-0.16357 0.13106,-0.33955 0.15625,-0.53125 z m 16.4375,0 c 0.0288,0.19433 0.0763,0.36963 0.15625,0.53125 -0.1282,0 -0.14496,0 -0.28125,0 0.0601,-0.17205 0.0977,-0.34684 0.125,-0.53125 z m 64.9375,0 c 0.0106,0.03 0.0625,0.15625 0.0625,0.15625 0.1907,0.53967 0.54101,0.89931 0.96875,1.125 -0.10149,0.23628 -0.0556,0.51099 -0.0625,0.78125 -0.004,-0.0108 -0.0312,-0.0937 -0.0312,-0.0937 -0.19143,-0.5323 -0.5393,-0.92059 -0.96875,-1.15625 0.0883,-0.23974 0.0282,-0.53205 0.0312,-0.8125 z m -155.46875,0.0312 c 0.0053,0.16384 -0.01296,0.3426 0,0.5 -0.05944,0 -0.146306,0 -0.21875,0 0.06702,-0.1161 0.138979,-0.23768 0.1875,-0.375 0,0 0.02491,-0.10709 0.03125,-0.125 z m 16.5,0 c 0.01245,0.17268 0.0072,0.33612 0.03125,0.5 -0.0767,0 -0.157962,0 -0.25,0 0.07505,-0.13545 0.141781,-0.27388 0.1875,-0.4375 0,0 0.02964,-0.057 0.03125,-0.0625 z m 16.4375,0 c 0.0186,0.17047 0.0558,0.33728 0.0937,0.5 -0.0958,0 -0.16812,0 -0.28125,0 0.0825,-0.15181 0.14554,-0.31695 0.1875,-0.5 z m 8.25,0 c 0.019,0.16767 0.0561,0.33742 0.0937,0.5 -0.10157,0 -0.16374,0 -0.28125,0 0.0813,-0.15267 0.14925,-0.31661 0.1875,-0.5 z m 8.21875,0 c 0.0234,0.16909 0.044,0.34013 0.0937,0.5 -0.0954,0 -0.1429,0 -0.25,0 0.0781,-0.15225 0.11996,-0.31575 0.15625,-0.5 z m 78.625,0 c 0.11843,0.51484 0.41332,0.90215 0.78125,1.15625 -0.15679,0.2413 -0.18933,0.56519 -0.21875,0.875 -0.11938,-0.51647 -0.4076,-0.90255 -0.78125,-1.15625 0.15015,-0.24651 0.20261,-0.56323 0.21875,-0.875 z m -136.25,0.0312 c 0.004,0.1554 -2.92e-4,0.31702 0,0.46875 -0.03636,0 -0.201432,0 -0.25,0 0.06802,-0.11114 0.13696,-0.21428 0.1875,-0.34375 0,0 0.05444,-0.10464 0.0625,-0.125 z m 32.9375,0 c 0.01738,0.16178 0.03674,0.31231 0.0625,0.46875 -0.08081,0 -0.154584,0 -0.25,0 0.07835,-0.14513 0.144613,-0.29183 0.1875,-0.46875 z m 95.0625,0 c 0.11072,0.47751 0.37245,0.84265 0.71875,1.09375 -0.19253,0.26397 -0.22687,0.62366 -0.25,0.96875 -0.0972,-0.50472 -0.36667,-0.88885 -0.71875,-1.15625 0.18184,-0.24133 0.20466,-0.57877 0.25,-0.90625 z M 75.8125,295.5625 c 0.01414,0.13328 0.01808,0.27612 0.03125,0.40625 -0.06336,0 -0.14295,0 -0.21875,0 0.06957,-0.1235 0.140972,-0.25919 0.1875,-0.40625 z m 139,0 c 0.17186,0.5432 0.50926,0.92378 0.9375,1.15625 -0.0968,0.23218 -0.0736,0.50527 -0.0937,0.78125 -0.002,-0.005 -0.0312,-0.0625 -0.0312,-0.0625 -0.1691,-0.5267 -0.49666,-0.88221 -0.90625,-1.125 0.10625,-0.2185 0.0799,-0.49118 0.0937,-0.75 z m 16.46875,0 c 0.002,0.005 0.0312,0.0625 0.0312,0.0625 0.24708,0.63291 0.7014,1.02234 1.25,1.21875 -0.14466,0.34735 -0.1449,0.77463 -0.0312,1.125 -0.11357,-0.28692 -0.25,-0.59375 -0.25,-0.59375 -0.21366,-0.53666 -0.5906,-0.89672 -1.03125,-1.125 0.003,-0.01 -0.002,-0.0215 0,-0.0312 0.0468,-0.20004 0.0174,-0.43325 0.0312,-0.65625 z M 61.5,297 c 0.06363,0 0.168784,0 0.25,0 -0.0674,0.11338 -0.137272,0.24317 -0.1875,0.375 0,0 -0.04703,0.14842 -0.0625,0.1875 0.0032,-0.18773 0.01582,-0.38226 0,-0.5625 z m 8.3125,0 c 0.06599,0 0.166794,0 0.25,0 -0.07222,0.124 -0.136773,0.25814 -0.1875,0.40625 0,0 -0.02743,0.083 -0.03125,0.0937 -0.01278,-0.16362 -0.01929,-0.34006 -0.03125,-0.5 z m 8.375,0 c 0.0656,0 0.140964,0 0.21875,0 -0.08368,0.14372 -0.134381,0.29399 -0.1875,0.46875 0,0 -0.02963,0.0569 -0.03125,0.0625 -0.01059,-0.17702 0.01519,-0.35737 0,-0.53125 z m 8.3125,0 c 0.0771,0 0.157539,0 0.25,0 -0.07973,0.1463 -0.140423,0.32264 -0.1875,0.5 -0.01042,-1.6e-4 -0.02083,-1.6e-4 -0.03125,0 C 86.51416,297.3362 86.51741,297.15986 86.5,297 Z m 8.34375,0 c 0.09361,0 0.169838,0 0.28125,0 -0.08852,0.16017 -0.173934,0.33374 -0.21875,0.53125 -0.01533,-0.17821 -0.02522,-0.36064 -0.0625,-0.53125 z m 8.3125,0 c 0.10644,0 0.18495,0 0.3125,0 -0.0924,0.17064 -0.17874,0.35009 -0.21875,0.5625 -0.0165,-0.1869 -0.0508,-0.3861 -0.0937,-0.5625 z m 8.375,0 c 0.10402,0 0.16177,0 0.28125,0 -0.0879,0.1645 -0.14922,0.32969 -0.1875,0.53125 -0.0215,-0.1772 -0.05,-0.36188 -0.0937,-0.53125 z m 8.3125,0 c 0.11772,0 0.17656,0 0.3125,0 -0.0835,0.16697 -0.15657,0.35948 -0.1875,0.5625 -0.0238,-0.19642 -0.0707,-0.37982 -0.125,-0.5625 z m 8.375,0 c 0.1257,0 0.17089,0 0.3125,0 -0.0903,0.17889 -0.15687,0.37299 -0.1875,0.59375 -0.0217,-0.20009 -0.0632,-0.40681 -0.125,-0.59375 z m 8.3125,0 c 0.14031,0 0.18525,0 0.34375,0 -0.0944,0.18241 -0.16109,0.37448 -0.1875,0.59375 -0.0211,-0.2096 -0.0712,-0.4138 -0.15625,-0.59375 z m 8.34375,0 c 0.15931,0 0.19695,0 0.375,0 -0.0845,0.1707 -0.16118,0.36274 -0.1875,0.5625 -0.0264,-0.20128 -0.10201,-0.39074 -0.1875,-0.5625 z m 8.375,0 c 0.13792,0 0.16285,0 0.3125,0 -0.0653,0.17768 -0.099,0.36254 -0.125,0.5625 -0.0308,-0.21088 -0.0979,-0.38865 -0.1875,-0.5625 z m 8.34375,0 c 0.0723,0 0.22863,0 0.3125,0 -0.0618,0.18694 -0.10331,0.39366 -0.125,0.59375 -0.0302,-0.21439 -0.0977,-0.41562 -0.1875,-0.59375 z m 71.28125,1.90625 c 0.15952,0.35694 0.34653,0.81108 0.625,1.4375 -0.19094,-0.11045 -0.40429,-0.19734 -0.625,-0.25 0.15181,-0.38001 0.13123,-0.83554 0,-1.1875 z m -113,0.5 c 0.0166,0.20569 0.0638,0.40737 0.125,0.59375 -0.0913,0 -0.1974,0 -0.3125,0 0.0922,-0.17797 0.15541,-0.37226 0.1875,-0.59375 z m 8.40625,0 c 0.0194,0.20067 0.0639,0.40789 0.125,0.59375 -0.097,0 -0.19277,0 -0.3125,0 0.0914,-0.1792 0.16004,-0.37189 0.1875,-0.59375 z m 8.375,0 c 0.0229,0.20293 0.0534,0.41075 0.125,0.59375 -0.10674,0 -0.1852,0 -0.3125,0 0.0903,-0.17835 0.15943,-0.37858 0.1875,-0.59375 z m 16.8125,0 c 0.0281,0.21514 0.0972,0.41541 0.1875,0.59375 -0.11562,0 -0.17851,0 -0.3125,0 0.0716,-0.183 0.10206,-0.39084 0.125,-0.59375 z m 8.375,0 c 0.0275,0.22183 0.0961,0.41456 0.1875,0.59375 l -0.3125,0 c 0.0612,-0.18565 0.10571,-0.39202 0.125,-0.59375 z M 61.0625,299.4375 c 0.0018,0.18095 -0.0092,0.38327 0,0.5625 -0.01212,0 -0.227622,0 -0.25,0 0.07154,-0.11698 0.133214,-0.23565 0.1875,-0.375 1.6e-4,-0.0104 1.6e-4,-0.0208 0,-0.0312 0,0 0.05139,-0.12664 0.0625,-0.15625 z m 16.8125,0 c 0.0046,0.18382 0.0087,0.3847 0.03125,0.5625 -0.04732,0 -0.208622,0 -0.28125,0 0.08053,-0.13746 0.166148,-0.26915 0.21875,-0.4375 0,0 0.02548,-0.10655 0.03125,-0.125 z m 8.40625,0 c 0.0097,0.18584 0.0029,0.38442 0.03125,0.5625 -0.04995,0 -0.180924,0 -0.25,0 0.07667,-0.13996 0.140666,-0.29781 0.1875,-0.46875 0,0 0.02818,-0.0824 0.03125,-0.0937 z m 16.8125,0 c 0.0162,0.18621 0.051,0.38628 0.0937,0.5625 -0.0748,0 -0.21053,0 -0.3125,0 0.0942,-0.17053 0.17658,-0.34835 0.21875,-0.5625 z m 8.40625,0 c 0.0197,0.19025 0.0455,0.37946 0.0937,0.5625 -0.0836,0 -0.20346,0 -0.3125,0 0.0925,-0.17124 0.18161,-0.34818 0.21875,-0.5625 z m 33.5625,0 c 0.0288,0.20294 0.0996,0.3909 0.1875,0.5625 -0.13085,0 -0.21613,0 -0.375,0 0.0879,-0.17163 0.15881,-0.35946 0.1875,-0.5625 z m 70.9375,0 c 0.006,0.0182 0.0312,0.125 0.0312,0.125 0.10743,0.32589 0.26224,0.5975 0.46875,0.8125 -0.17497,-0.10717 -0.36377,-0.18562 -0.5625,-0.25 0.05,-0.21334 0.0559,-0.45666 0.0625,-0.6875 z m -121.3125,0.0312 c 0.01487,0.17753 0.02541,0.36084 0.0625,0.53125 -0.06187,0 -0.196287,0 -0.28125,0 0.08995,-0.15984 0.172007,-0.33271 0.21875,-0.53125 z m 129.71875,0 c 0.006,0.0178 0.0312,0.125 0.0312,0.125 0.0906,0.24615 0.22723,0.44408 0.375,0.625 -0.13677,-0.0643 -0.28699,-0.0882 -0.4375,-0.125 0.0376,-0.19534 0.025,-0.41266 0.0312,-0.625 z M 69.46875,299.5 c 0.01223,0.16271 0.01946,0.34021 0.03125,0.5 -0.03377,0 -0.195002,0 -0.25,0 0.0747,-0.12517 0.134634,-0.25565 0.1875,-0.40625 0,0 0.02742,-0.0829 0.03125,-0.0937 z m 147.46875,1.21875 c 0.17393,0.10324 0.36367,0.16528 0.5625,0.21875 -0.0324,0.2092 -0.0311,0.43342 -0.0312,0.65625 -0.0101,-0.0302 -0.0625,-0.15625 -0.0625,-0.15625 -0.10227,-0.30547 -0.27043,-0.52901 -0.46875,-0.71875 z m 8.625,0.0937 c 0.14127,0.0646 0.28355,0.0888 0.4375,0.125 -0.0524,0.23853 -0.0478,0.49744 -0.0312,0.75 -0.0314,-0.0836 -0.0937,-0.28125 -0.0937,-0.28125 -0.0847,-0.22596 -0.18028,-0.42421 -0.3125,-0.59375 z m -162.6875,0.2188 c 0.03111,0 0.1972,0 0.25,0 -0.05965,0.10267 -0.110571,0.22476 -0.15625,0.34375 0,0 -0.06131,0.19931 -0.09375,0.28125 0.01019,-0.20533 0.02323,-0.42655 0,-0.625 z m 8.53125,0 c 0.04452,0 0.21085,0 0.28125,0 -0.07174,0.12356 -0.137189,0.25986 -0.1875,0.40625 0,0 -0.06293,0.19425 -0.09375,0.28125 0.01634,-0.22839 0.0348,-0.46361 0,-0.6875 z m 8.5,0 c 0.045,0 0.185089,0 0.25,0 -0.07155,0.12918 -0.140183,0.28162 -0.1875,0.4375 0,0 -0.0258,0.10631 -0.03125,0.125 -0.0063,-0.19176 -0.0019,-0.37772 -0.03125,-0.5625 z m 8.5,0 c 0.05652,0 0.20065,0 0.28125,0 -0.07583,0.14054 -0.142124,0.29645 -0.1875,0.46875 0,0 -0.02648,0.1059 -0.03125,0.125 -0.0027,-0.1956 -0.02451,-0.40623 -0.0625,-0.59375 z m 8.53125,0 c 0.065,0 0.193525,0 0.28125,0 -0.07896,0.15072 -0.145729,0.31284 -0.1875,0.5 0,0 -0.02685,0.10581 -0.03125,0.125 -0.0029,-0.21507 -0.0132,-0.42414 -0.0625,-0.625 z m 8.5,0 c 0.0704,0 0.18903,0 0.28125,0 -0.0845,0.16147 -0.15032,0.32812 -0.1875,0.53125 -0.01,-0.17696 -0.0483,-0.36316 -0.0937,-0.53125 z m 8.5,0 c 0.084,0 0.20294,0 0.3125,0 -0.086,0.1689 -0.15765,0.35345 -0.1875,0.5625 -0.0154,-0.19411 -0.0688,-0.38097 -0.125,-0.5625 z m 8.53125,0 c 0.0923,0 0.19636,0 0.3125,0 -0.092,0.17883 -0.16128,0.37318 -0.1875,0.59375 -0.0125,-0.20883 -0.0632,-0.40138 -0.125,-0.59375 z m 8.5625,0 c 0.10247,0 0.18836,0 0.3125,0 -0.094,0.18828 -0.16705,0.39347 -0.1875,0.625 -0.0118,-0.21932 -0.0513,-0.43031 -0.125,-0.625 z m 8.5,0 c 0.11798,0 0.20124,0 0.34375,0 -0.0865,0.1796 -0.16704,0.37244 -0.1875,0.59375 -0.0191,-0.20908 -0.0763,-0.41113 -0.15625,-0.59375 z m 8.53125,0 c 0.114,0 0.17961,0 0.3125,0 -0.0845,0.19351 -0.13825,0.40554 -0.15625,0.625 -0.0206,-0.22708 -0.0664,-0.4325 -0.15625,-0.625 z m 8.5,0 c 0.11822,0 0.1765,0 0.3125,0 -0.0735,0.19525 -0.11114,0.40856 -0.125,0.625 -0.0177,-0.23522 -0.0942,-0.43579 -0.1875,-0.625 z m -59.78125,2.25 c -0.004,0.2312 0.0066,0.4681 0.0625,0.6875 -0.116166,0 -0.178413,0 -0.3125,0 0.07952,-0.14874 0.14523,-0.31789 0.1875,-0.5 0,0 0.05158,-0.14385 0.0625,-0.1875 z m -25.75,0.0312 c -0.01444,0.21617 -0.02925,0.44718 0,0.65625 -0.09044,0 -0.173095,0 -0.28125,0 0.06827,-0.11707 0.138386,-0.23571 0.1875,-0.375 0,0 0.06378,-0.19662 0.09375,-0.28125 z m 17.1875,0 c -0.0051,0.21211 -0.01184,0.44872 0.03125,0.65625 -0.100302,0 -0.165355,0 -0.28125,0 0.07853,-0.14169 0.139853,-0.29376 0.1875,-0.46875 0,0 0.05106,-0.14528 0.0625,-0.1875 z m 42.875,0 c 0.009,0.22119 0.0517,0.45572 0.125,0.65625 -0.13559,0 -0.16479,0 -0.3125,0 0.0991,-0.19477 0.17001,-0.41138 0.1875,-0.65625 z m 95.28125,0 c 0.0409,0.10334 0.125,0.3125 0.125,0.3125 0.23531,0.613 0.67015,0.98581 1.1875,1.1875 -0.10001,0.27331 -0.0614,0.60038 -0.0312,0.90625 -0.0472,-0.11917 -0.125,-0.34375 -0.125,-0.34375 -0.23797,-0.60818 -0.67176,-1.00632 -1.1875,-1.21875 0.0855,-0.25983 0.0546,-0.55609 0.0312,-0.84375 z m -163.90625,0.0312 c -0.0066,0.21022 -0.02078,0.41967 0,0.625 -0.03007,0 -0.242275,0 -0.28125,0 0.0617,-0.10371 0.108765,-0.22286 0.15625,-0.34375 0,0 0.09013,-0.19317 0.125,-0.28125 z m 77.1875,0 c 0.0174,0.21963 0.0466,0.43019 0.125,0.625 -0.14107,0 -0.16142,0 -0.3125,0 0.0944,-0.18856 0.16991,-0.39236 0.1875,-0.625 z m 8.5625,0 c 0.0156,0.23222 0.0908,0.43406 0.1875,0.625 -0.14308,0 -0.16031,0 -0.3125,0 0.0781,-0.19368 0.10919,-0.40313 0.125,-0.625 z m 8.59375,0 c 0.0195,0.2318 0.096,0.43936 0.1875,0.625 -0.0828,0 -0.2368,0 -0.3125,0 0.0776,-0.19368 0.10851,-0.40655 0.125,-0.625 z m 61,0 c 0.0249,0.0703 0.0937,0.25 0.0937,0.25 0.20621,0.60006 0.60808,0.9746 1.09375,1.1875 -0.10205,0.26379 -0.0738,0.5763 -0.0625,0.875 -0.0249,-0.0703 -0.0937,-0.25 -0.0937,-0.25 -0.21193,-0.60649 -0.62154,-0.998 -1.125,-1.21875 0.0974,-0.25403 0.0998,-0.54802 0.0937,-0.84375 z M 79.625,303.375 c 1.16e-4,0.19735 0.0022,0.40453 0.03125,0.59375 -0.09471,0 -0.16968,0 -0.28125,0 0.07077,-0.12486 0.140653,-0.25632 0.1875,-0.40625 0,0 0.04954,-0.14603 0.0625,-0.1875 z m 42.90625,0 c 0.0146,0.20111 0.0337,0.41104 0.0937,0.59375 -0.13205,0 -0.16718,0 -0.3125,0 0.10338,-0.17695 0.19301,-0.36309 0.21875,-0.59375 z m -8.59375,0.0312 c 0.0146,0.18699 0.0713,0.38527 0.125,0.5625 -0.12579,0 -0.17143,0 -0.3125,0 0.0892,-0.17019 0.15516,-0.3494 0.1875,-0.5625 z m -8.59375,0.0312 c 0.0122,0.18277 0.0432,0.35703 0.0937,0.53125 -0.10989,0 -0.15792,0 -0.28125,0 0.0852,-0.15954 0.14956,-0.33356 0.1875,-0.53125 z m 129.75,0.40625 c 0.1383,0.25978 0.30082,0.487 0.5,0.65625 -0.18041,-0.14876 -0.40725,-0.22818 -0.625,-0.3125 0.0556,-0.10812 0.0965,-0.22521 0.125,-0.34375 z m -43.5,0.125 c -0.48167,10e-6 -0.97091,0.1564 -1.34375,0.5 -0.37284,0.3436 -0.58813,0.9547 -0.46875,1.5 0,0 0.3125,1.5 0.3125,1.5 0.13454,0.61454 0.50983,1.00267 0.96875,1.25 -0.19447,0.31868 -0.26793,0.73391 -0.21875,1.125 -0.0234,-0.10195 -0.0625,-0.3125 -0.0625,-0.3125 -0.23834,-1.08893 -1.16359,-1.53125 -2.125,-1.53125 0,0 -4.90625,0 -4.90625,0 -0.4807,0 -0.93472,0.14757 -1.3125,0.46875 -0.37778,0.32118 -0.66752,0.90082 -0.5625,1.46875 0,0 0.28125,1.5 0.28125,1.5 0.10392,0.56188 0.4614,0.9417 0.84375,1.1875 0.38235,0.2458 0.83551,0.375 1.3125,0.375 0,0 5,0 5,0 0.47699,0 0.96234,-0.1324 1.34375,-0.46875 0.35019,-0.30882 0.49552,-0.86372 0.4375,-1.375 0.0234,0.10198 0.0625,0.3125 0.0625,0.3125 0.12617,0.55168 0.46107,0.91654 0.84375,1.15625 0.38268,0.23971 0.83551,0.375 1.3125,0.375 0,0 5,0 5,0 0.47699,0 0.96738,-0.13646 1.34375,-0.5 0.34517,-0.3334 0.45294,-0.88634 0.375,-1.375 0.0377,0.13925 0.0937,0.375 0.0937,0.375 0.29434,1.08024 1.23352,1.5 2.1875,1.5 0,0 5,0 5,0 0.47699,0 0.9676,-0.12175 1.34375,-0.5 0.37615,-0.37825 0.53048,-1.02409 0.375,-1.53125 0,0 -0.4375,-1.5 -0.4375,-1.5 -0.31942,-1.04196 -1.2261,-1.46875 -2.1875,-1.46875 0,0 -4.9375,0 -4.9375,0 -0.4807,0 -0.97092,0.1405 -1.34375,0.5 -0.32549,0.31386 -0.39796,0.83448 -0.34375,1.3125 -0.0261,-0.10438 -0.0937,-0.3125 -0.0937,-0.3125 -0.16114,-0.61323 -0.53109,-1.01741 -1,-1.25 0.24094,-0.35949 0.35631,-0.82739 0.25,-1.25 0,0 -0.375,-1.5 -0.375,-1.5 -0.26724,-1.06227 -1.19288,-1.53125 -2.15625,-1.53125 0,0 -4.8125,0 -4.8125,0 z m 44.0625,0.5625 c 0.20033,0.15912 0.41486,0.26271 0.65625,0.34375 -0.0526,0.1327 -0.0796,0.29324 -0.0937,0.4375 -0.14262,-0.32013 -0.33227,-0.57839 -0.5625,-0.78125 z M 64.875,305 c 0.09345,0 0.195825,0 0.3125,0 -0.0705,0.11664 -0.134533,0.23634 -0.1875,0.375 -1.6e-4,0.0104 -1.6e-4,0.0208 0,0.0312 0,0 -0.07975,0.22308 -0.125,0.34375 0.02837,-0.24846 0.04353,-0.51004 0,-0.75 z m 8.6875,0 c 0.110535,0 0.207386,0 0.34375,0 -0.083,0.13625 -0.162469,0.272 -0.21875,0.4375 0,0 -0.07008,0.17899 -0.09375,0.25 0.0078,-0.23111 0.01071,-0.46928 -0.03125,-0.6875 z m 8.6875,0 c 0.116301,0 0.202896,0 0.34375,0 -0.08265,0.14217 -0.136557,0.29788 -0.1875,0.46875 0,0 -0.07075,0.1764 -0.09375,0.25 C 82.3215,305.47708 82.29923,305.23177 82.25,305 Z m 8.71875,0 c 0.101211,0 0.164468,0 0.28125,0 -0.0825,0.14826 -0.140798,0.31772 -0.1875,0.5 0,0 -0.02648,0.1059 -0.03125,0.125 -0.0029,-0.20253 -0.01957,-0.42927 -0.0625,-0.625 z m 8.71875,0 c 0.118704,0 0.176441,0 0.3125,0 -0.08977,0.16242 -0.175047,0.32728 -0.21875,0.53125 0,0 -0.02519,0.12718 -0.03125,0.15625 -5.26e-4,-0.22666 -0.0068,-0.47432 -0.0625,-0.6875 z m 8.6875,0 c 0.12397,0 0.17272,0 0.3125,0 -0.0864,0.16653 -0.15147,0.35345 -0.1875,0.5625 0,0 -0.0276,0.10568 -0.0312,0.125 -0.005,-0.23102 -0.0243,-0.47488 -0.0937,-0.6875 z m 8.6875,0 c 0.14085,0 0.18545,0 0.34375,0 -0.0998,0.1878 -0.18748,0.38524 -0.21875,0.625 -0.007,-0.21127 -0.0551,-0.43335 -0.125,-0.625 z m 8.71875,0 c 0.13302,0 0.1664,0 0.3125,0 -0.10035,0.19545 -0.16535,0.40598 -0.1875,0.65625 -0.01,-0.22348 -0.0491,-0.45173 -0.125,-0.65625 z m 8.6875,0 c 0.13606,0 0.16443,0 0.3125,0 -0.0962,0.19908 -0.14446,0.43439 -0.15625,0.6875 -0.0118,-0.24264 -0.0683,-0.47892 -0.15625,-0.6875 z m 8.75,0 c 0.15654,0 0.17605,0 0.34375,0 -0.0948,0.1868 -0.1662,0.40235 -0.1875,0.625 -0.0198,-0.22604 -0.0661,-0.43224 -0.15625,-0.625 z m 8.6875,0 c 0.15953,0 0.17453,0 0.34375,0 -0.0947,0.20211 -0.17211,0.41863 -0.1875,0.65625 -0.017,-0.23597 -0.0621,-0.46391 -0.15625,-0.65625 z M 64.5,307.25 c -0.02827,0.24795 -0.04384,0.51246 0,0.75 -0.08513,0 -0.23601,0 -0.34375,0 0.07064,-0.11473 0.134744,-0.24018 0.1875,-0.375 0,0 0.100062,-0.23305 0.15625,-0.375 z m 8.75,0.0312 c -0.0183,0.23709 -0.01907,0.48953 0.03125,0.71875 -0.156161,0 -0.157913,0 -0.3125,0 0.07515,-0.12533 0.134585,-0.2548 0.1875,-0.40625 0,0 0.05841,-0.21273 0.09375,-0.3125 z m 26.28125,0 c -0.0051,0.23958 0.02395,0.49249 0.09375,0.71875 -0.147337,0 -0.166155,0 -0.3125,0 0.08695,-0.15716 0.144348,-0.33826 0.1875,-0.53125 0,0 0.02212,-0.14766 0.03125,-0.1875 z m 128.53125,0 c 0.0471,0.11886 0.125,0.34375 0.125,0.34375 0.26907,0.67165 0.75803,1.05738 1.34375,1.25 -0.099,0.292 -0.0854,0.62542 -0.0312,0.9375 -0.0758,-0.18199 -0.1875,-0.4375 -0.1875,-0.4375 -0.26058,-0.63751 -0.75003,-0.99263 -1.3125,-1.1875 0.0977,-0.273 0.088,-0.60113 0.0625,-0.90625 z m -146.03125,0.0312 c -0.0071,0.22601 -0.01023,0.47232 0.03125,0.6875 -0.01034,0 -0.306095,0 -0.3125,0 0.07227,-0.12899 0.139476,-0.2813 0.1875,-0.4375 0,0 0.07142,-0.17853 0.09375,-0.25 z m 26.28125,0 c 0.007,0.23642 0.0494,0.46765 0.125,0.6875 -0.18451,0 -0.1898,0 -0.375,0 0.0913,-0.16927 0.17966,-0.34736 0.21875,-0.5625 0,0 0.0276,-0.10556 0.0312,-0.125 z m 26.28125,0 c 0.007,0.24577 0.0613,0.48095 0.15625,0.6875 -0.10185,0 -0.29889,0 -0.375,0 0.10823,-0.20644 0.20411,-0.42559 0.21875,-0.6875 z m -43.8125,0.0312 c 0.0012,0.21448 0.01339,0.448 0.0625,0.65625 -0.09951,0 -0.21545,0 -0.3125,0 0.08382,-0.14934 0.138377,-0.315 0.1875,-0.5 0.01042,1.6e-4 0.02083,1.6e-4 0.03125,0 0,0 0.02412,-0.12773 0.03125,-0.15625 z m 35.03125,0 c 0.009,0.22467 0.0708,0.4571 0.15625,0.65625 -0.047,0 -0.29263,0 -0.34375,0 0.10226,-0.19454 0.16355,-0.41143 0.1875,-0.65625 z m 26.3125,0 c 0.0206,0.2368 0.0911,0.45713 0.1875,0.65625 -0.0299,-10e-4 -0.0639,0 -0.0937,0 0,0 -0.23256,0 -0.25,0 0.0915,-0.20058 0.13925,-0.42677 0.15625,-0.65625 z m 67.15625,0 c 0.0248,0.0701 0.0937,0.25 0.0937,0.25 0.0536,0.14926 0.11205,0.28196 0.1875,0.40625 -0.1549,0 -0.15924,0 -0.3125,0 0.0352,-0.21121 0.0363,-0.44026 0.0312,-0.65625 z m -75.9375,0.0312 c 0.043,0.45235 0.23518,0.88515 0.53125,1.15625 -0.29667,0.28409 -0.51399,0.70517 -0.53125,1.1875 -0.003,-0.49439 -0.24603,-0.90171 -0.5625,-1.1875 0.3006,-0.26481 0.50978,-0.69563 0.5625,-1.15625 z m -26.28125,0.0312 c 0.0125,0.20686 0.0533,0.40553 0.125,0.59375 -0.11894,0 -0.19161,0 -0.3125,0 0.0905,-0.17574 0.15617,-0.36955 0.1875,-0.59375 z m 119.90625,0.0312 c 0.22549,0.46215 0.30682,0.59714 0.59375,1.1875 -0.22129,-0.18962 -0.45412,-0.35991 -0.71875,-0.46875 0.10507,-0.22719 0.1312,-0.46594 0.125,-0.71875 z M 56.1875,309.03125 c 0.147435,0 0.168277,0 0.3125,0 -0.0574,0.0935 -0.109546,0.20465 -0.15625,0.3125 0,0 -0.108062,0.25593 -0.1875,0.4375 0.03623,-0.24719 0.06346,-0.5082 0.03125,-0.75 z m 10.875,0 c 0.122288,0 0.223126,0 0.375,0 -0.07767,0.11626 -0.164862,0.23303 -0.21875,0.375 0,0 -0.09577,0.24497 -0.15625,0.40625 0.03663,-0.25227 0.04604,-0.52819 0,-0.78125 z m 11.875,0 c 0.08681,0 0.254972,0 0.3125,0 -0.07239,0.12568 -0.138784,0.25456 -0.1875,0.40625 0,0 -0.06174,0.21005 -0.09375,0.3125 0.01879,-0.23481 0.01999,-0.49165 -0.03125,-0.71875 z m 52.34375,0 c 0.13472,0 0.23481,0 0.34375,0 -0.0933,0.19118 -0.17209,0.41259 -0.1875,0.65625 -0.005,-0.23357 -0.0669,-0.45584 -0.15625,-0.65625 z m 22.75,0 c 0.0214,6.3e-4 0.041,0 0.0625,0 0,0 0.27328,0 0.28125,0 -0.0939,0.2057 -0.14995,0.44481 -0.15625,0.6875 -0.0103,-0.26444 -0.0811,-0.48076 -0.1875,-0.6875 z m 10.875,0 c 0.16996,0 0.17527,0 0.34375,0 -0.0864,0.19297 -0.1491,0.39999 -0.15625,0.625 -0.0213,-0.23043 -0.0911,-0.44361 -0.1875,-0.625 z" - style="display:inline;fill:#000000;fill-opacity:1;stroke:none;enable-background:new" - inkscape:connector-curvature="0" /> - </clipPath> - <linearGradient - id="linearGradient4264"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop4266" /> - <stop - id="stop2689" - offset="0.5" - style="stop-color:#959793;stop-opacity:1;" /> - <stop - style="stop-color:#b5b7b3;stop-opacity:1;" - offset="0.75" - id="stop2691" /> - <stop - style="stop-color:#d6d7d3;stop-opacity:1;" - offset="1" - id="stop4268" /> - </linearGradient> - <linearGradient - id="linearGradient2703"> - <stop - style="stop-color:#555753;stop-opacity:1" - offset="0" - id="stop2705" /> - <stop - id="stop6528" - offset="0.30842987" - style="stop-color:#888a85;stop-opacity:1" /> - <stop - style="stop-color:#888a85;stop-opacity:1" - offset="0.62499988" - id="stop6530" /> - <stop - style="stop-color:#d6d7d3;stop-opacity:1;" - offset="1" - id="stop2711" /> - </linearGradient> - <inkscape:perspective - id="perspective95" - inkscape:persp3d-origin="24.000001 : 16 : 1" - inkscape:vp_z="48 : 23.999999 : 1" - inkscape:vp_y="0 : 999.99997 : 0" - inkscape:vp_x="0 : 23.999999 : 1" - sodipodi:type="inkscape:persp3d" /> - <linearGradient - id="linearGradient3962"> - <stop - id="stop3964" - offset="0.0000000" - style="stop-color:#d3e9ff;stop-opacity:1.0000000;" /> - <stop - id="stop4134" - offset="0.15517241" - style="stop-color:#d3e9ff;stop-opacity:1.0000000;" /> - <stop - id="stop4346" - offset="0.75000000" - style="stop-color:#4074ae;stop-opacity:1.0000000;" /> - <stop - id="stop3966" - offset="1.0000000" - style="stop-color:#36486c;stop-opacity:1.0000000;" /> - </linearGradient> - <radialGradient - gradientUnits="userSpaceOnUse" - r="29.993349" - fy="15.716079" - fx="18.247644" - cy="15.716079" - cx="18.247644" - gradientTransform="scale(0.999989,1.000011)" - id="radialGradient3968" - xlink:href="#linearGradient3962" - inkscape:collect="always" /> - <radialGradient - gradientUnits="userSpaceOnUse" - r="12.289036" - fy="63.965389" - fx="15.115514" - cy="63.965389" - cx="15.115514" - gradientTransform="scale(1.64399,0.608276)" - id="radialGradient4120" - xlink:href="#linearGradient5316" - inkscape:collect="always" /> - <radialGradient - gradientUnits="userSpaceOnUse" - r="43.526714" - fy="12.142302" - fx="15.601279" - cy="12.142302" - cx="15.601279" - gradientTransform="scale(0.999989,1.000011)" - id="radialGradient4132" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <radialGradient - r="6.7175145" - fy="12.493138" - fx="12.071323" - cy="12.493138" - cx="12.071323" - gradientUnits="userSpaceOnUse" - id="radialGradient5983" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <radialGradient - r="6.7175145" - fy="12.493138" - fx="12.071323" - cy="12.493138" - cx="12.071323" - gradientUnits="userSpaceOnUse" - id="radialGradient5985" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <radialGradient - r="6.7175145" - fy="12.493138" - fx="12.071323" - cy="12.493138" - cx="12.071323" - gradientUnits="userSpaceOnUse" - id="radialGradient5987" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <radialGradient - r="6.7175145" - fy="12.493138" - fx="12.071323" - cy="12.493138" - cx="12.071323" - gradientUnits="userSpaceOnUse" - id="radialGradient5989" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="21.041553" - x2="-22.252472" - y1="30.057165" - x1="-25.176178" - id="linearGradient6007" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="22.661524" - x2="-22.113543" - y1="30.057165" - x1="-25.176178" - gradientUnits="userSpaceOnUse" - id="linearGradient6011" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="22.661524" - x2="-22.113543" - y1="28.337734" - x1="-22.822565" - gradientUnits="userSpaceOnUse" - id="linearGradient6015" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="21.336346" - x2="-21.962101" - y1="15.649428" - x1="-21.658581" - gradientUnits="userSpaceOnUse" - id="linearGradient6019" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <inkscape:perspective - id="perspective361" - inkscape:persp3d-origin="24.000001 : 16 : 1" - inkscape:vp_z="48 : 23.999999 : 1" - inkscape:vp_y="0 : 999.99997 : 0" - inkscape:vp_x="0 : 23.999999 : 1" - sodipodi:type="inkscape:persp3d" /> - <linearGradient - y2="-436.83109" - x2="288.89954" - y1="-441.23294" - x1="284.80219" - gradientUnits="userSpaceOnUse" - id="linearGradient10670" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.70703" - x2="289.76562" - y1="-439.48358" - x1="286.66589" - gradientUnits="userSpaceOnUse" - id="linearGradient10668" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-431.91833" - x2="279.97546" - y1="-437.10501" - x1="275.94193" - gradientUnits="userSpaceOnUse" - id="linearGradient10666" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.4429" - x2="289.39124" - y1="-439.939" - x1="285.94086" - gradientUnits="userSpaceOnUse" - id="linearGradient10664" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.14453" - x2="289.85379" - y1="-441.29074" - x1="286.51172" - gradientUnits="userSpaceOnUse" - id="linearGradient10662" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.32199" - x2="289.67633" - y1="-439.75281" - x1="287.5173" - gradientUnits="userSpaceOnUse" - id="linearGradient10660" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-431.96991" - x2="285.02859" - y1="-441.05182" - x1="271.0217" - gradientUnits="userSpaceOnUse" - id="linearGradient10658" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.83109" - x2="288.89954" - y1="-441.23294" - x1="284.80219" - gradientUnits="userSpaceOnUse" - id="linearGradient10656" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.70703" - x2="289.76562" - y1="-439.48358" - x1="286.66589" - gradientUnits="userSpaceOnUse" - id="linearGradient10654" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-431.91833" - x2="279.97546" - y1="-437.10501" - x1="275.94193" - gradientUnits="userSpaceOnUse" - id="linearGradient10652" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.4429" - x2="289.39124" - y1="-439.939" - x1="285.94086" - gradientUnits="userSpaceOnUse" - id="linearGradient10650" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.14453" - x2="289.85379" - y1="-441.29074" - x1="286.51172" - gradientUnits="userSpaceOnUse" - id="linearGradient10648" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.32199" - x2="289.67633" - y1="-439.75281" - x1="287.5173" - gradientUnits="userSpaceOnUse" - id="linearGradient10646" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-431.96991" - x2="285.02859" - y1="-441.05182" - x1="271.0217" - gradientUnits="userSpaceOnUse" - id="linearGradient10644" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-96.544556" - x2="-153.0981" - y1="-100.53421" - x1="-156.29044" - gradientUnits="userSpaceOnUse" - id="linearGradient10642" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-4.4493785" - x2="-34.700153" - y1="-37.550461" - x1="-27.006643" - gradientUnits="userSpaceOnUse" - id="linearGradient2861" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-24.88446" - x2="-35.652866" - y1="-1.2491118" - x1="-25.137094" - gradientUnits="userSpaceOnUse" - id="linearGradient2859" - xlink:href="#linearGradient2527" - inkscape:collect="always" /> - <linearGradient - y2="-8.3080902" - x2="4.9625983" - y1="-43.997444" - x1="11.149398" - gradientUnits="userSpaceOnUse" - id="linearGradient2857" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - id="linearGradient3347" - inkscape:collect="always"> - <stop - id="stop3349" - offset="0" - style="stop-color:#edd400;stop-opacity:1;" /> - <stop - id="stop3351" - offset="1" - style="stop-color:#edd400;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient2527" - inkscape:collect="always"> - <stop - id="stop2529" - offset="0" - style="stop-color:#fcaf3e;stop-opacity:1;" /> - <stop - id="stop2531" - offset="1" - style="stop-color:#fcaf3e;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient2500" - inkscape:collect="always"> - <stop - id="stop2502" - offset="0" - style="stop-color:#fce94f;stop-opacity:1;" /> - <stop - id="stop2504" - offset="1" - style="stop-color:#fce94f;stop-opacity:0;" /> - </linearGradient> - <linearGradient - id="linearGradient2392" - inkscape:collect="always"> - <stop - id="stop2394" - offset="0" - style="stop-color:#eeeeec;stop-opacity:1;" /> - <stop - id="stop2396" - offset="1" - style="stop-color:#eeeeec;stop-opacity:0;" /> - </linearGradient> - <linearGradient - gradientTransform="translate(-1.608757,3.097272)" - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientUnits="userSpaceOnUse" - id="linearGradient2263" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(3.55502,0.968578)" - gradientUnits="userSpaceOnUse" - id="linearGradient2267" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(9.263651,3.495228)" - gradientUnits="userSpaceOnUse" - id="linearGradient2271" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(8.497184,-2.330824)" - gradientUnits="userSpaceOnUse" - id="linearGradient2275" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(14.4634,2.014073)" - gradientUnits="userSpaceOnUse" - id="linearGradient2279" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,-0.197462,7.612867)" - gradientUnits="userSpaceOnUse" - id="linearGradient2283" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.284317,0,0,1,14.61983,4.452335)" - gradientUnits="userSpaceOnUse" - id="linearGradient2287" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,14.8761,8.569976)" - gradientUnits="userSpaceOnUse" - id="linearGradient2291" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,-5.687359,1.810269)" - gradientUnits="userSpaceOnUse" - id="linearGradient2295" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,6.38386,6.500432)" - gradientUnits="userSpaceOnUse" - id="linearGradient2299" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(1.707748,-5.784024)" - gradientUnits="userSpaceOnUse" - id="linearGradient2303" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(-0.976307,0,0,1,53.94753,8.563694)" - gradientUnits="userSpaceOnUse" - id="linearGradient2311" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(16.14002,24.6642)" - gradientUnits="userSpaceOnUse" - id="linearGradient2350" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(-0.932144,25.8724)" - gradientUnits="userSpaceOnUse" - id="linearGradient2352" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(5.356636,23.8687)" - gradientUnits="userSpaceOnUse" - id="linearGradient2354" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(11.19027,26.52035)" - gradientUnits="userSpaceOnUse" - id="linearGradient2356" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(10.30638,19.27251)" - gradientUnits="userSpaceOnUse" - id="linearGradient2358" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,0.229156,30.76299)" - gradientUnits="userSpaceOnUse" - id="linearGradient2360" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.284317,0,0,1,16.67145,27.22746)" - gradientUnits="userSpaceOnUse" - id="linearGradient2362" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,17.05272,31.4701)" - gradientUnits="userSpaceOnUse" - id="linearGradient2364" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,-4.010744,24.9604)" - gradientUnits="userSpaceOnUse" - id="linearGradient2366" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,8.185476,29.52556)" - gradientUnits="userSpaceOnUse" - id="linearGradient2368" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(4.207586,21.30544)" - gradientUnits="userSpaceOnUse" - id="linearGradient2370" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(-0.976307,0,0,1,56.12415,32.08882)" - gradientUnits="userSpaceOnUse" - id="linearGradient2372" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - gradientTransform="matrix(0.992367,0,0,0.990713,1.128541,5.404075)" - gradientUnits="userSpaceOnUse" - y2="13.802798" - x2="41.403877" - y1="13.802798" - x1="6.6651416" - id="linearGradient2398" - xlink:href="#linearGradient2392" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(14.4634,2.014073)" - gradientUnits="userSpaceOnUse" - id="linearGradient2426" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(8.497184,-2.330824)" - gradientUnits="userSpaceOnUse" - id="linearGradient2428" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(-1.608757,3.097272)" - gradientUnits="userSpaceOnUse" - id="linearGradient2430" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(3.55502,0.968578)" - gradientUnits="userSpaceOnUse" - id="linearGradient2432" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(9.263651,3.495228)" - gradientUnits="userSpaceOnUse" - id="linearGradient2434" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,-0.197462,7.612867)" - gradientUnits="userSpaceOnUse" - id="linearGradient2436" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.284317,0,0,1,14.61983,4.452335)" - gradientUnits="userSpaceOnUse" - id="linearGradient2438" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,14.8761,8.569976)" - gradientUnits="userSpaceOnUse" - id="linearGradient2440" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,-5.687359,1.810269)" - gradientUnits="userSpaceOnUse" - id="linearGradient2442" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,6.38386,6.500432)" - gradientUnits="userSpaceOnUse" - id="linearGradient2444" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(-0.976307,0,0,1,53.94753,8.563694)" - gradientUnits="userSpaceOnUse" - id="linearGradient2446" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="13.802798" - x2="41.403877" - y1="13.802798" - x1="6.6651416" - gradientTransform="matrix(0.992367,0,0,0.990713,4.378541,10.65407)" - gradientUnits="userSpaceOnUse" - id="linearGradient2451" - xlink:href="#linearGradient2392" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,9.63386,11.75043)" - gradientUnits="userSpaceOnUse" - id="linearGradient2457" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,-2.437359,7.060269)" - gradientUnits="userSpaceOnUse" - id="linearGradient2460" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,18.1261,13.81998)" - gradientUnits="userSpaceOnUse" - id="linearGradient2463" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,3.052538,12.86287)" - gradientUnits="userSpaceOnUse" - id="linearGradient2469" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(12.51365,8.745228)" - gradientUnits="userSpaceOnUse" - id="linearGradient2472" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(6.80502,6.218578)" - gradientUnits="userSpaceOnUse" - id="linearGradient2475" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(1.641243,8.347272)" - gradientUnits="userSpaceOnUse" - id="linearGradient2478" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(0.842481,-3.998086)" - gradientUnits="userSpaceOnUse" - id="linearGradient2483" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="9" - x2="53.75" - y1="-21.75" - x1="37" - id="linearGradient2506" - xlink:href="#linearGradient2500" - inkscape:collect="always" /> - <linearGradient - gradientTransform="matrix(0.889091,0,0,0.617886,-4.771368,39.81402)" - y2="9" - x2="53.75" - y1="-21.75" - x1="37" - gradientUnits="userSpaceOnUse" - id="linearGradient2509" - xlink:href="#linearGradient2500" - inkscape:collect="always" /> - <linearGradient - y2="9" - x2="53.75" - y1="-18.407482" - x1="38.857941" - gradientTransform="matrix(0.605509,0,0,0.710542,-0.224971,42.195)" - gradientUnits="userSpaceOnUse" - id="linearGradient2513" - xlink:href="#linearGradient2500" - inkscape:collect="always" /> - <linearGradient - y2="9" - x2="53.75" - y1="-21.75" - x1="37" - gradientTransform="matrix(0.414169,0,0,0.778853,-1.910724,36.8785)" - gradientUnits="userSpaceOnUse" - id="linearGradient2517" - xlink:href="#linearGradient2500" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(17.33814,3.415985)" - gradientUnits="userSpaceOnUse" - id="linearGradient2537" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(13.40064,1.353485)" - gradientUnits="userSpaceOnUse" - id="linearGradient2541" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(-7.499805,1.708617)" - gradientUnits="userSpaceOnUse" - id="linearGradient2555" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(-0.72683,2.481141)" - gradientUnits="userSpaceOnUse" - id="linearGradient2563" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="46.09293" - x2="29.75" - y1="29.115711" - x1="23.303862" - id="linearGradient3353" - xlink:href="#linearGradient3347" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(13.40064,1.353485)" - gradientUnits="userSpaceOnUse" - id="linearGradient3366" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(1.641243,8.347272)" - gradientUnits="userSpaceOnUse" - id="linearGradient3368" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(6.80502,6.218578)" - gradientUnits="userSpaceOnUse" - id="linearGradient3370" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(12.51365,8.745228)" - gradientUnits="userSpaceOnUse" - id="linearGradient3372" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,3.052538,12.86287)" - gradientUnits="userSpaceOnUse" - id="linearGradient3374" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,18.1261,13.81998)" - gradientUnits="userSpaceOnUse" - id="linearGradient3376" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,-2.437359,7.060269)" - gradientUnits="userSpaceOnUse" - id="linearGradient3378" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,9.63386,11.75043)" - gradientUnits="userSpaceOnUse" - id="linearGradient3380" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,0.795022,6.093572)" - gradientUnits="userSpaceOnUse" - id="linearGradient3383" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,-11.2762,1.403411)" - gradientUnits="userSpaceOnUse" - id="linearGradient3386" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,9.287262,8.163122)" - gradientUnits="userSpaceOnUse" - id="linearGradient3389" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,-5.7863,7.206012)" - gradientUnits="userSpaceOnUse" - id="linearGradient3392" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(3.674812,3.08837)" - gradientUnits="userSpaceOnUse" - id="linearGradient3395" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(-2.033818,0.56172)" - gradientUnits="userSpaceOnUse" - id="linearGradient3398" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(-7.197595,2.690414)" - gradientUnits="userSpaceOnUse" - id="linearGradient3401" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(4.561802,-4.303373)" - gradientUnits="userSpaceOnUse" - id="linearGradient3405" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2916" - x1="-27.006643" - y1="-37.550461" - x2="-34.700153" - y2="-4.4493785" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2912" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(57.97693,-10.56876)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2910" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.976307,0,0,1,123.1162,-5.446357)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2908" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106619,0,0,1,0.795022,6.093572)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2906" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,-11.2762,1.403411)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2904" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.834148,0,0,1,9.287262,8.163122)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2902" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.751222,0,0,1,-5.7863,7.206012)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2900" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(3.674812,3.08837)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2898" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.033818,0.56172)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2896" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-7.197595,2.690414)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2892" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.284317,0,0,1,79.36909,-3.193747)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2890" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,56.25514,-12.39388)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2888" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(88.49344,-9.697877)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2886" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(4.561802,-4.303373)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2884" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-7.197595,2.690414)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2882" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-2.033818,0.56172)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2880" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(3.674812,3.08837)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2878" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.751222,0,0,1,-5.7863,7.206012)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2876" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.834148,0,0,1,9.287262,8.163122)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2874" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,-11.2762,1.403411)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2872" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106619,0,0,1,0.795022,6.093572)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2870" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106619,0,0,1,9.63386,11.75043)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2868" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,-2.437359,7.060269)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2866" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.834148,0,0,1,18.1261,13.81998)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2864" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.751222,0,0,1,3.052538,12.86287)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2862" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(12.51365,8.745228)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2860" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(6.80502,6.218578)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2858" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.641243,8.347272)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2856" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(13.40064,1.353485)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2852" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.72683,2.481141)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2850" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-7.499805,1.708617)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2848" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(13.40064,1.353485)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2846" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(17.33814,3.415985)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2834" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(0.842481,-3.998086)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2832" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.641243,8.347272)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2830" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(6.80502,6.218578)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2828" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(12.51365,8.745228)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2826" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.751222,0,0,1,3.052538,12.86287)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2824" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.834148,0,0,1,18.1261,13.81998)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2822" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,-2.437359,7.060269)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2820" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106619,0,0,1,9.63386,11.75043)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2814" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.976307,0,0,1,53.94753,8.563694)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2812" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106619,0,0,1,6.38386,6.500432)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2810" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,-5.687359,1.810269)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2808" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.834148,0,0,1,14.8761,8.569976)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2806" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.284317,0,0,1,14.61983,4.452335)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2804" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.751222,0,0,1,-0.197462,7.612867)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2802" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(9.263651,3.495228)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2800" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(3.55502,0.968578)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2798" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-1.608757,3.097272)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2796" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(8.497184,-2.330824)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2794" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(14.4634,2.014073)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2790" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.976307,0,0,1,56.12415,32.08882)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2788" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(4.207586,21.30544)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2786" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106619,0,0,1,8.185476,29.52556)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2784" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,-4.010744,24.9604)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2782" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.834148,0,0,1,17.05272,31.4701)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2780" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.284317,0,0,1,16.67145,27.22746)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2778" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.751222,0,0,1,0.229156,30.76299)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2776" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(10.30638,19.27251)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2774" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(11.19027,26.52035)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2772" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(5.356636,23.8687)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2770" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(-0.932144,25.8724)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2768" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(16.14002,24.6642)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2766" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(-0.976307,0,0,1,53.94753,8.563694)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2764" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(1.707748,-5.784024)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2762" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.106619,0,0,1,6.38386,6.500432)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2760" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.462015,0,0,1.262475,-5.687359,1.810269)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2758" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.834148,0,0,1,14.8761,8.569976)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2756" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(1.284317,0,0,1,14.61983,4.452335)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2754" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0.751222,0,0,1,-0.197462,7.612867)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2752" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(14.4634,2.014073)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2750" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(8.497184,-2.330824)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2748-5" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(9.263651,3.495228)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2746" - gradientUnits="userSpaceOnUse" - gradientTransform="translate(3.55502,0.968578)" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" /> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient5567" - id="linearGradient2744" - gradientUnits="userSpaceOnUse" - x1="14.260854" - y1="9.285902" - x2="16.851845" - y2="16.268581" - gradientTransform="translate(-1.608757,3.097272)" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(41.44608,-6.716447)" - gradientUnits="userSpaceOnUse" - id="linearGradient4434" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(46.60985,-8.845141)" - gradientUnits="userSpaceOnUse" - id="linearGradient4436" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(52.31848,-6.318491)" - gradientUnits="userSpaceOnUse" - id="linearGradient4438" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,42.85737,-2.200849)" - gradientUnits="userSpaceOnUse" - id="linearGradient4440" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,57.93093,-1.243739)" - gradientUnits="userSpaceOnUse" - id="linearGradient4442" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,37.36747,-8.00345)" - gradientUnits="userSpaceOnUse" - id="linearGradient4444" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,49.43869,-3.313289)" - gradientUnits="userSpaceOnUse" - id="linearGradient4446" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(41.44608,-6.716447)" - gradientUnits="userSpaceOnUse" - id="linearGradient4464" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(46.60985,-8.845141)" - gradientUnits="userSpaceOnUse" - id="linearGradient4466" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(52.31848,-6.318491)" - gradientUnits="userSpaceOnUse" - id="linearGradient4468" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,42.85737,-2.200849)" - gradientUnits="userSpaceOnUse" - id="linearGradient4470" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,57.93093,-1.243739)" - gradientUnits="userSpaceOnUse" - id="linearGradient4472" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,37.36747,-8.00345)" - gradientUnits="userSpaceOnUse" - id="linearGradient4474" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,49.43869,-3.313289)" - gradientUnits="userSpaceOnUse" - id="linearGradient4476" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(41.44608,-6.716447)" - gradientUnits="userSpaceOnUse" - id="linearGradient4538" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(46.60985,-8.845141)" - gradientUnits="userSpaceOnUse" - id="linearGradient4540" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="translate(52.31848,-6.318491)" - gradientUnits="userSpaceOnUse" - id="linearGradient4542" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.751222,0,0,1,42.85737,-2.200849)" - gradientUnits="userSpaceOnUse" - id="linearGradient4544" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(0.834148,0,0,1,57.93093,-1.243739)" - gradientUnits="userSpaceOnUse" - id="linearGradient4546" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.462015,0,0,1.262475,37.36747,-8.00345)" - gradientUnits="userSpaceOnUse" - id="linearGradient4548" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="16.268581" - x2="16.851845" - y1="9.285902" - x1="14.260854" - gradientTransform="matrix(1.106619,0,0,1,49.43869,-3.313289)" - gradientUnits="userSpaceOnUse" - id="linearGradient4550" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="32.443653" - x2="47.342175" - y1="32.443653" - x1="17.18132" - gradientTransform="matrix(0.927204,0,0,0.882329,2.105168,3.373861)" - gradientUnits="userSpaceOnUse" - id="linearGradient4552" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="32.443653" - x2="47.342175" - y1="32.443653" - x1="17.18132" - gradientTransform="matrix(0.926905,0,0,0.881886,2.081767,3.39039)" - gradientUnits="userSpaceOnUse" - id="linearGradient2276" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="32.443653" - x2="47.342175" - y1="32.443653" - x1="17.18132" - gradientTransform="matrix(0.93123,0,0,0.881886,-13.99458,-6.609596)" - gradientUnits="userSpaceOnUse" - id="linearGradient2289" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - gradientUnits="userSpaceOnUse" - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - id="linearGradient3025" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3029" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3033" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3037" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3041" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3045" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3049" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3053" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - gradientTransform="translate(3.4375,-3)" - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientUnits="userSpaceOnUse" - id="linearGradient3056" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(1.333333,0,0,1,-6.911612,2.585786)" - gradientUnits="userSpaceOnUse" - id="linearGradient3060" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="translate(-3.146447,0.08838835)" - gradientUnits="userSpaceOnUse" - id="linearGradient3064" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.888889,0,0,0.888889,13.66667,3)" - gradientUnits="userSpaceOnUse" - id="linearGradient3068" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.888889,0,0,0.888889,15.66667,8)" - gradientUnits="userSpaceOnUse" - id="linearGradient3072" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.813402,0,0,0.813402,-0.698434,10.27557)" - gradientUnits="userSpaceOnUse" - id="linearGradient3076" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.613903,0,0,0.613903,17.68234,16.9948)" - gradientUnits="userSpaceOnUse" - id="linearGradient3080" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="translate(3.4375,-3)" - gradientUnits="userSpaceOnUse" - id="linearGradient3107" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(1.333333,0,0,1,-6.911612,2.585786)" - gradientUnits="userSpaceOnUse" - id="linearGradient3109" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="translate(-3.146447,0.08838835)" - gradientUnits="userSpaceOnUse" - id="linearGradient3111" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.888889,0,0,0.888889,13.66667,3)" - gradientUnits="userSpaceOnUse" - id="linearGradient3113" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.888889,0,0,0.888889,15.66667,8)" - gradientUnits="userSpaceOnUse" - id="linearGradient3115" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.813402,0,0,0.813402,-0.698434,10.27557)" - gradientUnits="userSpaceOnUse" - id="linearGradient3117" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="34.034641" - x2="29.521708" - y1="28.201012" - x1="23.688078" - gradientTransform="matrix(0.613903,0,0,0.613903,17.68234,16.9948)" - gradientUnits="userSpaceOnUse" - id="linearGradient3119" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-431.96991" - x2="285.02859" - y1="-441.05182" - x1="271.0217" - gradientUnits="userSpaceOnUse" - id="linearGradient10658-2" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.32199" - x2="289.67633" - y1="-439.75281" - x1="287.5173" - gradientUnits="userSpaceOnUse" - id="linearGradient10660-1" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.14453" - x2="289.85379" - y1="-441.29074" - x1="286.51172" - gradientUnits="userSpaceOnUse" - id="linearGradient10662-9" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.4429" - x2="289.39124" - y1="-439.939" - x1="285.94086" - gradientUnits="userSpaceOnUse" - id="linearGradient10664-4" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-431.91833" - x2="279.97546" - y1="-437.10501" - x1="275.94193" - gradientUnits="userSpaceOnUse" - id="linearGradient10666-7" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.70703" - x2="289.76562" - y1="-439.48358" - x1="286.66589" - gradientUnits="userSpaceOnUse" - id="linearGradient10668-8" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - <linearGradient - y2="-436.83109" - x2="288.89954" - y1="-441.23294" - x1="284.80219" - gradientUnits="userSpaceOnUse" - id="linearGradient10670-4" - xlink:href="#linearGradient5567" - inkscape:collect="always" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="52.118945" - inkscape:cy="-1.9766715" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1600" - inkscape:window-height="840" - inkscape:window-x="0" - inkscape:window-y="31" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - units="px" /> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-272.35814,-115.42797)"> - <g - id="g7794" - transform="matrix(1.5956518,0,0,1.7512843,-125.28919,902.24817)"> - <path - sodipodi:nodetypes="ccsscsssscsscc" - id="path7796" - d="m 280.5,-445.5 c -2.27083,0 -4.10991,1.55028 -4.71875,3.625 -0.69323,-0.36383 -1.44451,-0.625 -2.28125,-0.625 -2.76,0 -5.00001,2.23999 -5,5 0,0.57893 0.16252,1.1077 0.34375,1.625 -1.37347,0.77074 -2.34375,2.189 -2.34375,3.875 0,2.484 2.016,4.50001 4.5,4.5 0.17713,0 18.82287,0 19,0 2.48399,0 4.5,-2.016 4.5,-4.5 0,-1.686 -0.97028,-3.10426 -2.34375,-3.875 0.18124,-0.51729 0.34375,-1.04608 0.34375,-1.625 0,-2.76 -2.24,-4.99999 -5,-5 -0.83674,0 -1.58802,0.26117 -2.28125,0.625 -0.60884,-2.07472 -2.44792,-3.625 -4.71875,-3.625 z" - style="fill:#c4c5c2;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsscsssscsscc" - id="path7798" - d="m 280.5,-445 c -2.18972,0 -3.7236,1.33577 -4.39555,3.84352 -0.66846,-0.34362 -1.54759,-0.83335 -2.35445,-0.83335 -2.71651,0 -4.75514,1.93882 -4.75513,4.54554 0,0.54677 0.26721,1.33344 0.44196,1.82201 -1.32443,0.72795 -2.43683,1.8905 -2.43683,3.37255 0,2.34605 1.54617,4.25009 4.33928,4.25009 0.17081,0 18.15064,0 18.32144,0 2.77101,0 4.33928,-1.90404 4.33928,-4.25009 0,-1.59237 -1.1124,-2.66669 -2.43683,-3.39464 0.17476,-0.48856 0.46407,-1.25316 0.46407,-1.79992 0,-2.60671 -2.11581,-4.56763 -4.77723,-4.56764 -0.80687,0 -1.64181,0.48974 -2.31027,0.83336 C 284.29089,-443.60011 282.68973,-445 280.5,-445 Z" - style="opacity:1;fill:url(#linearGradient10644);fill-opacity:1;stroke:none;stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <g - id="g7800"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7802" - transform="matrix(1.056604,0,0,1.056604,-24.19818,21.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10646);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7804" - transform="matrix(1.056604,0,0,1.056604,-24.19818,21.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <rect - y="-438" - x="271" - height="9" - width="20" - id="rect7806" - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <circle - transform="matrix(0.90566,0,0,0.90566,9.830195,-35.68869)" - id="path7808" - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <g - id="g7810"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7812" - transform="matrix(1.056604,0,0,1.056604,-17.19811,24.86321)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10648);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7814" - transform="matrix(1.056604,0,0,1.056604,-17.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <g - id="g7816"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7818" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10650);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7820" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <g - transform="translate(-1,0)" - id="g7822"> - <path - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 280.46875,-440.96875 c -3.57938,0 -6.46875,2.92063 -6.46875,6.5 0,2.37068 1.34943,4.33779 3.25,5.46875 l 6.46875,0 c 1.90057,-1.13096 3.25,-3.12931 3.25,-5.5 0,-3.57938 -2.92063,-6.46875 -6.5,-6.46875 z" - id="path7824" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:url(#linearGradient10652);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 280.5,-441 c -3.588,0 -6.5,2.91201 -6.5,6.5 0,2.3764 1.34485,4.36632 3.25,5.5 l 6.5,0 c 1.90515,-1.13368 3.25,-3.1236 3.25,-5.5 0,-3.588 -2.912,-6.49999 -6.5,-6.5 z" - id="path7826" - inkscape:connector-curvature="0" /> - </g> - <circle - transform="matrix(0.90566,0,0,0.90566,9.830296,-35.68884)" - id="path7828" - style="opacity:1;fill:url(#linearGradient10654);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <path - sodipodi:nodetypes="ccss" - id="path7830" - d="m 292.9564,-437.33396 c -0.002,2.68456 -3.26926,3.71395 -3.26926,3.71395 0,0 2.34874,-1.62595 2.33685,-3.70501 0,0 0.93241,-0.009 0.93241,-0.009 z" - style="fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <g - transform="matrix(1.142857,0,0,1.142857,-28.57139,67.00008)" - id="g7832"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7834" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10656);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7836" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - </g> - <g - inkscape:label="Layer 1" - id="layer1-5" - transform="translate(283.90172,112.03531)"> - <ellipse - transform="matrix(1,0,0,1.243244,0,-10.27241)" - id="path4112" - style="fill:url(#radialGradient4120);fill-opacity:1;stroke:none;stroke-opacity:1" - cx="24.849752" - cy="38.908627" - rx="20.203051" - ry="7.4751287" /> - <path - id="path3214" - d="m 43.959853,23.485499 c 0,10.709718 -8.682103,19.391723 -19.390348,19.391723 -10.709226,0 -19.3908387,-8.682103 -19.3908387,-19.391723 0,-10.709227 8.6816127,-19.3903473 19.3908387,-19.3903473 10.708245,0 19.390348,8.6811203 19.390348,19.3903473 l 0,0 z" - style="fill:url(#radialGradient3968);fill-opacity:1;fill-rule:nonzero;stroke:#39396c;stroke-miterlimit:4;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <g - transform="matrix(0.982371,0,0,0.982371,0.121079,0.232914)" - style="opacity:1;fill:#204a87;fill-opacity:0.71345029;fill-rule:nonzero;stroke:none;stroke-miterlimit:4" - id="g4136"> - <g - style="fill:#204a87" - id="g4138"> - <g - style="fill:#204a87" - id="g4142"> - <path - style="fill:#204a87" - id="path4144" - d="m 44.0713,20.7144 c 0,0.2627 0,0 0,0 l -0.5449,0.6172 c -0.334,-0.3936 -0.709,-0.7246 -1.0898,-1.0703 l -0.8359,0.123 -0.7637,-0.8633 0,1.0684 0.6543,0.4951 0.4355,0.4932 0.582,-0.6582 c 0.1465,0.2744 0.291,0.5488 0.4365,0.8232 l 0,0.8223 -0.6553,0.7402 -1.1992,0.8232 -0.9082,0.9063 -0.582,-0.6602 0.291,-0.7402 -0.5811,-0.6582 -0.9814,-2.0977 -0.8359,-0.9453 -0.2188,0.2461 0.3281,1.1934 0.6172,0.6992 c 0.3525,1.0176 0.7012,1.9902 1.1641,2.9629 0.7178,0 1.3945,-0.0762 2.1074,-0.166 l 0,0.5762 -0.8721,2.1392 -0.7998,0.9043 -0.6543,1.4004 c 0,0.7676 0,1.5352 0,2.3027 l 0.2188,0.9063 -0.3633,0.4102 -0.8008,0.4941 -0.8359,0.6992 0.6914,0.7813 -0.9453,0.8242 0.1816,0.5332 -1.418,1.6055 -0.9443,0 -0.7998,0.4941 -0.5098,0 0,-0.6582 -0.2168,-1.3184 c -0.2813,-0.8262 -0.5742,-1.6465 -0.8721,-2.4668 0,-0.6055 0.0361,-1.2051 0.0723,-1.8105 l 0.3643,-0.8223 -0.5098,-0.9883 0.0371,-1.3574 -0.6914,-0.7813 0.3457,-1.1309 -0.5625,-0.6382 -0.9824,0 -0.3271,-0.3701 -0.9814,0.6177 -0.3994,-0.4536 -0.9092,0.7817 c -0.6172,-0.6997 -1.2354,-1.3989 -1.8535,-2.0981 l -0.7266,-1.7285 0.6543,-0.9863 -0.3633,-0.4111 0.7988,-1.8936 c 0.6563,-0.8164 1.3418,-1.5996 2.0352,-2.3857 l 1.2363,-0.3291 1.3809,-0.1641 0.9453,0.2471 1.3447,1.3564 0.4727,-0.5342 0.6533,-0.082 1.2363,0.4111 0.9453,0 0.6543,-0.5762 0.291,-0.4111 -0.6553,-0.4111 -1.0908,-0.082 c -0.3027,-0.4199 -0.584,-0.8613 -0.9434,-1.2344 l -0.3643,0.1641 -0.1455,1.0703 -0.6543,-0.7402 -0.1445,-0.8242 -0.7266,-0.5742 -0.292,0 0.7275,0.8223 -0.291,0.7402 -0.5811,0.1641 0.3633,-0.7402 -0.6553,-0.3281 -0.5801,-0.6582 -1.0918,0.2461 -0.1445,0.3281 -0.6543,0.4121 -0.3633,0.9053 -0.9082,0.4521 -0.4004,-0.4521 -0.4355,0 0,-1.4814 0.9453,-0.4941 0.7266,0 -0.1465,-0.5752 -0.5801,-0.5762 0.9805,-0.2061 0.5449,-0.6162 0.4355,-0.7412 0.8008,0 -0.2188,-0.5752 0.5098,-0.3291 0,0.6582 1.0898,0.2461 1.0898,-0.9043 0.0732,-0.4121 0.9443,-0.6577 c -0.3418,0.0425 -0.6836,0.0737 -1.0176,0.1646 l 0,-0.7411 0.3633,-0.8228 -0.3633,0 -0.7984,0.7402 -0.2188,0.4116 0.2188,0.5767 -0.3643,0.9863 -0.5811,-0.3291 -0.5078,-0.5752 -0.8008,0.5752 -0.291,-1.3159 1.3809,-0.9048 0,-0.4941 0.873,-0.5757 1.3809,-0.3296 0.9453,0.3296 1.7441,0.3291 -0.4355,0.4932 -0.9453,0 0.9453,0.9873 0.7266,-0.8223 0.2207,-0.3618 c 0,0 2.7871,2.498 4.3799,5.2305 1.5928,2.7334 2.3408,5.9551 2.3408,6.6094 z" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4146"> - <g - style="fill:#204a87" - id="g4150"> - <path - style="fill:#204a87" - id="path4152" - d="m 26.0703,9.2363 -0.0732,0.4932 0.5098,0.3291 0.8711,-0.5757 -0.4355,-0.4937 -0.582,0.3296 -0.29,-0.0825" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4154"> - <g - style="fill:#204a87" - id="g4158"> - <path - style="fill:#204a87" - id="path4160" - d="m 26.8701,5.8633 -1.8906,-0.7407 -2.1797,0.2466 -2.6904,0.7402 -0.5088,0.4941 1.6719,1.1514 0,0.6582 -0.6543,0.6582 0.873,1.729 0.5801,-0.3301 0.7285,-1.1514 c 1.123,-0.3472 2.1299,-0.7407 3.1973,-1.2344 l 0.873,-2.2212" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4162"> - <g - style="fill:#204a87" - id="g4166"> - <path - style="fill:#204a87" - id="path4168" - d="m 28.833,12.7749 -0.291,-0.7412 -0.5098,0.165 0.1465,0.9043 0.6543,-0.3281" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4170"> - <g - style="fill:#204a87" - id="g4174"> - <path - style="fill:#204a87" - id="path4176" - d="m 29.123,12.6089 -0.1455,0.9883 0.7998,-0.165 0.5811,-0.5752 -0.5088,-0.4941 C 29.6787,11.9078 29.4824,11.483 29.2685,11.0465 l -0.4355,0 0,0.4932 0.29,0.3291 0,0.7402" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4178"> - <g - style="fill:#204a87" - id="g4182"> - <path - style="fill:#204a87" - id="path4184" - d="m 18.3652,28.2422 -0.582,-1.1523 -1.0903,-0.2466 -0.5815,-1.5625 -1.4536,0.1641 -1.2354,-0.9043 -1.3091,1.1514 0,0.1816 c -0.396,-0.1143 -0.8828,-0.1299 -1.2354,-0.3467 l -0.291,-0.8223 0,-0.9053 -0.8721,0.082 c 0.0728,-0.5762 0.145,-1.1514 0.2183,-1.7275 l -0.5093,0 -0.5083,0.6582 -0.5093,0.2461 -0.7271,-0.4102 -0.0728,-0.9053 0.1455,-0.9873 1.0908,-0.8223 0.8721,0 0.145,-0.4941 1.0903,0.2461 0.7998,0.9883 0.1455,-1.6465 1.3813,-1.1514 0.5088,-1.2344 1.0176,-0.4111 0.5815,-0.8223 1.3081,-0.248 0.6548,-0.9863 c -0.6543,0 -1.3086,0 -1.9629,0 l 1.2358,-0.5762 0.8716,0 1.2363,-0.4121 0.1455,-0.4922 -0.4365,-0.4121 -0.5088,-0.165 0.1455,-0.4932 -0.3633,-0.7402 -0.8726,0.3281 0.1455,-0.6577 -1.0176,-0.5762 -0.7993,1.3979 0.0723,0.4941 -0.7993,0.3301 -0.5093,1.0693 -0.2178,-0.9873 -1.3813,-0.5762 -0.2183,-0.7402 1.8174,-1.0703 0.7998,-0.7402 0.0728,-0.9048 -0.436,-0.2471 -0.5815,-0.0825 -0.3633,0.9053 c 0,0 -0.6079,0.1191 -0.7642,0.1577 -1.9961,1.8394 -6.0293,5.8101 -6.9663,13.3062 0.0371,0.1738 0.6792,1.1816 0.6792,1.1816 l 1.5264,0.9043 1.5264,0.4121 0.6548,0.8232 1.0171,0.7402 0.5815,-0.082 0.436,0.1963 0,0.1328 -0.5811,1.563 -0.4365,0.6582 0.1455,0.3301 -0.3633,1.2324 1.3086,2.3867 1.3081,1.1523 0.582,0.8223 -0.0732,1.7285 0.4365,0.9863 -0.4365,1.8926 c 0,0 -0.0342,-0.0117 0.0215,0.1777 0.0562,0.1895 2.3291,1.4512 2.4736,1.3438 0.144,-0.1094 0.2671,-0.2051 0.2671,-0.2051 l -0.145,-0.4102 0.5811,-0.5762 0.2183,-0.5762 0.9453,-0.3301 0.7266,-1.8105 -0.2178,-0.4922 0.5078,-0.7402 1.0908,-0.248 0.582,-1.3164 -0.1455,-1.6445 0.8721,-1.2344 0.1455,-1.2344 C 20.7331,29.4607 19.5495,28.8513 18.365,28.242" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4186"> - <g - style="fill:#204a87" - id="g4190"> - <path - style="fill:#204a87" - id="path4192" - d="m 16.7656,9.5649 0.7266,0.4937 0.582,0 0,-0.5757 -0.7266,-0.3291 -0.582,0.4111" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4194"> - <g - style="fill:#204a87" - id="g4198"> - <path - style="fill:#204a87" - id="path4200" - d="m 14.876,8.9072 -0.3638,0.9048 0.7271,0 0.3638,-0.8228 C 15.9166,8.7675 16.2286,8.5444 16.5479,8.331 l 0.7271,0.2471 c 0.4844,0.3291 0.9688,0.6582 1.4536,0.9868 L 19.4561,8.9072 18.6558,8.5781 18.292,7.8374 16.9111,7.6728 16.8383,7.2612 16.184,7.4262 15.8936,8.002 15.5298,7.2613 l -0.145,0.3291 0.0728,0.8228 -0.5816,0.494" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4202"> - <g - id="g4204" - style="opacity:0.75;fill:#204a87"> - <path - style="fill:#204a87" - d="" - id="path4206" - inkscape:connector-curvature="0" /> - </g> - <g - style="fill:#204a87" - id="g4208"> - <path - style="fill:#204a87" - d="" - id="path4210" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4212"> - <g - id="g4214" - style="opacity:0.75;fill:#204a87"> - <path - style="fill:#204a87" - d="" - id="path4216" - inkscape:connector-curvature="0" /> - </g> - <g - style="fill:#204a87" - id="g4218"> - <path - style="fill:#204a87" - d="" - id="path4220" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4222"> - <g - style="fill:#204a87" - id="g4226"> - <path - style="fill:#204a87" - id="path4228" - d="M 17.4922,6.8496 17.856,6.521 18.5831,6.3564 c 0.498,-0.2422 0.998,-0.4053 1.5264,-0.5762 l -0.29,-0.4937 -0.9385,0.1348 -0.4434,0.4419 -0.731,0.106 -0.6499,0.3052 -0.3159,0.1528 -0.1929,0.2583 0.9443,0.1641" - inkscape:connector-curvature="0" /> - </g> - </g> - <g - style="fill:#204a87" - id="g4230"> - <g - style="fill:#204a87" - id="g4234"> - <path - style="fill:#204a87" - id="path4236" - d="m 18.7285,14.6665 0.4365,-0.6582 -0.6548,-0.4932 0.2183,1.1514" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <path - id="path4122" - d="m 42.975093,23.485534 c 0,10.16582 -8.241178,18.406906 -18.4056,18.406906 -10.165354,0 -18.4060669,-8.241179 -18.4060669,-18.406906 0,-10.165354 8.2407129,-18.4056 18.4060669,-18.4056 10.164422,0 18.4056,8.240246 18.4056,18.4056 l 0,0 z" - style="opacity:0.39560439;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#radialGradient4132);stroke-miterlimit:4;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <ellipse - transform="matrix(1.131034,0.613097,-0.476556,0.879144,54.09058,16.04435)" - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path5991" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6007);stroke-width:0.88164198;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="-18.561554" - cy="21.041553" - rx="15.733126" - ry="9.4575529" /> - <ellipse - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6011);stroke-width:0.88164198;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="path6009" - inkscape:r_cx="true" - inkscape:r_cy="true" - transform="matrix(0.939326,-0.879086,0.683307,0.730131,32.31406,-4.451561)" - cx="-18.561554" - cy="21.041553" - rx="15.733126" - ry="9.4575529" /> - <g - id="g4933" - transform="matrix(-1.045772,0.767251,0.767251,1.045772,35.61651,-22.14396)" - inkscape:r_cx="true" - inkscape:r_cy="true"> - <circle - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient5987);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="path4935" - inkscape:r_cx="true" - inkscape:r_cy="true" - transform="translate(14.95026,22.93047)" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - <circle - transform="matrix(0.308271,0,0,0.308271,23.30035,31.57234)" - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4937" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - </g> - <ellipse - transform="matrix(-1.280316,-0.126159,0.09806226,-0.99518,-2.405125,40.52387)" - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path6013" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6015);stroke-width:0.88164198;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="-18.561554" - cy="21.041553" - rx="15.733126" - ry="9.4575529" /> - <ellipse - transform="matrix(0.917874,-0.858983,0.667701,0.713433,27.63317,-6.909069)" - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path6017" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6019);stroke-width:0.90226138;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="-18.561554" - cy="21.041553" - rx="15.733126" - ry="9.4575529" /> - <g - inkscape:r_cy="true" - inkscape:r_cx="true" - transform="matrix(-0.806276,0.59154,0.59154,0.806276,12.38564,-18.02921)" - id="g5075"> - <circle - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient5983);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="path5077" - inkscape:r_cx="true" - inkscape:r_cy="true" - transform="translate(14.95026,22.93047)" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - <circle - transform="matrix(0.308271,0,0,0.308271,23.30035,31.57234)" - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path5079" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - </g> - <g - id="g4945" - transform="matrix(-0.806276,0.59154,0.59154,0.806276,13.4991,-31.50022)" - inkscape:r_cx="true" - inkscape:r_cy="true"> - <circle - transform="translate(14.95026,22.93047)" - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4947" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient5985);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - <circle - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="path4949" - inkscape:r_cx="true" - inkscape:r_cy="true" - transform="matrix(0.308271,0,0,0.308271,23.30035,31.57234)" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - </g> - <g - inkscape:r_cy="true" - inkscape:r_cx="true" - transform="matrix(-0.870227,0.638572,0.638458,0.870381,25.20503,-35.31278)" - id="g4939" - style="opacity:1"> - <circle - transform="translate(14.95026,22.93047)" - inkscape:r_cy="true" - inkscape:r_cx="true" - id="path4941" - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:url(#radialGradient5989);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - <circle - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" - id="path4943" - inkscape:r_cx="true" - inkscape:r_cy="true" - transform="matrix(0.308271,0,0,0.308271,23.30035,31.57234)" - cx="12.071323" - cy="12.493138" - r="6.7175145" /> - </g> - </g> - <g - id="g4518" - transform="matrix(1.4919791,0,0,1.6374999,524.0181,309.43508)" - style="stroke:none"> - <circle - transform="matrix(1.737733,0,0,1.737733,110.8322,70.07649)" - id="path4520" - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:0.33115697;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="-155.0625" - cy="-96.9375" - r="3.125" /> - <circle - transform="matrix(1.737733,0,0,1.737733,110.8948,70.01402)" - id="path4522" - style="opacity:1;fill:url(#linearGradient10642);fill-opacity:1;stroke:none;stroke-width:0.4522453;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:0;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="-155.0625" - cy="-96.9375" - r="3.125" /> - </g> - <g - id="g7852" - transform="matrix(1.5956518,0,0,1.7512843,-151.37095,910.24302)"> - <path - sodipodi:nodetypes="ccsscsssscsscc" - id="path7854" - d="m 280.5,-445.5 c -2.27083,0 -4.10991,1.55028 -4.71875,3.625 -0.69323,-0.36383 -1.44451,-0.625 -2.28125,-0.625 -2.76,0 -5.00001,2.23999 -5,5 0,0.57893 0.16252,1.1077 0.34375,1.625 -1.37347,0.77074 -2.34375,2.189 -2.34375,3.875 0,2.484 2.016,4.50001 4.5,4.5 0.17713,0 18.82287,0 19,0 2.48399,0 4.5,-2.016 4.5,-4.5 0,-1.686 -0.97028,-3.10426 -2.34375,-3.875 0.18124,-0.51729 0.34375,-1.04608 0.34375,-1.625 0,-2.76 -2.24,-4.99999 -5,-5 -0.83674,0 -1.58802,0.26117 -2.28125,0.625 -0.60884,-2.07472 -2.44792,-3.625 -4.71875,-3.625 z" - style="fill:#c4c5c2;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsscsssscsscc" - id="path7856" - d="m 280.5,-445 c -2.18972,0 -3.7236,1.33577 -4.39555,3.84352 -0.66846,-0.34362 -1.54759,-0.83335 -2.35445,-0.83335 -2.71651,0 -4.75514,1.93882 -4.75513,4.54554 0,0.54677 0.26721,1.33344 0.44196,1.82201 -1.32443,0.72795 -2.43683,1.8905 -2.43683,3.37255 0,2.34605 1.54617,4.25009 4.33928,4.25009 0.17081,0 18.15064,0 18.32144,0 2.77101,0 4.33928,-1.90404 4.33928,-4.25009 0,-1.59237 -1.1124,-2.66669 -2.43683,-3.39464 0.17476,-0.48856 0.46407,-1.25316 0.46407,-1.79992 0,-2.60671 -2.11581,-4.56763 -4.77723,-4.56764 -0.80687,0 -1.64181,0.48974 -2.31027,0.83336 C 284.29089,-443.60011 282.68973,-445 280.5,-445 Z" - style="opacity:1;fill:url(#linearGradient10658);fill-opacity:1;stroke:none;stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <g - id="g7858"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7860" - transform="matrix(1.056604,0,0,1.056604,-24.19818,21.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10660);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7862" - transform="matrix(1.056604,0,0,1.056604,-24.19818,21.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <rect - y="-438" - x="271" - height="9" - width="20" - id="rect7864" - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <circle - transform="matrix(0.90566,0,0,0.90566,9.830195,-35.68869)" - id="path7866" - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <g - id="g7868"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7870" - transform="matrix(1.056604,0,0,1.056604,-17.19811,24.86321)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10662);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7872" - transform="matrix(1.056604,0,0,1.056604,-17.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <g - id="g7874"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7876" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10664);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7878" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <g - transform="translate(-1,0)" - id="g7880"> - <path - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 280.46875,-440.96875 c -3.57938,0 -6.46875,2.92063 -6.46875,6.5 0,2.37068 1.34943,4.33779 3.25,5.46875 l 6.46875,0 c 1.90057,-1.13096 3.25,-3.12931 3.25,-5.5 0,-3.57938 -2.92063,-6.46875 -6.5,-6.46875 z" - id="path7882" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:url(#linearGradient10666);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 280.5,-441 c -3.588,0 -6.5,2.91201 -6.5,6.5 0,2.3764 1.34485,4.36632 3.25,5.5 l 6.5,0 c 1.90515,-1.13368 3.25,-3.1236 3.25,-5.5 0,-3.588 -2.912,-6.49999 -6.5,-6.5 z" - id="path7884" - inkscape:connector-curvature="0" /> - </g> - <circle - transform="matrix(0.90566,0,0,0.90566,9.830296,-35.68884)" - id="path7886" - style="opacity:1;fill:url(#linearGradient10668);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <path - sodipodi:nodetypes="ccss" - id="path7888" - d="m 292.9564,-437.33396 c -0.002,2.68456 -3.26926,3.71395 -3.26926,3.71395 0,0 2.34874,-1.62595 2.33685,-3.70501 0,0 0.93241,-0.009 0.93241,-0.009 z" - style="fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <g - transform="matrix(1.142857,0,0,1.142857,-28.57139,67.00008)" - id="g7890"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7892" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10670);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7896" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - </g> - <g - id="g7852-5" - transform="matrix(1.5956518,0,0,1.7512843,-131.50889,917.51208)"> - <path - sodipodi:nodetypes="ccsscsssscsscc" - id="path7854-0" - d="m 280.5,-445.5 c -2.27083,0 -4.10991,1.55028 -4.71875,3.625 -0.69323,-0.36383 -1.44451,-0.625 -2.28125,-0.625 -2.76,0 -5.00001,2.23999 -5,5 0,0.57893 0.16252,1.1077 0.34375,1.625 -1.37347,0.77074 -2.34375,2.189 -2.34375,3.875 0,2.484 2.016,4.50001 4.5,4.5 0.17713,0 18.82287,0 19,0 2.48399,0 4.5,-2.016 4.5,-4.5 0,-1.686 -0.97028,-3.10426 -2.34375,-3.875 0.18124,-0.51729 0.34375,-1.04608 0.34375,-1.625 0,-2.76 -2.24,-4.99999 -5,-5 -0.83674,0 -1.58802,0.26117 -2.28125,0.625 -0.60884,-2.07472 -2.44792,-3.625 -4.71875,-3.625 z" - style="fill:#c4c5c2;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - sodipodi:nodetypes="ccsscsssscsscc" - id="path7856-3" - d="m 280.5,-445 c -2.18972,0 -3.7236,1.33577 -4.39555,3.84352 -0.66846,-0.34362 -1.54759,-0.83335 -2.35445,-0.83335 -2.71651,0 -4.75514,1.93882 -4.75513,4.54554 0,0.54677 0.26721,1.33344 0.44196,1.82201 -1.32443,0.72795 -2.43683,1.8905 -2.43683,3.37255 0,2.34605 1.54617,4.25009 4.33928,4.25009 0.17081,0 18.15064,0 18.32144,0 2.77101,0 4.33928,-1.90404 4.33928,-4.25009 0,-1.59237 -1.1124,-2.66669 -2.43683,-3.39464 0.17476,-0.48856 0.46407,-1.25316 0.46407,-1.79992 0,-2.60671 -2.11581,-4.56763 -4.77723,-4.56764 -0.80687,0 -1.64181,0.48974 -2.31027,0.83336 C 284.29089,-443.60011 282.68973,-445 280.5,-445 Z" - style="opacity:1;fill:url(#linearGradient10658-2);fill-opacity:1;stroke:none;stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <g - id="g7858-6"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7860-1" - transform="matrix(1.056604,0,0,1.056604,-24.19818,21.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10660-1);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7862-0" - transform="matrix(1.056604,0,0,1.056604,-24.19818,21.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <rect - y="-438" - x="271" - height="9" - width="20" - id="rect7864-6" - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <circle - transform="matrix(0.90566,0,0,0.90566,9.830195,-35.68869)" - id="path7866-3" - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <g - id="g7868-2"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7870-0" - transform="matrix(1.056604,0,0,1.056604,-17.19811,24.86321)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10662-9);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7872-6" - transform="matrix(1.056604,0,0,1.056604,-17.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <g - id="g7874-1"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7876-5" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10664-4);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7878-5" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - <g - transform="translate(-1,0)" - id="g7880-4"> - <path - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 280.46875,-440.96875 c -3.57938,0 -6.46875,2.92063 -6.46875,6.5 0,2.37068 1.34943,4.33779 3.25,5.46875 l 6.46875,0 c 1.90057,-1.13096 3.25,-3.12931 3.25,-5.5 0,-3.57938 -2.92063,-6.46875 -6.5,-6.46875 z" - id="path7882-7" - inkscape:connector-curvature="0" /> - <path - style="opacity:1;fill:url(#linearGradient10666-7);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 280.5,-441 c -3.588,0 -6.5,2.91201 -6.5,6.5 0,2.3764 1.34485,4.36632 3.25,5.5 l 6.5,0 c 1.90515,-1.13368 3.25,-3.1236 3.25,-5.5 0,-3.588 -2.912,-6.49999 -6.5,-6.5 z" - id="path7884-6" - inkscape:connector-curvature="0" /> - </g> - <circle - transform="matrix(0.90566,0,0,0.90566,9.830296,-35.68884)" - id="path7886-5" - style="opacity:1;fill:url(#linearGradient10668-8);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <path - sodipodi:nodetypes="ccss" - id="path7888-6" - d="m 292.9564,-437.33396 c -0.002,2.68456 -3.26926,3.71395 -3.26926,3.71395 0,0 2.34874,-1.62595 2.33685,-3.70501 0,0 0.93241,-0.009 0.93241,-0.009 z" - style="fill:#888a85;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <g - transform="matrix(1.142857,0,0,1.142857,-28.57139,67.00008)" - id="g7890-9"> - <circle - style="opacity:1;fill:#c4c5c2;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7892-3" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - <circle - style="opacity:1;fill:url(#linearGradient10670-4);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path7896-7" - transform="matrix(1.056604,0,0,1.056604,-31.19818,24.86331)" - cx="288.375" - cy="-437.59375" - r="3.3125" /> - </g> - </g> - </g> -</svg> diff --git a/kpov_judge/web/kpov_judge/static/style.css b/kpov_judge/web/kpov_judge/static/style.css deleted file mode 100644 index 363fbc4..0000000 --- a/kpov_judge/web/kpov_judge/static/style.css +++ /dev/null @@ -1,72 +0,0 @@ -a.back { - text-decoration: none; -} - -body { - margin: 0 auto; - max-width: 60em; - padding: 1em 2em; -} - -code { - background-color: #d6d6d6; - color: black; - font-size: 1.2em; - padding: 0.20em 0.25em 0; -} - -dl { - margin-top: 0.5em; -} -dt { - margin-top: 0.5em; -} -dd { - margin-left: 1em; -} - -h1, h2, h3 { - margin-bottom: 0.5em; -} -h2 { - font-size: 110%; -} -h3 { - font-size: 105%; -} - -p { - hyphens: auto; - margin-top: 0.5em; - margin-bottom: 0; - padding-top: 0; - text-align: justify; -} - -pre { - margin-left: 1em; - overflow: auto; -} - -.tooltip { /* hide and position tooltip */ - top: 1em; - left: 1em; - background-color: black; - color: white; - border-radius: 5px; - opacity: 0; - position: absolute; - -webkit-transition: opacity 0.5s; - -moz-transition: opacity 0.5s; - -ms-transition: opacity 0.5s; - -o-transition: opacity 0.5s; - transition: opacity 0.5s; -} - -.hover { - position: relative; -} - -.hover:hover .tooltip { /* display tooltip on hover */ - opacity: 1; -} diff --git a/kpov_judge/web/kpov_judge/templates/class_tasks.html b/kpov_judge/web/kpov_judge/templates/class_tasks.html deleted file mode 100644 index 4b6a523..0000000 --- a/kpov_judge/web/kpov_judge/templates/class_tasks.html +++ /dev/null @@ -1,16 +0,0 @@ -<html> -<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> - -<h1><a href="{{ url_for('index') }}" class="back">↩</a> {{clas.name}}</h1> - -<p> -{{ _('Zdravo, %(student)s.', student=student_id) }} - -<section> -<h1>{{ _('Naloge') }}</h1> - -<ul> -{% for t in tasks %} - <li><a href="{{url_for('task_lang_redirect', class_id=clas.class_id, task_id=t)}}">{{t}}</a> -{% endfor %} -</ul> diff --git a/kpov_judge/web/kpov_judge/templates/index.html b/kpov_judge/web/kpov_judge/templates/index.html deleted file mode 100644 index 4c2ba47..0000000 --- a/kpov_judge/web/kpov_judge/templates/index.html +++ /dev/null @@ -1,16 +0,0 @@ -<html> -<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> - -<h1>KPOV Judge</h1> - -<p> -{{ _('Zdravo, %(student)s.', student=student_id) }} - -<section> -<h1>{{ _('Predmeti') }}</h1> - -<ul> -{% for c in classes %} - <li><a href="{{url_for('class_tasks', class_id=c.class_id)}}">{{c.name}}</a> -{% endfor %} -</ul> diff --git a/kpov_judge/web/kpov_judge/templates/params.html b/kpov_judge/web/kpov_judge/templates/params.html deleted file mode 100644 index 0648f66..0000000 --- a/kpov_judge/web/kpov_judge/templates/params.html +++ /dev/null @@ -1,24 +0,0 @@ -<html> -<head> -<link rel="stylesheet" href="/static/style.css"> -</head> -<body> -<h1> -{{task_id}} -</h1> -<div> -<h2>Parametri</h2> -<form action="" method="post"> -{% for k, v in params.items() %} -<div><span class="hover">{{k}}: <div class="tooltip">{{params_meta[k]['descriptions']['si']}}</div></span> -{% if params_meta[k]["w"] %} -<input type=text name="{{k}}" value="{{v}}" /> -{% else %} -{{v}} -{% endif %}</div> -{% endfor %} -<p><input type=submit value="Submit"/></p> -</form> -</div> -</body> -</html> diff --git a/kpov_judge/web/kpov_judge/templates/results.html b/kpov_judge/web/kpov_judge/templates/results.html deleted file mode 100644 index 7f05208..0000000 --- a/kpov_judge/web/kpov_judge/templates/results.html +++ /dev/null @@ -1,15 +0,0 @@ -<html> -<body> -<h1> -{{task_id}} -</h1> -<p> -<h2>Rezultati</h2> -<ul> -{% for k, v in results.items() %} -<li>{{k}}: {{v}}</li> -{% endfor %} -</ul> -</p> -</body> -</html> diff --git a/kpov_judge/web/kpov_judge/templates/task.html b/kpov_judge/web/kpov_judge/templates/task.html deleted file mode 100644 index ddad5d8..0000000 --- a/kpov_judge/web/kpov_judge/templates/task.html +++ /dev/null @@ -1,12 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" - "http://www.w3.org/TR/html4/strict.dtd"> -<html> -<body> -<h1> -{{task_id}} -</h1> -<p> -<pre>{{task}}</pre> -</p> -</body> -</html> diff --git a/kpov_judge/web/kpov_judge/templates/task_greeting.html b/kpov_judge/web/kpov_judge/templates/task_greeting.html deleted file mode 100644 index b10a49d..0000000 --- a/kpov_judge/web/kpov_judge/templates/task_greeting.html +++ /dev/null @@ -1,141 +0,0 @@ -<!DOCTYPE html> -<html lang="{{lang}}"> -<meta charset="utf-8"> -<title>KPOV Judge</title> - -<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> -<style> -img.setup { - border: 1px solid black; - border-radius: 2px; - float: right; - max-width: 20em; - margin: 1em 0 0 1em; -} -section.instructions { - column-span: all; - border: 1px solid gray; - border-radius: 2px; - background-color: #eee; - color: black; - padding: 0 1em 1em; -} -div.two-columns { - columns: 2; - column-gap: 4em; -} -div.two-columns > section { - display: inline-block; -} -section.disks > section > h1 { - margin-bottom: 0; -} -section ul { - list-style-position: inside; - margin: 0; - margin-left: 1em; - padding-left: 0; -} -section > ul { - margin-top: 0.5em; -} -</style> - -<h1> -<a href="{{ url_for('class_tasks', class_id=class_id) }}" class="back">↩</a> {{task_id}} - <span style="font-size: 50%; font-weight: normal;">[ -{% for lang in ('en', 'si') %} -<a href="{{ url_for('task_greeting', class_id=class_id, task_id=task_id, lang=lang) }}">{{lang}}</a> -{% endfor %} -]</span> -</h1> - -<section class="instructions"> -<a href="setup.png"><img src="setup.png" class="setup" alt="{{ _('Shema omrežja za nalogo.') }}"></a> -<h2>{{ _('Naloga') }}</h2> - -{% include instructions %} - -<p> -<a href="howto/">{{ _('Podrobna navodila.') }}</a> -<br style="clear: both;"> -</section> - -<div class="two-columns"> -<section class="disks"> -<h2>{{ _('Računalniki') }}</h2> -{% if computers %} -<dl> - {% for c in computers %} - <dt>{{c['name']}} - <dd><ul> - {% for name, disk in c['disk_urls'].items() %} - <li>{{name}} [ {% for fmt in disk['formats'] %}<a href="{{disk_base_url+disk[fmt][0]}}">{{fmt}}</a> {% endfor %}] - {% else %} - {% endfor %} - </ul></dd> -{% endfor %} -</dl> - -<p> - -{{ _('Za GNS3 uporabite slike v formatu qcow2, za katere rabite še zaledne datoteke (angl. <em lang=\"en\">backing files</em>). Za VirtualBox uporabite slike VMDK, ki ne podpirajo zalednih datotek in so zato precej večje. Namesto prenosa lahko slike VMDK <a href=\"/faq/#convert-disk-image\">pretvorite iz formata qcow2</a>.') }} - -{% if backing_files %} -<section> -<h3>{{ _('Zaledne datoteke') }}</h3> -<p> -{{ _('Vsako od spodnjih slik prenesete samo pri prvi nalogi, v kateri se pojavi. Vse datoteke morajo biti v istem imeniku.') }} - -<dl> -{% for fmt, images in backing_files.items() %} - {% if images %} - <dt>{{fmt}} - <dd><ul> - {% for image in images %} - <li><a href="{{disk_base_url+image}}">{{image}}</a></li> - {% endfor %} - </ul></dd> - {% endif %} -{% endfor %} -</dl> -</section> -{% endif %} - -{% else %} - <p>{{ _('Slike navideznih diskov so v izdelavi in bodo kmalu na voljo.') }} -{% endif %} -</section> - -<section> -<h2>{{ _('Status') }}</h2> -<p> -{% if result is none %} -{{ _('Naloga nima še nobenega poskusa.') }} -{% elif result['result'] == 10 %} -{{ _('Naloga je uspešno opravljena dne %(time)s.', time=result['time']) }} -{% else %} -{{ _('Naloga še ni opravljena, najvišji rezultat je %(score)s.', score=result['result']) }} -{% endif %} - -<p> -<a href="../task.html">{{ _('Program za preverjanje.') }}</a> - -<h3>{{ _('Parametri') }}</h2> -<dl> -{% for p in params if p['value'] %} - <dt><em>{{ p['name'] }}</em>{% if p['description'] %} … <small>{{ p['description'] }}</small>{% endif %}</dt> - <dd><code>{{ p['value'] }}</code></dd> -{% endfor %} -</dl> -</section> -</div> - -{# -<p> -{% if openstack %} -Openstack projekt za to vajo je že ustvarjen ali v izdelavi (funkcionalnost še ne deluje). -{% else %} -<a href='?narediStack=true'>Ustvari</a> Openstack projekt za to vajo (funkcionalnost še ne deluje). -{% endif %} -#} diff --git a/kpov_judge/web/kpov_judge/translations/en/LC_MESSAGES/messages.po b/kpov_judge/web/kpov_judge/translations/en/LC_MESSAGES/messages.po deleted file mode 100644 index c8cac2d..0000000 --- a/kpov_judge/web/kpov_judge/translations/en/LC_MESSAGES/messages.po +++ /dev/null @@ -1,144 +0,0 @@ -# English translations for PROJECT. -# Copyright (C) 2018 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2018. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-20 19:31+0100\n" -"PO-Revision-Date: 2018-10-13 20:57+0200\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: en <LL@li.org>\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" - -#: templates/class_tasks.html:7 templates/index.html:7 -#, python-format -msgid "Zdravo, %(student)s." -msgstr "Hi, %(student)s." - -#: templates/class_tasks.html:10 -msgid "Naloge" -msgstr "Tasks" - -#: templates/index.html:10 -msgid "Predmeti" -msgstr "Classes" - -#: templates/task_greeting.html:54 -msgid "Shema omrežja za nalogo." -msgstr "Network graph for this task." - -#: templates/task_greeting.html:55 -msgid "Naloga" -msgstr "Task" - -#: templates/task_greeting.html:60 -msgid "Podrobna navodila." -msgstr "Detailed instructions." - -#: templates/task_greeting.html:66 -msgid "Računalniki" -msgstr "Computers" - -#: templates/task_greeting.html:82 -msgid "" -"Za GNS3 uporabite slike v formatu qcow2, za katere rabite še zaledne " -"datoteke (angl. <em lang=\"en\">backing files</em>). Za VirtualBox " -"uporabite slike VMDK, ki ne podpirajo zalednih datotek in so zato precej " -"večje. Namesto prenosa lahko slike VMDK <a href=\"/faq/#convert-disk-" -"image\">pretvorite iz formata qcow2</a>." -msgstr "" -"For GNS3 use qcow2 images, which require the backing files below. " -"For VirtualBox use VMDK images, which do not support backing files and " -"are thus much larger. Alternatively you can " -"<a href=\"/faq/#convert-disk-image\">convert qcow2 images</a> yourself." - -#: templates/task_greeting.html:86 -msgid "Zaledne datoteke" -msgstr "Backing files" - -#: templates/task_greeting.html:88 -msgid "" -"Vsako od spodnjih slik prenesete samo pri prvi nalogi, v kateri se " -"pojavi. Vse datoteke morajo biti v istem imeniku." -msgstr "" -"Download each of the images below only if you do not have it yet. " -"All files must be placed in the same directory." - -#: templates/task_greeting.html:106 -msgid "Slike navideznih diskov so v izdelavi. Stran osvežite čez nekaj minut." -msgstr "Disk images are being generated. Please refresh the page after a few minutes." - -#: templates/task_greeting.html:111 -msgid "Status" -msgstr "Status" - -#: templates/task_greeting.html:114 -msgid "Naloga nima še nobenega poskusa." -msgstr "This task has not been attempted yet." - -#: templates/task_greeting.html:116 -#, python-format -msgid "Naloga je uspešno opravljena dne %(time)s." -msgstr "This task was solved on %(time)s." - -#: templates/task_greeting.html:118 -#, python-format -msgid "Naloga še ni opravljena, najvišji rezultat je %(score)s." -msgstr "This task has not been solved yet, the highest score is %(score)s." - -#: templates/task_greeting.html:122 -msgid "Program za preverjanje." -msgstr "Testing program." - -#: templates/task_greeting.html:124 -msgid "Parametri" -msgstr "Parameters" - -#~ msgid "Trenutno so na voljo naloge:" -#~ msgstr "Available tasks:" - -#~ msgid "Trenutno so na voljo predmeti:" -#~ msgstr "Available classes" - -#~ msgid "Rezultati" -#~ msgstr "Results" - -#~ msgid "Ogledate si lahko:" -#~ msgstr "You can view:" - -#~ msgid "opisi parametrov" -#~ msgstr "parameter descriptions" - -#~ msgid "preverjalni program" -#~ msgstr "checking program" - -#~ msgid "Slike diskov za to nalogo:" -#~ msgstr "Disk images for this task:" - -#~ msgid "Osnovne slike" -#~ msgstr "Backing images" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "Rezultat" -#~ msgstr "Result" - -#~ msgid "" -#~ "Za GNS3 uporabite slike v formatu " -#~ "qcow2, za katere rabite še zaledne " -#~ "datoteke (angl. <em lang=\"en\">backing " -#~ "files</em>). VirtualBox ne podpira zalednih" -#~ " datotek, zato so slike VDI precej" -#~ " večje. Namesto prenosa lahko slike " -#~ "VDI <a href=\"/faq/#convert-qcow2-vdi\">dobite " -#~ "iz formata qcow2</a>." -#~ msgstr "" - diff --git a/kpov_judge/web/kpov_judge/translations/sl/LC_MESSAGES/messages.po b/kpov_judge/web/kpov_judge/translations/sl/LC_MESSAGES/messages.po deleted file mode 100644 index 2382073..0000000 --- a/kpov_judge/web/kpov_judge/translations/sl/LC_MESSAGES/messages.po +++ /dev/null @@ -1,145 +0,0 @@ -# Slovenian translations for PROJECT. -# Copyright (C) 2018 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. -# FIRST AUTHOR <EMAIL@ADDRESS>, 2018. -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-20 19:31+0100\n" -"PO-Revision-Date: 2018-10-13 02:29+0200\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: sl <LL@li.org>\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 " -"|| n%100==4 ? 2 : 3)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 1.3\n" - -#: templates/class_tasks.html:7 templates/index.html:7 -#, python-format -msgid "Zdravo, %(student)s." -msgstr "" - -#: templates/class_tasks.html:10 -msgid "Naloge" -msgstr "" - -#: templates/index.html:10 -msgid "Predmeti" -msgstr "" - -#: templates/task_greeting.html:54 -msgid "Shema omrežja za nalogo." -msgstr "" - -#: templates/task_greeting.html:55 -msgid "Naloga" -msgstr "" - -#: templates/task_greeting.html:60 -msgid "Podrobna navodila." -msgstr "" - -#: templates/task_greeting.html:66 -msgid "Računalniki" -msgstr "" - -#: templates/task_greeting.html:82 -msgid "" -"Za GNS3 uporabite slike v formatu qcow2, za katere rabite še zaledne " -"datoteke (angl. <em lang=\"en\">backing files</em>). Za VirtualBox " -"uporabite slike VMDK, ki ne podpirajo zalednih datotek in so zato precej " -"večje. Namesto prenosa lahko slike VMDK <a href=\"/faq/#convert-disk-" -"image\">pretvorite iz formata qcow2</a>." -msgstr "" - -#: templates/task_greeting.html:86 -msgid "Zaledne datoteke" -msgstr "" - -#: templates/task_greeting.html:88 -msgid "" -"Vsako od spodnjih slik prenesete samo pri prvi nalogi, v kateri se " -"pojavi. Vse datoteke morajo biti v istem imeniku." -msgstr "" - -#: templates/task_greeting.html:106 -msgid "Slike navideznih diskov so v izdelavi in bodo kmalu na voljo." -msgstr "" - -#: templates/task_greeting.html:111 -msgid "Status" -msgstr "" - -#: templates/task_greeting.html:114 -msgid "Naloga nima še nobenega poskusa." -msgstr "" - -#: templates/task_greeting.html:116 -#, python-format -msgid "Naloga je uspešno opravljena dne %(time)s." -msgstr "" - -#: templates/task_greeting.html:118 -#, python-format -msgid "Naloga še ni opravljena, najvišji rezultat je %(score)s." -msgstr "" - -#: templates/task_greeting.html:122 -msgid "Program za preverjanje." -msgstr "" - -#: templates/task_greeting.html:124 -msgid "Parametri" -msgstr "" - -#~ msgid "Trenutno so na voljo naloge:" -#~ msgstr "" - -#~ msgid "Trenutno so na voljo predmeti:" -#~ msgstr "" - -#~ msgid "Rezultati" -#~ msgstr "" - -#~ msgid "Ogledate si lahko:" -#~ msgstr "" - -#~ msgid "rezultate" -#~ msgstr "" - -#~ msgid "parametre" -#~ msgstr "" - -#~ msgid "opisi parametrov" -#~ msgstr "" - -#~ msgid "preverjalni program" -#~ msgstr "" - -#~ msgid "Slike diskov za to nalogo:" -#~ msgstr "" - -#~ msgid "Osnovne slike" -#~ msgstr "" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "Rezultat" -#~ msgstr "" - -#~ msgid "" -#~ "Za GNS3 uporabite slike v formatu " -#~ "qcow2, za katere rabite še zaledne " -#~ "datoteke (angl. <em lang=\"en\">backing " -#~ "files</em>). VirtualBox ne podpira zalednih" -#~ " datotek, zato so slike VDI precej" -#~ " večje. Namesto prenosa lahko slike " -#~ "VDI <a href=\"/faq/#convert-qcow2-vdi\">dobite " -#~ "iz formata qcow2</a>." -#~ msgstr "" - |