roby 0.7.3 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (236) hide show
  1. data/History.txt +7 -5
  2. data/Manifest.txt +91 -16
  3. data/README.txt +24 -24
  4. data/Rakefile +92 -64
  5. data/app/config/app.yml +42 -43
  6. data/app/config/init.rb +26 -0
  7. data/benchmark/alloc_misc.rb +123 -0
  8. data/benchmark/discovery_latency.rb +67 -0
  9. data/benchmark/garbage_collection.rb +48 -0
  10. data/benchmark/genom.rb +31 -0
  11. data/benchmark/transactions.rb +62 -0
  12. data/bin/roby +1 -1
  13. data/bin/roby-log +16 -6
  14. data/doc/guide/.gitignore +2 -0
  15. data/doc/guide/config.yaml +34 -0
  16. data/doc/guide/ext/init.rb +14 -0
  17. data/doc/guide/ext/previous_next.rb +40 -0
  18. data/doc/guide/ext/rdoc_links.rb +33 -0
  19. data/doc/guide/index.rdoc +16 -0
  20. data/doc/guide/overview.rdoc +62 -0
  21. data/doc/guide/plan_modifications.rdoc +67 -0
  22. data/doc/guide/src/abstraction/achieve_with.page +8 -0
  23. data/doc/guide/src/abstraction/forwarding.page +8 -0
  24. data/doc/guide/src/abstraction/hierarchy.page +19 -0
  25. data/doc/guide/src/abstraction/index.page +28 -0
  26. data/doc/guide/src/abstraction/task_models.page +13 -0
  27. data/doc/guide/src/basics.template +6 -0
  28. data/doc/guide/src/basics/app.page +139 -0
  29. data/doc/guide/src/basics/code_examples.page +33 -0
  30. data/doc/guide/src/basics/dry.page +69 -0
  31. data/doc/guide/src/basics/errors.page +443 -0
  32. data/doc/guide/src/basics/events.page +179 -0
  33. data/doc/guide/src/basics/hierarchy.page +275 -0
  34. data/doc/guide/src/basics/index.page +11 -0
  35. data/doc/guide/src/basics/log_replay/goForward_1.png +0 -0
  36. data/doc/guide/src/basics/log_replay/goForward_2.png +0 -0
  37. data/doc/guide/src/basics/log_replay/goForward_3.png +0 -0
  38. data/doc/guide/src/basics/log_replay/goForward_4.png +0 -0
  39. data/doc/guide/src/basics/log_replay/goForward_5.png +0 -0
  40. data/doc/guide/src/basics/log_replay/hierarchy_error_1.png +0 -0
  41. data/doc/guide/src/basics/log_replay/hierarchy_error_2.png +0 -0
  42. data/doc/guide/src/basics/log_replay/hierarchy_error_3.png +0 -0
  43. data/doc/guide/src/basics/log_replay/plan_repair_1.png +0 -0
  44. data/doc/guide/src/basics/log_replay/plan_repair_2.png +0 -0
  45. data/doc/guide/src/basics/log_replay/plan_repair_3.png +0 -0
  46. data/doc/guide/src/basics/log_replay/plan_repair_4.png +0 -0
  47. data/doc/guide/src/basics/log_replay/roby_log_main_window.png +0 -0
  48. data/doc/guide/src/basics/log_replay/roby_log_relation_window.png +0 -0
  49. data/doc/guide/src/basics/log_replay/roby_replay_event_representation.png +0 -0
  50. data/doc/guide/src/basics/plan_objects.page +71 -0
  51. data/doc/guide/src/basics/relations_display.page +203 -0
  52. data/doc/guide/src/basics/roby_cycle_overview.png +0 -0
  53. data/doc/guide/src/basics/shell.page +102 -0
  54. data/doc/guide/src/basics/summary.page +32 -0
  55. data/doc/guide/src/basics/tasks.page +357 -0
  56. data/doc/guide/src/basics_shell_header.txt +16 -0
  57. data/doc/guide/src/cycle/cycle-overview.png +0 -0
  58. data/doc/guide/src/cycle/cycle-overview.svg +208 -0
  59. data/doc/guide/src/cycle/error_handling.page +168 -0
  60. data/doc/guide/src/cycle/error_instantaneous_repair.png +0 -0
  61. data/doc/guide/src/cycle/error_instantaneous_repair.svg +1224 -0
  62. data/doc/guide/src/cycle/garbage_collection.page +10 -0
  63. data/doc/guide/src/cycle/index.page +23 -0
  64. data/doc/guide/src/cycle/propagation.page +154 -0
  65. data/doc/guide/src/cycle/propagation_diamond.png +0 -0
  66. data/doc/guide/src/cycle/propagation_diamond.svg +1279 -0
  67. data/doc/guide/src/default.css +319 -0
  68. data/doc/guide/src/default.template +74 -0
  69. data/doc/guide/src/htmldoc.metainfo +20 -0
  70. data/doc/guide/src/htmldoc.virtual +18 -0
  71. data/doc/guide/src/images/bodybg.png +0 -0
  72. data/doc/guide/src/images/contbg.png +0 -0
  73. data/doc/guide/src/images/footerbg.png +0 -0
  74. data/doc/guide/src/images/gradient1.png +0 -0
  75. data/doc/guide/src/images/gradient2.png +0 -0
  76. data/doc/guide/src/index.page +7 -0
  77. data/doc/guide/src/introduction/index.page +29 -0
  78. data/doc/guide/src/introduction/install.page +133 -0
  79. data/doc/{papers.rdoc → guide/src/introduction/publications.page} +5 -2
  80. data/doc/{videos.rdoc → guide/src/introduction/videos.page} +4 -2
  81. data/doc/guide/src/plugins/fault_tolerance.page +44 -0
  82. data/doc/guide/src/plugins/index.page +11 -0
  83. data/doc/guide/src/plugins/subsystems.page +45 -0
  84. data/doc/guide/src/relations/dependency.page +89 -0
  85. data/doc/guide/src/relations/index.page +12 -0
  86. data/doc/misc/update_github +24 -0
  87. data/doc/tutorials/02-GoForward.rdoc +3 -3
  88. data/ext/graph/graph.cc +46 -0
  89. data/lib/roby.rb +57 -22
  90. data/lib/roby/app.rb +132 -112
  91. data/lib/roby/app/plugins/rake.rb +21 -0
  92. data/lib/roby/app/rake.rb +0 -7
  93. data/lib/roby/app/run.rb +1 -1
  94. data/lib/roby/app/scripts/distributed.rb +1 -2
  95. data/lib/roby/app/scripts/generate/bookmarks.rb +1 -1
  96. data/lib/roby/app/scripts/results.rb +2 -1
  97. data/lib/roby/app/scripts/run.rb +6 -2
  98. data/lib/roby/app/scripts/shell.rb +11 -11
  99. data/lib/roby/config.rb +1 -1
  100. data/lib/roby/decision_control.rb +62 -3
  101. data/lib/roby/distributed.rb +4 -0
  102. data/lib/roby/distributed/base.rb +8 -0
  103. data/lib/roby/distributed/communication.rb +12 -8
  104. data/lib/roby/distributed/connection_space.rb +61 -44
  105. data/lib/roby/distributed/distributed_object.rb +1 -1
  106. data/lib/roby/distributed/notifications.rb +22 -30
  107. data/lib/roby/distributed/peer.rb +13 -8
  108. data/lib/roby/distributed/proxy.rb +5 -5
  109. data/lib/roby/distributed/subscription.rb +4 -4
  110. data/lib/roby/distributed/transaction.rb +3 -3
  111. data/lib/roby/event.rb +176 -110
  112. data/lib/roby/exceptions.rb +12 -4
  113. data/lib/roby/execution_engine.rb +1604 -0
  114. data/lib/roby/external_process_task.rb +225 -0
  115. data/lib/roby/graph.rb +0 -6
  116. data/lib/roby/interface.rb +221 -137
  117. data/lib/roby/log/console.rb +5 -3
  118. data/lib/roby/log/data_stream.rb +94 -16
  119. data/lib/roby/log/dot.rb +8 -8
  120. data/lib/roby/log/event_stream.rb +13 -3
  121. data/lib/roby/log/file.rb +43 -18
  122. data/lib/roby/log/gui/basic_display_ui.rb +89 -0
  123. data/lib/roby/log/gui/chronicle_view_ui.rb +90 -0
  124. data/lib/roby/log/gui/data_displays.rb +4 -5
  125. data/lib/roby/log/gui/data_displays_ui.rb +146 -0
  126. data/lib/roby/log/gui/relations.rb +18 -18
  127. data/lib/roby/log/gui/relations_ui.rb +120 -0
  128. data/lib/roby/log/gui/relations_view_ui.rb +144 -0
  129. data/lib/roby/log/gui/replay.rb +41 -13
  130. data/lib/roby/log/gui/replay_controls.rb +3 -0
  131. data/lib/roby/log/gui/replay_controls.ui +133 -110
  132. data/lib/roby/log/gui/replay_controls_ui.rb +249 -0
  133. data/lib/roby/log/hooks.rb +19 -18
  134. data/lib/roby/log/logger.rb +7 -6
  135. data/lib/roby/log/notifications.rb +4 -4
  136. data/lib/roby/log/plan_rebuilder.rb +20 -22
  137. data/lib/roby/log/relations.rb +44 -16
  138. data/lib/roby/log/server.rb +1 -4
  139. data/lib/roby/log/timings.rb +88 -19
  140. data/lib/roby/plan-object.rb +135 -11
  141. data/lib/roby/plan.rb +408 -224
  142. data/lib/roby/planning/loops.rb +32 -25
  143. data/lib/roby/planning/model.rb +157 -51
  144. data/lib/roby/planning/task.rb +47 -20
  145. data/lib/roby/query.rb +128 -92
  146. data/lib/roby/relations.rb +254 -136
  147. data/lib/roby/relations/conflicts.rb +6 -9
  148. data/lib/roby/relations/dependency.rb +358 -0
  149. data/lib/roby/relations/ensured.rb +0 -1
  150. data/lib/roby/relations/error_handling.rb +0 -1
  151. data/lib/roby/relations/events.rb +0 -2
  152. data/lib/roby/relations/executed_by.rb +26 -11
  153. data/lib/roby/relations/planned_by.rb +14 -14
  154. data/lib/roby/robot.rb +46 -0
  155. data/lib/roby/schedulers/basic.rb +34 -0
  156. data/lib/roby/standalone.rb +4 -0
  157. data/lib/roby/standard_errors.rb +21 -15
  158. data/lib/roby/state/events.rb +5 -4
  159. data/lib/roby/support.rb +107 -6
  160. data/lib/roby/task-operations.rb +23 -19
  161. data/lib/roby/task.rb +522 -148
  162. data/lib/roby/task_index.rb +80 -0
  163. data/lib/roby/test/common.rb +283 -44
  164. data/lib/roby/test/distributed.rb +53 -37
  165. data/lib/roby/test/testcase.rb +9 -204
  166. data/lib/roby/test/tools.rb +3 -3
  167. data/lib/roby/transactions.rb +154 -111
  168. data/lib/roby/transactions/proxy.rb +40 -7
  169. data/manifest.xml +20 -0
  170. data/plugins/fault_injection/README.txt +0 -3
  171. data/plugins/fault_injection/Rakefile +2 -8
  172. data/plugins/fault_injection/app.rb +1 -1
  173. data/plugins/fault_injection/fault_injection.rb +3 -3
  174. data/plugins/fault_injection/test/test_fault_injection.rb +19 -25
  175. data/plugins/subsystems/README.txt +0 -3
  176. data/plugins/subsystems/Rakefile +2 -7
  177. data/plugins/subsystems/app.rb +27 -16
  178. data/plugins/subsystems/test/app/config/init.rb +3 -0
  179. data/plugins/subsystems/test/app/planners/main.rb +1 -1
  180. data/plugins/subsystems/test/app/tasks/services.rb +1 -1
  181. data/plugins/subsystems/test/test_subsystems.rb +23 -16
  182. data/test/distributed/test_communication.rb +32 -15
  183. data/test/distributed/test_connection.rb +28 -26
  184. data/test/distributed/test_execution.rb +59 -54
  185. data/test/distributed/test_mixed_plan.rb +34 -34
  186. data/test/distributed/test_plan_notifications.rb +26 -26
  187. data/test/distributed/test_protocol.rb +57 -48
  188. data/test/distributed/test_query.rb +11 -7
  189. data/test/distributed/test_remote_plan.rb +71 -71
  190. data/test/distributed/test_transaction.rb +50 -47
  191. data/test/mockups/external_process +28 -0
  192. data/test/planning/test_loops.rb +163 -119
  193. data/test/planning/test_model.rb +3 -3
  194. data/test/planning/test_task.rb +27 -7
  195. data/test/relations/test_conflicts.rb +3 -3
  196. data/test/relations/test_dependency.rb +324 -0
  197. data/test/relations/test_ensured.rb +2 -2
  198. data/test/relations/test_executed_by.rb +94 -19
  199. data/test/relations/test_planned_by.rb +11 -9
  200. data/test/suite_core.rb +6 -3
  201. data/test/suite_distributed.rb +1 -0
  202. data/test/suite_planning.rb +1 -0
  203. data/test/suite_relations.rb +2 -2
  204. data/test/tasks/test_external_process.rb +126 -0
  205. data/test/{test_thread_task.rb → tasks/test_thread_task.rb} +17 -20
  206. data/test/test_bgl.rb +21 -1
  207. data/test/test_event.rb +229 -155
  208. data/test/test_exceptions.rb +79 -80
  209. data/test/test_execution_engine.rb +987 -0
  210. data/test/test_gui.rb +1 -1
  211. data/test/test_interface.rb +11 -5
  212. data/test/test_log.rb +18 -7
  213. data/test/test_log_server.rb +1 -0
  214. data/test/test_plan.rb +229 -395
  215. data/test/test_query.rb +193 -35
  216. data/test/test_relations.rb +88 -8
  217. data/test/test_state.rb +55 -37
  218. data/test/test_support.rb +1 -1
  219. data/test/test_task.rb +371 -218
  220. data/test/test_testcase.rb +32 -16
  221. data/test/test_transactions.rb +211 -170
  222. data/test/test_transactions_proxy.rb +37 -19
  223. metadata +169 -71
  224. data/.gitignore +0 -29
  225. data/doc/styles/allison.css +0 -314
  226. data/doc/styles/allison.js +0 -316
  227. data/doc/styles/allison.rb +0 -276
  228. data/doc/styles/jamis.rb +0 -593
  229. data/lib/roby/control.rb +0 -746
  230. data/lib/roby/executives/simple.rb +0 -30
  231. data/lib/roby/propagation.rb +0 -562
  232. data/lib/roby/relations/hierarchy.rb +0 -239
  233. data/lib/roby/transactions/updates.rb +0 -139
  234. data/test/relations/test_hierarchy.rb +0 -158
  235. data/test/test_control.rb +0 -399
  236. data/test/test_propagation.rb +0 -210
@@ -0,0 +1,168 @@
1
+ ---
2
+ title: Error Handling
3
+ sort_info: 200
4
+ --- name:content pipeline:tags,markdown,blocks
5
+
6
+ Where do errors come from ?
7
+ ---------------------------
8
+
9
+ In a robotic system, errors can come from multiple sources:
10
+
11
+ * the most obvious one is the _environment_. In this case, an "error" is the
12
+ inability for the system to cope with its current environment. This usually
13
+ translates into the failure to reach a goal, or an algorithm malfunction.
14
+ A great example of this is the hesitation that some local obstacle avoidance
15
+ have: the algorithm goes into an endless (or at least very long) loop because
16
+ it hesitates between two solutions.
17
+ * failing hardware. Hardware can fail and in this case the supervision system
18
+ has to cope with a "crippled" robot.
19
+ * the other source is the programmer itself: the robotic system mainly runs on
20
+ software, which - as all software - has bugs. Even the supervision system's
21
+ code can have bugs. As we will see later on, even this latter case is at
22
+ least partially taken into account.
23
+
24
+ In Roby terms, these three sources of errors take essentially two forms:
25
+
26
+ * the plan is inconsistent. Task and event relations may define _constraints_,
27
+ and the plan is said to be inconsistent if one of those constraints are not
28
+ met. Example: the hierarchy relation lists some events that should be emitted
29
+ and some that should not. A failure to meet one of these constraints is
30
+ interpreted by the Roby kernel as an error that must be dealt with. This can
31
+ be used to represent problems with the environment (failure to complete
32
+ a task).
33
+ * the Ruby code raises an exception. Most of the time, it will be caused by
34
+ a bug in the code, but also may be a way to represent a problem with
35
+ a particular process (the "bug in external software supervised by Roby"
36
+ case).
37
+
38
+ When using Roby to control a complex robotic systems, one will usually have two
39
+ different kind of tasks in the plan. On one side, some tasks are mapped
40
+ one-to-one with actual external processes as for instance a task that is running
41
+ in a module of the robot's functional layer. For these, the task's implementation
42
+ has two roles:
43
+
44
+ * use the means of communication it has with the external process. In the
45
+ functional layer case, the modules usually have ways to report their state
46
+ and, if needs be, the occurrence of errors.
47
+ * _diagnostics_. In this case, the task does not assume that what the external
48
+ process is reporting is true, but instead tries to assess the external
49
+ process states by indirect means. A simple example is to verify that the
50
+ output values of the module is within specified boundaries.
51
+
52
+ The most useful strategy is to actually do _both_. Simple diagnostics can be
53
+ implemented using the task's __poll__ block. More complex ones can use two
54
+ different tasks (one task for the process, one task for the monitoring), and
55
+ according task relations.
56
+
57
+ On the other side, the hierarchy relation allows to create more abstract views
58
+ of the plan: an abstract action (e.g. MoveTo) is decomposed into actual external
59
+ processes (e.g. Localization, Control, PathPlanning). Nonetheless, it is
60
+ still possible at the abstract level to monitor the good progress of the task.
61
+ It is actually possible, at this level, to spot problems that the lower levels
62
+ where missing, as for instance a recurring hesitation of the robot in a movement
63
+ task, that forbids him to reach its goal.
64
+
65
+ In any case, Roby offers a unique way to represent __fault modes__. Instead of
66
+ having a binary success/failure outcome, it is possible to define an arbitrary
67
+ set of terminal events. Then, by forwarding these events to either _success_ or
68
+ _failed_, the events become either a nominal outcome or a fault mode. As we will
69
+ see later on, it has an interesting impact on the fault handling possibilities.
70
+
71
+ Taking the example of the hesitation problem, one would write:
72
+
73
+ {coderay:: ruby}
74
+ class MoveTo < Roby::Task
75
+ event :hesitates
76
+ forward :hesitates => :failed
77
+ end
78
+ {coderay}
79
+
80
+ and then {coderay:: {lang: ruby, wrap: span}}emit :hesitates{coderay} when
81
+ applicable.
82
+
83
+ Integration in the execution cycle
84
+ ----------------------------------
85
+ As was just explained, errors take two forms in Roby:
86
+
87
+ * failure to meet the constraints set by the task/event relations
88
+ * exceptions that come from the Ruby code
89
+
90
+ For language exceptions, we will actually have to distinguish between exceptions
91
+ that come from task/event code (essentially event commands and handlers, polling
92
+ blocks) and Roby code itself.
93
+
94
+ The root of error handling is to be able to automatically compute what the
95
+ consequences of an error are. In Roby, the plan has the role of showing these
96
+ links (a task's failure impacts the tasks that depend on it, i.e. its parents in
97
+ the hierarchy relation). Therefore, Roby is only able to handle these errors
98
+ that can be associated with a task (this error impacts that task), namely: the
99
+ exceptions that come from task/event code and the constraint violations. The
100
+ other exceptions (that come from Roby code) are not handled automatically by
101
+ Roby and they lead by default to a shutdown of the whole system.
102
+
103
+ In the execution cycle, a constraint analysis is ran on the whole plan _after
104
+ the event propagation phase_. This is because that pass has to see the "big
105
+ picture", i.e. the result of all the event propagation in the current cycle.
106
+
107
+ We will now see the three means of error handling that Roby offers, and then
108
+ conclude with an overview of the whole error handling phase.
109
+
110
+ Repairing the plan during the event propagation
111
+ -----------------------------------------------
112
+ As has just been noticed, Roby has to analyze the plan __after__ all events have
113
+ been propagated. So, if a constraint gets both violated *and* repaired during
114
+ the event propagation phase, that won't really count as an error.
115
+
116
+ That mean of "error repair" is useful for simple cases. The most obvious case is
117
+ when a task should simply be restarted when it fails, for instance because the
118
+ failure is a spurious error.
119
+
120
+ As an example, I had a robot where the control module, in the functional layer,
121
+ was checking that its input data flow was updated often enough (timeout).
122
+ This is a fine design decision given the security it adds. And was working fine
123
+ on the realtime operating system the functional layer was originally running on.
124
+ But when I came at this lab, the functional layer was running on a standard
125
+ Linux kernel, and therefore there were outliers in the command update rate (i.e.
126
+ latencies much higher than expected). They were rare, but they happened.
127
+
128
+ Changing the timeout was not the right solution, as its effect would have to
129
+ actually make it much less useful (we would have had to move it to more than one
130
+ second). So, I had to handle this in the supervision layer.
131
+
132
+ How it was done was the following: whenever that particular failure message was
133
+ coming in (<tt>poster\_not\_updated</tt>), the control task was simply restarted
134
+ _unless it had already been restarted in the last second_.
135
+
136
+ It was implemented like this:
137
+
138
+ {coderay:: ruby}
139
+ on :poster_not_updated do |event|
140
+ if (TrackSpeedStart.last_error - Time.now) > 1
141
+ plan.respawn(self)
142
+ TrackSpeedStart.last_error = Time.now
143
+ end
144
+ end
145
+ {coderay}
146
+
147
+ Where <tt>plan.respawn</tt> do the job of creating a new task of the same type
148
+ and with the same arguments, replacing the current version with the new instance
149
+ and start the new instance.
150
+
151
+ The execution trace looks like the following, with the original plan in the left
152
+ and the plan after the error on the right.
153
+
154
+ ![](error_instantaneous_repair.png)
155
+
156
+ Roby's exception system: synchronous reparations
157
+ ------------------------------------------------
158
+
159
+ Plan repairs: asynchronous reparations
160
+ --------------------------------------
161
+
162
+ What to do with non-repaired tasks ?
163
+ ------------------------------------
164
+
165
+ Summary
166
+ -------
167
+
168
+
@@ -0,0 +1,1224 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://web.resource.org/cc/"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ width="22.225cm"
11
+ height="9.525cm"
12
+ viewBox="0 0 630 270"
13
+ version="1.2"
14
+ baseProfile="tiny"
15
+ id="svg2243"
16
+ sodipodi:version="0.32"
17
+ inkscape:version="0.45.1"
18
+ sodipodi:docname="error_instantaneous_repair.svg"
19
+ sodipodi:docbase="/home/doudou/laas/documents/production/thesis/figures/supervision"
20
+ inkscape:output_extension="org.inkscape.output.svg.inkscape">
21
+ <metadata
22
+ id="metadata2534">
23
+ <rdf:RDF>
24
+ <cc:Work
25
+ rdf:about="">
26
+ <dc:format>image/svg+xml</dc:format>
27
+ <dc:type
28
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
29
+ </cc:Work>
30
+ </rdf:RDF>
31
+ </metadata>
32
+ <sodipodi:namedview
33
+ inkscape:window-height="612"
34
+ inkscape:window-width="785"
35
+ inkscape:pageshadow="2"
36
+ inkscape:pageopacity="0.0"
37
+ guidetolerance="10.0"
38
+ gridtolerance="10.0"
39
+ objecttolerance="10.0"
40
+ borderopacity="1.0"
41
+ bordercolor="#666666"
42
+ pagecolor="#ffffff"
43
+ id="base"
44
+ inkscape:zoom="1.8209524"
45
+ inkscape:cx="239.98431"
46
+ inkscape:cy="80.883891"
47
+ inkscape:window-x="61"
48
+ inkscape:window-y="0"
49
+ inkscape:current-layer="svg2243" />
50
+ <title
51
+ id="title2245">Qt Svg Document</title>
52
+ <desc
53
+ id="desc2247">Generated with Qt</desc>
54
+ <defs
55
+ id="defs2249" />
56
+ <g
57
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
58
+ id="g2253"
59
+ font-style="normal"
60
+ font-weight="400"
61
+ font-size="9pt"
62
+ vector-effect="non-scaling-stroke" />
63
+ <g
64
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
65
+ id="g2255"
66
+ font-style="normal"
67
+ font-weight="400"
68
+ font-size="9pt"
69
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
70
+ vector-effect="non-scaling-stroke" />
71
+ <g
72
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
73
+ id="g2261"
74
+ font-style="normal"
75
+ font-weight="400"
76
+ font-size="9pt"
77
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
78
+ vector-effect="non-scaling-stroke" />
79
+ <g
80
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#a2b5cd;fill-opacity:1;fill-rule:evenodd;stroke:#a2b5cd;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
81
+ id="g2263"
82
+ font-style="normal"
83
+ font-weight="400"
84
+ font-size="9pt"
85
+ transform="matrix(0.638109,0.478582,-0.478582,0.638109,373.874,185.451)"
86
+ vector-effect="non-scaling-stroke">
87
+ <path
88
+ style="fill-rule:evenodd;stroke-width:1"
89
+ id="path2265"
90
+ d="M 0,0 L -10,5 L -10,-5 L 0,0" />
91
+ </g>
92
+ <g
93
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
94
+ id="g2267"
95
+ font-style="normal"
96
+ font-weight="400"
97
+ font-size="9pt"
98
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
99
+ vector-effect="non-scaling-stroke" />
100
+ <g
101
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#a2b5cd;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
102
+ id="g2269"
103
+ font-style="normal"
104
+ font-weight="400"
105
+ font-size="9pt"
106
+ transform="matrix(0.638109,0.478582,-0.478582,0.638109,373.874,185.451)"
107
+ vector-effect="non-scaling-stroke">
108
+ <polyline
109
+ style="fill:none;stroke-width:1"
110
+ id="polyline2271"
111
+ points="-95.8333,0 0,0 " />
112
+ </g>
113
+ <g
114
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
115
+ id="g2273"
116
+ font-style="normal"
117
+ font-weight="400"
118
+ font-size="9pt"
119
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
120
+ vector-effect="non-scaling-stroke" />
121
+ <g
122
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
123
+ id="g2279"
124
+ font-style="normal"
125
+ font-weight="400"
126
+ font-size="9pt"
127
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
128
+ vector-effect="non-scaling-stroke" />
129
+ <g
130
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
131
+ id="g2285"
132
+ font-style="normal"
133
+ font-weight="400"
134
+ font-size="9pt"
135
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
136
+ vector-effect="non-scaling-stroke" />
137
+ <g
138
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#e2a8a8;fill-opacity:1;fill-rule:evenodd;stroke:#e2a8a8;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
139
+ id="g2287"
140
+ font-style="normal"
141
+ font-weight="400"
142
+ font-size="9pt"
143
+ transform="matrix(0.797637,0,0,0.797637,466.666,139.586)"
144
+ vector-effect="non-scaling-stroke">
145
+ <path
146
+ style="fill-rule:evenodd"
147
+ id="path2289"
148
+ d="M -106.5,-14.5 L 106.5,-14.5 L 106.5,14.5 L -106.5,14.5 L -106.5,-14.5" />
149
+ </g>
150
+ <g
151
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
152
+ id="g2291"
153
+ font-style="normal"
154
+ font-weight="400"
155
+ font-size="9pt"
156
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
157
+ vector-effect="non-scaling-stroke" />
158
+ <g
159
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
160
+ id="g2293"
161
+ font-style="normal"
162
+ font-weight="400"
163
+ font-size="9pt"
164
+ transform="matrix(0.797637,0,0,0.797637,413.713,155.14)"
165
+ vector-effect="non-scaling-stroke" />
166
+ <g
167
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
168
+ id="g2295"
169
+ font-style="normal"
170
+ font-weight="400"
171
+ font-size="9pt"
172
+ transform="matrix(0.797637,0,0,0.797637,413.713,155.14)"
173
+ vector-effect="non-scaling-stroke" />
174
+ <g
175
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
176
+ id="g2297"
177
+ font-style="normal"
178
+ font-weight="400"
179
+ font-size="9pt"
180
+ transform="matrix(0.797637,0,0,0.797637,413.713,155.14)"
181
+ vector-effect="non-scaling-stroke" />
182
+ <g
183
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#787878;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
184
+ id="g2299"
185
+ font-style="normal"
186
+ font-weight="400"
187
+ font-size="9pt"
188
+ transform="matrix(0.797637,0,0,0.797637,383.313,155.14)"
189
+ vector-effect="non-scaling-stroke">
190
+ <text
191
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#787878;fill-opacity:1;stroke:none;font-family:Sans Serif"
192
+ id="text2301"
193
+ font-style="normal"
194
+ font-weight="400"
195
+ font-size="9pt"
196
+ y="14"
197
+ x="42.118492">Rflex::TrackSpeedStart</text>
198
+ </g>
199
+ <g
200
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
201
+ id="g2303"
202
+ font-style="normal"
203
+ font-weight="400"
204
+ font-size="9pt"
205
+ transform="matrix(0.797637,0,0,0.797637,413.713,155.14)"
206
+ vector-effect="non-scaling-stroke" />
207
+ <g
208
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
209
+ id="g2305"
210
+ font-style="normal"
211
+ font-weight="400"
212
+ font-size="9pt"
213
+ vector-effect="non-scaling-stroke" />
214
+ <g
215
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
216
+ id="g2307"
217
+ font-style="normal"
218
+ font-weight="400"
219
+ font-size="9pt"
220
+ transform="matrix(0.797637,0,0,0.797637,413.713,155.14)"
221
+ vector-effect="non-scaling-stroke" />
222
+ <g
223
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
224
+ id="g2309"
225
+ font-style="normal"
226
+ font-weight="400"
227
+ font-size="9pt"
228
+ transform="matrix(0.797637,0,0,0.797637,413.713,155.14)"
229
+ vector-effect="non-scaling-stroke" />
230
+ <g
231
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
232
+ id="g2311"
233
+ font-style="normal"
234
+ font-weight="400"
235
+ font-size="9pt"
236
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
237
+ vector-effect="non-scaling-stroke" />
238
+ <g
239
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
240
+ id="g2317"
241
+ font-style="normal"
242
+ font-weight="400"
243
+ font-size="9pt"
244
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
245
+ vector-effect="non-scaling-stroke" />
246
+ <g
247
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
248
+ id="g2319"
249
+ font-style="normal"
250
+ font-weight="400"
251
+ font-size="9pt"
252
+ transform="matrix(0.797637,0,0,0.797637,519.799,136.396)"
253
+ vector-effect="non-scaling-stroke" />
254
+ <g
255
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
256
+ id="g2321"
257
+ font-style="normal"
258
+ font-weight="400"
259
+ font-size="9pt"
260
+ transform="matrix(0.797637,0,0,0.797637,519.799,136.396)"
261
+ vector-effect="non-scaling-stroke" />
262
+ <g
263
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
264
+ id="g2323"
265
+ font-style="normal"
266
+ font-weight="400"
267
+ font-size="9pt"
268
+ transform="matrix(0.797637,0,0,0.797637,519.799,136.396)"
269
+ vector-effect="non-scaling-stroke" />
270
+ <g
271
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#787878;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
272
+ id="g2325"
273
+ font-style="normal"
274
+ font-weight="400"
275
+ font-size="9pt"
276
+ transform="matrix(0.797637,0,0,0.797637,489.399,136.396)"
277
+ vector-effect="non-scaling-stroke">
278
+ <text
279
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#787878;fill-opacity:1;stroke:none;font-family:Sans Serif"
280
+ id="text2327"
281
+ font-style="normal"
282
+ font-weight="400"
283
+ font-size="9pt"
284
+ y="14"
285
+ x="2">failed</text>
286
+ </g>
287
+ <g
288
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
289
+ id="g2329"
290
+ font-style="normal"
291
+ font-weight="400"
292
+ font-size="9pt"
293
+ transform="matrix(0.797637,0,0,0.797637,519.799,136.396)"
294
+ vector-effect="non-scaling-stroke" />
295
+ <g
296
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
297
+ id="g2331"
298
+ font-style="normal"
299
+ font-weight="400"
300
+ font-size="9pt"
301
+ vector-effect="non-scaling-stroke" />
302
+ <g
303
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
304
+ id="g2333"
305
+ font-style="normal"
306
+ font-weight="400"
307
+ font-size="9pt"
308
+ transform="matrix(0.797637,0,0,0.797637,519.799,136.396)"
309
+ vector-effect="non-scaling-stroke" />
310
+ <g
311
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
312
+ id="g2335"
313
+ font-style="normal"
314
+ font-weight="400"
315
+ font-size="9pt"
316
+ transform="matrix(0.797637,0,0,0.797637,519.799,136.396)"
317
+ vector-effect="non-scaling-stroke" />
318
+ <g
319
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
320
+ id="g2337"
321
+ font-style="normal"
322
+ font-weight="400"
323
+ font-size="9pt"
324
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
325
+ vector-effect="non-scaling-stroke" />
326
+ <g
327
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
328
+ id="g2339"
329
+ font-style="normal"
330
+ font-weight="400"
331
+ font-size="9pt"
332
+ transform="matrix(0.797637,0,0,0.797637,535.263,136.396)"
333
+ vector-effect="non-scaling-stroke">
334
+ <path
335
+ style="fill-rule:evenodd"
336
+ id="path2341"
337
+ d="M 3,0 C 3,1.65685 1.65685,3 0,3 C -1.65685,3 -3,1.65685 -3,0 C -3,-1.65685 -1.65685,-3 0,-3 C 1.65685,-3 3,-1.65685 3,0" />
338
+ </g>
339
+ <g
340
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
341
+ id="g2343"
342
+ font-style="normal"
343
+ font-weight="400"
344
+ font-size="9pt"
345
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
346
+ vector-effect="non-scaling-stroke" />
347
+ <g
348
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
349
+ id="g2345"
350
+ font-style="normal"
351
+ font-weight="400"
352
+ font-size="9pt"
353
+ transform="matrix(0.797637,0,0,0.797637,553.3,136.396)"
354
+ vector-effect="non-scaling-stroke" />
355
+ <g
356
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
357
+ id="g2347"
358
+ font-style="normal"
359
+ font-weight="400"
360
+ font-size="9pt"
361
+ transform="matrix(0.797637,0,0,0.797637,553.3,136.396)"
362
+ vector-effect="non-scaling-stroke" />
363
+ <g
364
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
365
+ id="g2349"
366
+ font-style="normal"
367
+ font-weight="400"
368
+ font-size="9pt"
369
+ transform="matrix(0.797637,0,0,0.797637,553.3,136.396)"
370
+ vector-effect="non-scaling-stroke" />
371
+ <g
372
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#787878;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
373
+ id="g2351"
374
+ font-style="normal"
375
+ font-weight="400"
376
+ font-size="9pt"
377
+ transform="matrix(0.797637,0,0,0.797637,522.9,136.396)"
378
+ vector-effect="non-scaling-stroke">
379
+ <text
380
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#787878;fill-opacity:1;stroke:none;font-family:Sans Serif"
381
+ id="text2353"
382
+ font-style="normal"
383
+ font-weight="400"
384
+ font-size="9pt"
385
+ y="14"
386
+ x="2">stop</text>
387
+ </g>
388
+ <g
389
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
390
+ id="g2355"
391
+ font-style="normal"
392
+ font-weight="400"
393
+ font-size="9pt"
394
+ transform="matrix(0.797637,0,0,0.797637,553.3,136.396)"
395
+ vector-effect="non-scaling-stroke" />
396
+ <g
397
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
398
+ id="g2357"
399
+ font-style="normal"
400
+ font-weight="400"
401
+ font-size="9pt"
402
+ vector-effect="non-scaling-stroke" />
403
+ <g
404
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
405
+ id="g2359"
406
+ font-style="normal"
407
+ font-weight="400"
408
+ font-size="9pt"
409
+ transform="matrix(0.797637,0,0,0.797637,553.3,136.396)"
410
+ vector-effect="non-scaling-stroke" />
411
+ <g
412
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
413
+ id="g2361"
414
+ font-style="normal"
415
+ font-weight="400"
416
+ font-size="9pt"
417
+ transform="matrix(0.797637,0,0,0.797637,553.3,136.396)"
418
+ vector-effect="non-scaling-stroke" />
419
+ <g
420
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
421
+ id="g2363"
422
+ font-style="normal"
423
+ font-weight="400"
424
+ font-size="9pt"
425
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
426
+ vector-effect="non-scaling-stroke" />
427
+ <g
428
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
429
+ id="g2369"
430
+ font-style="normal"
431
+ font-weight="400"
432
+ font-size="9pt"
433
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
434
+ vector-effect="non-scaling-stroke" />
435
+ <g
436
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
437
+ id="g2371"
438
+ font-style="normal"
439
+ font-weight="400"
440
+ font-size="9pt"
441
+ transform="matrix(0.797637,0,0,0.797637,416.106,136.396)"
442
+ vector-effect="non-scaling-stroke" />
443
+ <g
444
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
445
+ id="g2373"
446
+ font-style="normal"
447
+ font-weight="400"
448
+ font-size="9pt"
449
+ transform="matrix(0.797637,0,0,0.797637,416.106,136.396)"
450
+ vector-effect="non-scaling-stroke" />
451
+ <g
452
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
453
+ id="g2375"
454
+ font-style="normal"
455
+ font-weight="400"
456
+ font-size="9pt"
457
+ transform="matrix(0.797637,0,0,0.797637,416.106,136.396)"
458
+ vector-effect="non-scaling-stroke" />
459
+ <g
460
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#787878;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
461
+ id="g2377"
462
+ font-style="normal"
463
+ font-weight="400"
464
+ font-size="9pt"
465
+ transform="matrix(0.797637,0,0,0.797637,385.706,136.396)"
466
+ vector-effect="non-scaling-stroke">
467
+ <text
468
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#787878;fill-opacity:1;stroke:none;font-family:Sans Serif"
469
+ id="text2379"
470
+ font-style="normal"
471
+ font-weight="400"
472
+ font-size="9pt"
473
+ y="14"
474
+ x="2">poster_not_updated</text>
475
+ </g>
476
+ <g
477
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
478
+ id="g2381"
479
+ font-style="normal"
480
+ font-weight="400"
481
+ font-size="9pt"
482
+ transform="matrix(0.797637,0,0,0.797637,416.106,136.396)"
483
+ vector-effect="non-scaling-stroke" />
484
+ <g
485
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
486
+ id="g2383"
487
+ font-style="normal"
488
+ font-weight="400"
489
+ font-size="9pt"
490
+ vector-effect="non-scaling-stroke" />
491
+ <g
492
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
493
+ id="g2385"
494
+ font-style="normal"
495
+ font-weight="400"
496
+ font-size="9pt"
497
+ transform="matrix(0.797637,0,0,0.797637,416.106,136.396)"
498
+ vector-effect="non-scaling-stroke" />
499
+ <g
500
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
501
+ id="g2387"
502
+ font-style="normal"
503
+ font-weight="400"
504
+ font-size="9pt"
505
+ transform="matrix(0.797637,0,0,0.797637,416.106,136.396)"
506
+ vector-effect="non-scaling-stroke" />
507
+ <g
508
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
509
+ id="g2389"
510
+ font-style="normal"
511
+ font-weight="400"
512
+ font-size="9pt"
513
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
514
+ vector-effect="non-scaling-stroke" />
515
+ <g
516
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#b0ffa6;fill-opacity:1;fill-rule:evenodd;stroke:#b0ffa6;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
517
+ id="g2391"
518
+ font-style="normal"
519
+ font-weight="400"
520
+ font-size="9pt"
521
+ transform="matrix(0.797637,0,0,0.797637,389.295,197.016)"
522
+ vector-effect="non-scaling-stroke">
523
+ <path
524
+ style="fill-rule:evenodd"
525
+ id="path2393"
526
+ d="M -20.5,-14.5 L 20.5,-14.5 L 20.5,14.5 L -20.5,14.5 L -20.5,-14.5" />
527
+ </g>
528
+ <g
529
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
530
+ id="g2395"
531
+ font-style="normal"
532
+ font-weight="400"
533
+ font-size="9pt"
534
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
535
+ vector-effect="non-scaling-stroke" />
536
+ <g
537
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
538
+ id="g2397"
539
+ font-style="normal"
540
+ font-weight="400"
541
+ font-size="9pt"
542
+ transform="matrix(0.797637,0,0,0.797637,378.617,212.57)"
543
+ vector-effect="non-scaling-stroke" />
544
+ <g
545
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
546
+ id="g2399"
547
+ font-style="normal"
548
+ font-weight="400"
549
+ font-size="9pt"
550
+ transform="matrix(0.797637,0,0,0.797637,378.617,212.57)"
551
+ vector-effect="non-scaling-stroke" />
552
+ <g
553
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
554
+ id="g2401"
555
+ font-style="normal"
556
+ font-weight="400"
557
+ font-size="9pt"
558
+ transform="matrix(0.797637,0,0,0.797637,378.617,212.57)"
559
+ vector-effect="non-scaling-stroke" />
560
+ <g
561
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#787878;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
562
+ id="g2403"
563
+ font-style="normal"
564
+ font-weight="400"
565
+ font-size="9pt"
566
+ transform="matrix(0.797637,0,0,0.797637,348.217,212.57)"
567
+ vector-effect="non-scaling-stroke">
568
+ <text
569
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#787878;fill-opacity:1;stroke:none;font-family:Sans Serif"
570
+ id="text2405"
571
+ font-style="normal"
572
+ font-weight="400"
573
+ font-size="9pt"
574
+ y="11.994075"
575
+ x="-4.0177751">Rflex::TrackSpeedStart</text>
576
+ </g>
577
+ <g
578
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
579
+ id="g2407"
580
+ font-style="normal"
581
+ font-weight="400"
582
+ font-size="9pt"
583
+ transform="matrix(0.797637,0,0,0.797637,378.617,212.57)"
584
+ vector-effect="non-scaling-stroke" />
585
+ <g
586
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
587
+ id="g2409"
588
+ font-style="normal"
589
+ font-weight="400"
590
+ font-size="9pt"
591
+ vector-effect="non-scaling-stroke" />
592
+ <g
593
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
594
+ id="g2411"
595
+ font-style="normal"
596
+ font-weight="400"
597
+ font-size="9pt"
598
+ transform="matrix(0.797637,0,0,0.797637,378.617,212.57)"
599
+ vector-effect="non-scaling-stroke" />
600
+ <g
601
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
602
+ id="g2413"
603
+ font-style="normal"
604
+ font-weight="400"
605
+ font-size="9pt"
606
+ transform="matrix(0.797637,0,0,0.797637,378.617,212.57)"
607
+ vector-effect="non-scaling-stroke" />
608
+ <g
609
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
610
+ id="g2415"
611
+ font-style="normal"
612
+ font-weight="400"
613
+ font-size="9pt"
614
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
615
+ vector-effect="non-scaling-stroke" />
616
+ <g
617
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
618
+ id="g2417"
619
+ font-style="normal"
620
+ font-weight="400"
621
+ font-size="9pt"
622
+ transform="matrix(0.797637,0,0,0.797637,389.295,193.826)"
623
+ vector-effect="non-scaling-stroke">
624
+ <path
625
+ style="fill-rule:evenodd"
626
+ id="path2419"
627
+ d="M 3,0 C 3,1.65685 1.65685,3 0,3 C -1.65685,3 -3,1.65685 -3,0 C -3,-1.65685 -1.65685,-3 0,-3 C 1.65685,-3 3,-1.65685 3,0" />
628
+ </g>
629
+ <g
630
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
631
+ id="g2421"
632
+ font-style="normal"
633
+ font-weight="400"
634
+ font-size="9pt"
635
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
636
+ vector-effect="non-scaling-stroke" />
637
+ <g
638
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
639
+ id="g2423"
640
+ font-style="normal"
641
+ font-weight="400"
642
+ font-size="9pt"
643
+ transform="matrix(0.797637,0,0,0.797637,407.332,193.826)"
644
+ vector-effect="non-scaling-stroke" />
645
+ <g
646
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
647
+ id="g2425"
648
+ font-style="normal"
649
+ font-weight="400"
650
+ font-size="9pt"
651
+ transform="matrix(0.797637,0,0,0.797637,407.332,193.826)"
652
+ vector-effect="non-scaling-stroke" />
653
+ <g
654
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
655
+ id="g2427"
656
+ font-style="normal"
657
+ font-weight="400"
658
+ font-size="9pt"
659
+ transform="matrix(0.797637,0,0,0.797637,407.332,193.826)"
660
+ vector-effect="non-scaling-stroke" />
661
+ <g
662
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#787878;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
663
+ id="g2429"
664
+ font-style="normal"
665
+ font-weight="400"
666
+ font-size="9pt"
667
+ transform="matrix(0.797637,0,0,0.797637,376.932,193.826)"
668
+ vector-effect="non-scaling-stroke">
669
+ <text
670
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#787878;fill-opacity:1;stroke:none;font-family:Sans Serif"
671
+ id="text2431"
672
+ font-style="normal"
673
+ font-weight="400"
674
+ font-size="9pt"
675
+ y="14"
676
+ x="2">start</text>
677
+ </g>
678
+ <g
679
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
680
+ id="g2433"
681
+ font-style="normal"
682
+ font-weight="400"
683
+ font-size="9pt"
684
+ transform="matrix(0.797637,0,0,0.797637,407.332,193.826)"
685
+ vector-effect="non-scaling-stroke" />
686
+ <g
687
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
688
+ id="g2435"
689
+ font-style="normal"
690
+ font-weight="400"
691
+ font-size="9pt"
692
+ vector-effect="non-scaling-stroke" />
693
+ <g
694
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
695
+ id="g2437"
696
+ font-style="normal"
697
+ font-weight="400"
698
+ font-size="9pt"
699
+ transform="matrix(0.797637,0,0,0.797637,407.332,193.826)"
700
+ vector-effect="non-scaling-stroke" />
701
+ <g
702
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
703
+ id="g2439"
704
+ font-style="normal"
705
+ font-weight="400"
706
+ font-size="9pt"
707
+ transform="matrix(0.797637,0,0,0.797637,407.332,193.826)"
708
+ vector-effect="non-scaling-stroke" />
709
+ <g
710
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
711
+ id="g2441"
712
+ font-style="normal"
713
+ font-weight="400"
714
+ font-size="9pt"
715
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
716
+ vector-effect="non-scaling-stroke" />
717
+ <g
718
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#b0ffa6;fill-opacity:1;fill-rule:evenodd;stroke:#b0ffa6;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
719
+ id="g2443"
720
+ font-style="normal"
721
+ font-weight="400"
722
+ font-size="9pt"
723
+ transform="matrix(0.797637,0,0,0.797637,312.722,139.586)"
724
+ vector-effect="non-scaling-stroke">
725
+ <path
726
+ style="fill-rule:evenodd"
727
+ id="path2445"
728
+ d="M -10,-5 L 10,-5 L 10,5 L -10,5 L -10,-5" />
729
+ </g>
730
+ <g
731
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
732
+ id="g2447"
733
+ font-style="normal"
734
+ font-weight="400"
735
+ font-size="9pt"
736
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
737
+ vector-effect="non-scaling-stroke" />
738
+ <g
739
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
740
+ id="g2449"
741
+ font-style="normal"
742
+ font-weight="400"
743
+ font-size="9pt"
744
+ transform="matrix(0.797637,0,0,0.797637,302.044,147.563)"
745
+ vector-effect="non-scaling-stroke" />
746
+ <g
747
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
748
+ id="g2451"
749
+ font-style="normal"
750
+ font-weight="400"
751
+ font-size="9pt"
752
+ transform="matrix(0.797637,0,0,0.797637,302.044,147.563)"
753
+ vector-effect="non-scaling-stroke" />
754
+ <g
755
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
756
+ id="g2453"
757
+ font-style="normal"
758
+ font-weight="400"
759
+ font-size="9pt"
760
+ transform="matrix(0.797637,0,0,0.797637,302.044,147.563)"
761
+ vector-effect="non-scaling-stroke" />
762
+ <g
763
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#787878;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
764
+ id="g2455"
765
+ font-style="normal"
766
+ font-weight="400"
767
+ font-size="9pt"
768
+ transform="matrix(0.797637,0,0,0.797637,271.644,147.563)"
769
+ vector-effect="non-scaling-stroke">
770
+ <text
771
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#787878;fill-opacity:1;stroke:none;font-family:Sans Serif"
772
+ id="text2457"
773
+ font-style="normal"
774
+ font-weight="400"
775
+ font-size="9pt"
776
+ y="14"
777
+ x="2">P3d::PathTracking</text>
778
+ </g>
779
+ <g
780
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
781
+ id="g2459"
782
+ font-style="normal"
783
+ font-weight="400"
784
+ font-size="9pt"
785
+ transform="matrix(0.797637,0,0,0.797637,302.044,147.563)"
786
+ vector-effect="non-scaling-stroke" />
787
+ <g
788
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
789
+ id="g2461"
790
+ font-style="normal"
791
+ font-weight="400"
792
+ font-size="9pt"
793
+ vector-effect="non-scaling-stroke" />
794
+ <g
795
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
796
+ id="g2463"
797
+ font-style="normal"
798
+ font-weight="400"
799
+ font-size="9pt"
800
+ transform="matrix(0.797637,0,0,0.797637,302.044,147.563)"
801
+ vector-effect="non-scaling-stroke" />
802
+ <g
803
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
804
+ id="g2465"
805
+ font-style="normal"
806
+ font-weight="400"
807
+ font-size="9pt"
808
+ transform="matrix(0.797637,0,0,0.797637,302.044,147.563)"
809
+ vector-effect="non-scaling-stroke" />
810
+ <g
811
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
812
+ id="g2467"
813
+ font-style="normal"
814
+ font-weight="400"
815
+ font-size="9pt"
816
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
817
+ vector-effect="non-scaling-stroke" />
818
+ <g
819
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
820
+ id="g2473"
821
+ font-style="normal"
822
+ font-weight="400"
823
+ font-size="9pt"
824
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
825
+ vector-effect="non-scaling-stroke" />
826
+ <g
827
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
828
+ id="g2475"
829
+ font-style="normal"
830
+ font-weight="400"
831
+ font-size="9pt"
832
+ transform="matrix(0.797637,0,0,0.797637,207.524,147.563)"
833
+ vector-effect="non-scaling-stroke" />
834
+ <g
835
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
836
+ id="g2477"
837
+ font-style="normal"
838
+ font-weight="400"
839
+ font-size="9pt"
840
+ transform="matrix(0.797637,0,0,0.797637,207.524,147.563)"
841
+ vector-effect="non-scaling-stroke" />
842
+ <g
843
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
844
+ id="g2479"
845
+ font-style="normal"
846
+ font-weight="400"
847
+ font-size="9pt"
848
+ transform="matrix(0.797637,0,0,0.797637,207.524,147.563)"
849
+ vector-effect="non-scaling-stroke" />
850
+ <g
851
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
852
+ id="g2485"
853
+ font-style="normal"
854
+ font-weight="400"
855
+ font-size="9pt"
856
+ transform="matrix(0.797637,0,0,0.797637,207.524,147.563)"
857
+ vector-effect="non-scaling-stroke" />
858
+ <g
859
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
860
+ id="g2487"
861
+ font-style="normal"
862
+ font-weight="400"
863
+ font-size="9pt"
864
+ vector-effect="non-scaling-stroke" />
865
+ <g
866
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
867
+ id="g2489"
868
+ font-style="normal"
869
+ font-weight="400"
870
+ font-size="9pt"
871
+ transform="matrix(0.797637,0,0,0.797637,207.524,147.563)"
872
+ vector-effect="non-scaling-stroke" />
873
+ <g
874
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
875
+ id="g2491"
876
+ font-style="normal"
877
+ font-weight="400"
878
+ font-size="9pt"
879
+ transform="matrix(0.797637,0,0,0.797637,207.524,147.563)"
880
+ vector-effect="non-scaling-stroke" />
881
+ <g
882
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
883
+ id="g2493"
884
+ font-style="normal"
885
+ font-weight="400"
886
+ font-size="9pt"
887
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
888
+ vector-effect="non-scaling-stroke" />
889
+ <g
890
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;font-family:Sans Serif"
891
+ id="g2495"
892
+ font-style="normal"
893
+ font-weight="400"
894
+ font-size="9pt"
895
+ transform="matrix(0.797637,0,0,0.797637,501.762,136.396)"
896
+ vector-effect="non-scaling-stroke">
897
+ <path
898
+ style="fill-rule:evenodd"
899
+ id="path2497"
900
+ d="M 0,0 L -10,5 L -10,-5 L 0,0" />
901
+ </g>
902
+ <g
903
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
904
+ id="g2499"
905
+ font-style="normal"
906
+ font-weight="400"
907
+ font-size="9pt"
908
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
909
+ vector-effect="non-scaling-stroke" />
910
+ <g
911
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.50148125;stroke-linecap:butt;stroke-linejoin:miter;font-family:Sans Serif;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:1.00296246,2.00592493;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
912
+ id="g2501"
913
+ font-style="normal"
914
+ font-weight="400"
915
+ font-size="9pt"
916
+ transform="matrix(0.797637,0,0,0.797637,501.762,136.396)"
917
+ vector-effect="non-scaling-stroke">
918
+ <polyline
919
+ style="fill:none;color:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.50148125;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:1.00296246,2.00592493;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
920
+ id="polyline2503"
921
+ points="-83,0 0,0 " />
922
+ </g>
923
+ <g
924
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
925
+ id="g2505"
926
+ font-style="normal"
927
+ font-weight="400"
928
+ font-size="9pt"
929
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
930
+ vector-effect="non-scaling-stroke" />
931
+ <g
932
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;font-family:Sans Serif"
933
+ id="g2507"
934
+ font-style="normal"
935
+ font-weight="400"
936
+ font-size="9pt"
937
+ transform="matrix(0.797637,0,0,0.797637,532.87,136.396)"
938
+ vector-effect="non-scaling-stroke">
939
+ <path
940
+ style="fill-rule:evenodd"
941
+ id="path2509"
942
+ d="M 0,0 L -10,5 L -10,-5 L 0,0" />
943
+ </g>
944
+ <g
945
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
946
+ id="g2511"
947
+ font-style="normal"
948
+ font-weight="400"
949
+ font-size="9pt"
950
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
951
+ vector-effect="non-scaling-stroke" />
952
+ <g
953
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.50148125;stroke-linecap:butt;stroke-linejoin:miter;font-family:Sans Serif;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:1.00296246,2.00592493;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
954
+ id="g2513"
955
+ font-style="normal"
956
+ font-weight="400"
957
+ font-size="9pt"
958
+ transform="matrix(0.797637,0,0,0.797637,532.87,136.396)"
959
+ vector-effect="non-scaling-stroke">
960
+ <polyline
961
+ style="fill:none;color:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.50148125;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:1.00296246,2.00592493;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
962
+ id="polyline2515"
963
+ points="-36,0 0,0 " />
964
+ </g>
965
+ <g
966
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
967
+ id="g2517"
968
+ font-style="normal"
969
+ font-weight="400"
970
+ font-size="9pt"
971
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
972
+ vector-effect="non-scaling-stroke" />
973
+ <g
974
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
975
+ id="g2519"
976
+ font-style="normal"
977
+ font-weight="400"
978
+ font-size="9pt"
979
+ transform="matrix(-0.500381,0.621163,-0.621163,-0.500381,391.223,191.433)"
980
+ vector-effect="non-scaling-stroke">
981
+ <path
982
+ style="fill-rule:evenodd;stroke-width:1"
983
+ id="path2521"
984
+ d="M 0,0 L -10,5 L -10,-5 L 0,0" />
985
+ </g>
986
+ <g
987
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
988
+ id="g2523"
989
+ font-style="normal"
990
+ font-weight="400"
991
+ font-size="9pt"
992
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
993
+ vector-effect="non-scaling-stroke" />
994
+ <g
995
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
996
+ id="g2525"
997
+ font-style="normal"
998
+ font-weight="400"
999
+ font-size="9pt"
1000
+ transform="matrix(-0.500381,0.621163,-0.621163,-0.500381,391.223,191.433)"
1001
+ vector-effect="non-scaling-stroke">
1002
+ <polyline
1003
+ style="fill:none;stroke-width:1"
1004
+ id="polyline2527"
1005
+ points="-88.6031,0 0,0 " />
1006
+ </g>
1007
+ <g
1008
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
1009
+ id="g2529"
1010
+ font-style="normal"
1011
+ font-weight="400"
1012
+ font-size="9pt"
1013
+ transform="matrix(0.797637,0,0,0.797637,185.19,224.136)"
1014
+ vector-effect="non-scaling-stroke" />
1015
+ <g
1016
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
1017
+ id="g2531"
1018
+ font-style="normal"
1019
+ font-weight="400"
1020
+ font-size="9pt"
1021
+ vector-effect="non-scaling-stroke" />
1022
+ <g
1023
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#a2b5cd;fill-opacity:1;fill-rule:evenodd;stroke:#a2b5cd;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
1024
+ id="g3160"
1025
+ font-style="normal"
1026
+ font-weight="400"
1027
+ font-size="9pt"
1028
+ transform="matrix(-0.4610473,0.65089,-0.65089,-0.4610473,166.69197,188.33645)"
1029
+ vector-effect="non-scaling-stroke">
1030
+ <path
1031
+ style="fill-rule:evenodd"
1032
+ id="path3162"
1033
+ d="M 0,0 L -10,5 L -10,-5 L 0,0" />
1034
+ </g>
1035
+ <g
1036
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#a2b5cd;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
1037
+ id="g3166"
1038
+ font-style="normal"
1039
+ font-weight="400"
1040
+ font-size="9pt"
1041
+ transform="matrix(-0.4610473,0.65089,-0.65089,-0.4610473,166.69197,188.33645)"
1042
+ vector-effect="non-scaling-stroke">
1043
+ <polyline
1044
+ style="fill:none"
1045
+ id="polyline3168"
1046
+ points="-70.4636,0 0,0 " />
1047
+ </g>
1048
+ <g
1049
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#b0ffa6;fill-opacity:1;fill-rule:evenodd;stroke:#b0ffa6;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
1050
+ id="g3172"
1051
+ font-style="normal"
1052
+ font-weight="400"
1053
+ font-size="9pt"
1054
+ transform="matrix(0.7976358,0,0,0.7976358,158.49998,199.90143)"
1055
+ vector-effect="non-scaling-stroke">
1056
+ <path
1057
+ style="fill-rule:evenodd"
1058
+ id="path3174"
1059
+ d="M -20.5,-14.5 L 20.5,-14.5 L 20.5,14.5 L -20.5,14.5 L -20.5,-14.5" />
1060
+ </g>
1061
+ <g
1062
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#787878;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
1063
+ id="g3184"
1064
+ font-style="normal"
1065
+ font-weight="400"
1066
+ font-size="9pt"
1067
+ transform="matrix(0.7976358,0,0,0.7976358,75.147104,215.45541)"
1068
+ vector-effect="non-scaling-stroke">
1069
+ <text
1070
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#787878;fill-opacity:1;stroke:none;font-family:Sans Serif"
1071
+ id="text3186"
1072
+ font-style="normal"
1073
+ font-weight="400"
1074
+ font-size="9pt"
1075
+ y="14"
1076
+ x="40.112633">Rflex::TrackSpeedStart</text>
1077
+ </g>
1078
+ <g
1079
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
1080
+ id="g3198"
1081
+ font-style="normal"
1082
+ font-weight="400"
1083
+ font-size="9pt"
1084
+ transform="matrix(0.7976358,0,0,0.7976358,158.49998,196.71144)"
1085
+ vector-effect="non-scaling-stroke">
1086
+ <path
1087
+ style="fill-rule:evenodd"
1088
+ id="path3200"
1089
+ d="M 3,0 C 3,1.65685 1.65685,3 0,3 C -1.65685,3 -3,1.65685 -3,0 C -3,-1.65685 -1.65685,-3 0,-3 C 1.65685,-3 3,-1.65685 3,0" />
1090
+ </g>
1091
+ <g
1092
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#787878;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
1093
+ id="g3210"
1094
+ font-style="normal"
1095
+ font-weight="400"
1096
+ font-size="9pt"
1097
+ transform="matrix(0.7976358,0,0,0.7976358,146.136,196.71144)"
1098
+ vector-effect="non-scaling-stroke">
1099
+ <text
1100
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#787878;fill-opacity:1;stroke:none;font-family:Sans Serif"
1101
+ id="text3212"
1102
+ font-style="normal"
1103
+ font-weight="400"
1104
+ font-size="9pt"
1105
+ y="14"
1106
+ x="2">start</text>
1107
+ </g>
1108
+ <g
1109
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#b0ffa6;fill-opacity:1;fill-rule:evenodd;stroke:#b0ffa6;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
1110
+ id="g3224"
1111
+ font-style="normal"
1112
+ font-weight="400"
1113
+ font-size="9pt"
1114
+ transform="matrix(0.7976358,0,0,0.7976358,199.17892,142.47152)"
1115
+ vector-effect="non-scaling-stroke">
1116
+ <path
1117
+ style="fill-rule:evenodd"
1118
+ id="path3226"
1119
+ d="M -20.5,-14.5 L 20.5,-14.5 L 20.5,14.5 L -20.5,14.5 L -20.5,-14.5" />
1120
+ </g>
1121
+ <g
1122
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#787878;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
1123
+ id="g3236"
1124
+ font-style="normal"
1125
+ font-weight="400"
1126
+ font-size="9pt"
1127
+ transform="matrix(0.7976358,0,0,0.7976358,158.10098,158.0255)"
1128
+ vector-effect="non-scaling-stroke">
1129
+ <text
1130
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#787878;fill-opacity:1;stroke:none;font-family:Sans Serif"
1131
+ id="text3238"
1132
+ font-style="normal"
1133
+ font-weight="400"
1134
+ font-size="9pt"
1135
+ y="14"
1136
+ x="2">P3d::PathTracking</text>
1137
+ </g>
1138
+ <g
1139
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
1140
+ id="g3250"
1141
+ font-style="normal"
1142
+ font-weight="400"
1143
+ font-size="9pt"
1144
+ transform="matrix(0.7976358,0,0,0.7976358,199.17892,139.28153)"
1145
+ vector-effect="non-scaling-stroke">
1146
+ <path
1147
+ style="fill-rule:evenodd"
1148
+ id="path3252"
1149
+ d="M 3,0 C 3,1.65685 1.65685,3 0,3 C -1.65685,3 -3,1.65685 -3,0 C -3,-1.65685 -1.65685,-3 0,-3 C 1.65685,-3 3,-1.65685 3,0" />
1150
+ </g>
1151
+ <g
1152
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#787878;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
1153
+ id="g3262"
1154
+ font-style="normal"
1155
+ font-weight="400"
1156
+ font-size="9pt"
1157
+ transform="matrix(0.7976358,0,0,0.7976358,186.81594,139.28153)"
1158
+ vector-effect="non-scaling-stroke">
1159
+ <text
1160
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#787878;fill-opacity:1;stroke:none;font-family:Sans Serif"
1161
+ id="text3264"
1162
+ font-style="normal"
1163
+ font-weight="400"
1164
+ font-size="9pt"
1165
+ y="14"
1166
+ x="2">start</text>
1167
+ </g>
1168
+ <g
1169
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
1170
+ id="g3302"
1171
+ font-style="normal"
1172
+ font-weight="400"
1173
+ font-size="9pt"
1174
+ transform="matrix(-0.4610473,0.65089,-0.65089,-0.4610473,160.19498,194.31844)"
1175
+ vector-effect="non-scaling-stroke">
1176
+ <path
1177
+ style="fill-rule:evenodd"
1178
+ id="path3304"
1179
+ d="M 0,0 L -10,5 L -10,-5 L 0,0" />
1180
+ </g>
1181
+ <g
1182
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
1183
+ id="g3308"
1184
+ font-style="normal"
1185
+ font-weight="400"
1186
+ font-size="9pt"
1187
+ transform="matrix(-0.4610473,0.65089,-0.65089,-0.4610473,160.19498,194.31844)"
1188
+ vector-effect="non-scaling-stroke">
1189
+ <polyline
1190
+ style="fill:none"
1191
+ id="polyline3310"
1192
+ points="-84.5563,0 0,0 " />
1193
+ </g>
1194
+ <path
1195
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.4000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
1196
+ d="M 256.56904,115.17438 L 256.56904,242.06412"
1197
+ id="path2700" />
1198
+ <g
1199
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.00295259;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans Serif;opacity:1;color:#000000;fill-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
1200
+ id="g2365"
1201
+ font-style="normal"
1202
+ font-weight="400"
1203
+ font-size="9pt"
1204
+ transform="matrix(0.797637,0,0,0.797637,435.558,136.396)"
1205
+ vector-effect="non-scaling-stroke">
1206
+ <path
1207
+ style="fill-rule:evenodd;color:#000000;fill:#ffffff;fill-opacity:1;stroke:#ff0000;stroke-width:1.00295259;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
1208
+ id="path2367"
1209
+ d="M 3,0 C 3,1.65685 1.65685,3 0,3 C -1.65685,3 -3,1.65685 -3,0 C -3,-1.65685 -1.65685,-3 0,-3 C 1.65685,-3 3,-1.65685 3,0" />
1210
+ </g>
1211
+ <g
1212
+ style="font-size:11.25px;font-style:normal;font-weight:400;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1;font-family:Sans Serif"
1213
+ id="g2313"
1214
+ font-style="normal"
1215
+ font-weight="400"
1216
+ font-size="9pt"
1217
+ transform="matrix(0.797637,0,0,0.797637,504.155,136.396)"
1218
+ vector-effect="non-scaling-stroke">
1219
+ <path
1220
+ style="fill-rule:evenodd"
1221
+ id="path2315"
1222
+ d="M 3,0 C 3,1.65685 1.65685,3 0,3 C -1.65685,3 -3,1.65685 -3,0 C -3,-1.65685 -1.65685,-3 0,-3 C 1.65685,-3 3,-1.65685 3,0" />
1223
+ </g>
1224
+ </svg>