summaryrefslogtreecommitdiff
path: root/src/ipa/vimc
AgeCommit message (Collapse)Author
2024-09-03libcamera: ipa: Drop unneded includes from ipa_interface.hLaurent Pinchart
The ipa_interface.h file includes a number of headers that are not directly used. Remove them, and add them to the source files that include ipa_interface.h as required. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Milan Zamazal <mzamazal@redhat.com>
2024-08-07libcamera: Drop libcamera_generated_ipa_headers from sourcesLaurent Pinchart
The libcamera_generated_ipa_headers variable, containing the list of generated IPA headers, is listed in the sources of IPA modules, as well as IPA tests. This was done to ensure that the modules and tests get rebuilt when the generate IPA headers change. However, the dependency is already handled through the libcamera_private dependency object, specified for all those modules and tests. There's no need to list the IPA generated headers as sources. Drop them. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2024-06-11meson: Group libipa and libipa_includes in a dependency objectLaurent Pinchart
Many build targets link with libipa and need libipa_includes. Group them in a libipa_dep dependency object to simplify the users. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
2024-05-14libcamera: pipeline: Rename pipelines to a shorter nameJulien Vuillaumier
The PipelineHandlerFactoryBase class has a name that is propagated to the PipelineHandler instance it creates. In present implementation, this name comes from the REGISTER_PIPELINE_HANDLER registration macro. It corresponds to the stringified name of the PipelineHandler derived class. Therefore, PipelineHandler factories and instances names can be quite long such as "PipelineHandlerRkISP1". A libcamera user may have to explicitly refer to a PipelineHandler name for configuration purpose: one usage of the name can be to define a pipeline handlers match list and their priorities. It is desired, for user convenience, to use a short name to designate a pipeline handler. Reusing the short pipeline names already defined in the meson option files is an existing and consistent way of naming pipelines. This change adds an explicit name parameter to the REGISTER_PIPELINE_HANDLER registration macro. That parameter is used to define the name of a pipeline handler factory, instead of the current pipeline handler class name. Each pipeline registration is updated accordingly. The short name assigned corresponds to the pipeline directory name in the source tree. It is consistent with pipelines names used in meson. Changing the pipeline name has an impact on the IPA modules: each module defines a IPAModuleInfo structure. This structure has a pipelineName member defining the pipeline handler name it shall match with. Therefore, each internal IPA module definition has to be changed to have its IPAModuleInfo pipelineName name updated with the short pipeline handler name. In addition to this pipelineName member, the IPAModuleInfo structure also has a name member, associated to the IPA module name. Having renamed the pipelines to a short name, the pipeline name and the IPA module names of the IPAModuleInfo structure are the same: for in-tree IPA, they correspond to the respective pipeline and IPA subdirectories in the source tree. However the IPA name could be different, for instance with a close source IPA implementation built out-of-tree. Thus, it makes sense to keep the IPA name in that structure, as the 2 definitions may not always be redundant. Signed-off-by: Julien Vuillaumier <julien.vuillaumier@nxp.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> [Kieran: Adjust for clang-format style fix, reformat commitmsg] Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2024-05-08libcamera: Drop file name from header comment blocksLaurent Pinchart
Source files in libcamera start by a comment block header, which includes the file name and a one-line description of the file contents. While the latter is useful to get a quick overview of the file contents at a glance, the former is mostly a source of inconvenience. The name in the comments can easily get out of sync with the file name when files are renamed, and copy & paste during development have often lead to incorrect names being used to start with. Readers of the source code are expected to know which file they're looking it. Drop the file name from the header comment block. The change was generated with the following script: ---------------------------------------- dirs="include/libcamera src test utils" declare -rA patterns=( ['c']=' \* ' ['cpp']=' \* ' ['h']=' \* ' ['py']='# ' ['sh']='# ' ) for ext in ${!patterns[@]} ; do files=$(for dir in $dirs ; do find $dir -name "*.${ext}" ; done) pattern=${patterns[${ext}]} for file in $files ; do name=$(basename ${file}) sed -i "s/^\(${pattern}\)${name} - /\1/" "$file" done done ---------------------------------------- This misses several files that are out of sync with the comment block header. Those will be addressed separately and manually. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
2023-12-07meson: Tag all installed filesLaurent Pinchart
Meson uses tags to sort installed files in categories, and makes it possible to install a subset of the files using the '--tags' argument to 'meson install'. This is typically used by distributions to split the runtime, development and documentation files into separate packages. By default, meson tries to guess the correct tag for installed files, but can't always do so properly. Mark the install targets that meson can't guess with the correct install_tag. As the feature has been introduced in meson 0.60, bump the minimum meson version. The latest LTS release of all major distributions that libcamera currently targets ship a recent enough meson version. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
2023-05-04ipa: meson: Allow nested IPA directory structuresNaushir Patuck
The current IPA build files require a flat directory structure for the IPAs. Modify the build files to remove this restriction and allow a directory structure such as: src/ipa |- raspberrypi |- common |- cam_helpers |- controller |- vc4 |- rkisp1 |- ipu3 where each subdir (e.g. raspberrypi/common, raspberrypi/cam_helper) has its own meson.build file. Such a directory structure will be introduced for the Raspberry Pi IPA in a future commit. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2023-04-05libcamera: Open files with O_CLOEXECLaurent Pinchart
Files opened internally in libcamera without the O_CLOEXEC file will remain open upon a call to one of the exec(3) functions. As exec() doesn't destroy local or global objects, this can lead to various side effects. Avoid this by opening file descriptors with O_CLOEXEC for all internal files. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2022-12-24libcamera: Simple typo fixesPavel Machek
Fix various typos in the code base. Signed-off-by: Pavel Machek <pavel@ucw.cz> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2022-10-18ipa: vimc: Add Flags to parametersPaul Elder
For the purpose of testing serializing/deserializing Flags in function parameters, add an enum class TestFlags and Flags<TestFlags> to some function parameters, both for input and output and Signals. While at it, update the ipa_interface_test. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2022-10-18ipa: vimc: Add IPAOperationCode to init() parameter listPaul Elder
For the purpose of testing serializing/deserializing enums in function parameters, add IPAOperationCode to the parameter list of init(). Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2022-04-13ipa: vimc: Synchronise parameter buffer ops namingUmang Jain
Synchronise the names of the operations with respect to parameters buffer with the names used in other IPA interfaces. Signed-off-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
2022-04-13ipa: vimc: Establish logical order of operationsUmang Jain
It is preferred that the interface definition should represent the logical order in which the operations will be called. The patch has no functional changes. Signed-off-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
2022-04-02ipa: vimc: Rename processControls() to queueRequest()Umang Jain
Synchronise with other IPA interfaces (for e.g. IPU3, RkISP1) that uses queueRequest() to pass in the request controls to IPA. Signed-off-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2021-08-16ipa: vimc: Send and retrieve FrameBuffers from IPAUmang Jain
Plumb through VIMC mojo interface to enable buffers passing. VIMC does not have parameters or statistics buffers but we can mimick the typical case of passing IPA buffers from pipeline handler to IPA using mock buffers. The mock IPA buffers are FrameBuffers which are dmabuf backed (in other words, mmap()able through MappedFramebuffer inside the IPA). This commits shows: - Passing the parameter buffer from the pipeline handler to the IPA through functions defined in mojom interface. - Passing request controls ControlList to the IPA. Any tests using VIMC will now loop in the IPA paths. Any tests running in isolated mode will help us to test IPA IPC code paths especially around (de)serialization of data passing from pipeline handlers to the IPA. Future IPA interface tests can simply extend the vimc mojom interface to achieve/test a specific use case as required. Signed-off-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2021-08-16ipa: vimc: Map and unmap buffersUmang Jain
VIMC pipeline handler has dmabuf-backed mock FrameBuffers which are specifically targetted mimicking IPA buffers (parameter and statistics). Map these mock buffers to the VIMC IPA that would enable exercising IPA IPC code paths. This will provide leverage to our test suite to test IPA IPC code paths, which are common to various platforms. Signed-off-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2021-08-16ipa: vimc: Add configure() functionLaurent Pinchart
As part of an effort to make the vimc IPA usable for testing, extend it with a configure function. The configuration is currently ignored by the IPA. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com> Signed-off-by: Umang Jain <umang.jain@ideasonboard.com>
2021-08-03libcamera: file: Turn MapFlag and OpenModeFlag into enum classLaurent Pinchart
Add type safety by turning the MapFlag and OpenModeFlag enum into enum class. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
2021-06-25libcamera/base: Validate internal headers as privateKieran Bingham
Headers which must not be exposed as part of the public libcamera API should include base/private.h. Any interface which includes the private.h header will only be able to build if the libcamera_private dependency is used (or the libcamera_base_private dependency directly). Build targets which are intended to use the private API's will use the libcamera_private to handle the automatic definition of the inclusion guard. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2021-06-25libcamera/base: Move File to base libraryKieran Bingham
The File abstraction is a base helper and not part of the libcamera API. Move it to to allow usage by users of the base library. Reviewed-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2021-06-25libcamera/base: Move extended base functionalityKieran Bingham
Move the functionality for the following components to the new base support library: - BoundMethod - EventDispatcher - EventDispatcherPoll - Log - Message - Object - Signal - Semaphore - Thread - Timer While it would be preferable to see these split to move one component per commit, these components are all interdependent upon each other, which leaves us with one big change performing the move for all of them. Reviewed-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2021-05-11meson: Replace obselete join_paths() with '/' operatorUmang Jain
Since meson v0.49.0, join_paths() is equivalent to '/' hence, drop and replace it with '/' short-hand in meson files. This commit does not introduce any functional changes. Signed-off-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2021-02-16libcamera: IPAInterface: Replace C API with the new C++-only APIPaul Elder
Remove everything related to the C API, including ipa_context, ipa_context_wrapper, and IPAInterfaceWrapper. Also remove relevant documentation. ipaCreate() provided by IPA implementations, and createInterface() provided by IPAModule (wrapper around IPA implementation) both now return a C++ object IPAInterface instead of struct ipa_context. Although IPAInterfaceWrapper is the only component of libipa, the skeleton and build files for libipa are retained. After converting the C API to the C++-only API, make all pipeline handlers and IPAs use the new API. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- This is a combination of 21 commits: --- libcamera: IPAModule: Replace ipa_context with IPAInterface With the new IPC infrastructure, we no longer need the C interface as provided by struct ipa_context. Make ipaCreate_() and createInterface() return IPAInterface. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- libcamera: ipa_context_wrapper: Remove ipa_context_wrapper Since ipa_context has been replaced with custom IPAInterfaces, it is not longer needed. Remove it. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- libcamera: IPAInterface: remove ipa_context and functions from documentation Remove all the documentation related to ipa_context and the C IPA API, as well as the documentation about the functions in the IPAInterface. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> --- libcamera: IPAInterface: Remove all functions from IPAInterface Now that all the functions in the IPA interface are defined in the data definition file and a specialized IPAInterface is generated per pipeline handler, remove all the functions from the base IPAInterface. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- libcamera: IPAInterface: make ipaCreate return IPAInterface With the new IPC infrastructure, we no longer need the C interface as provided by struct ipa_context. Make ipaCreate return IPAinterface. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> --- ipa: remove IPAInterfaceWrapper As every pipeline has its own proxy, IPAInterfaceWrapper is no longer necessary. Remove it. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Acked-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> --- libcamera: IPAProxy: Remove stop() override Since stop() is part of the IPA interface, and the IPA interface is now generated based on the data definition file per pipeline, this no longer needs to be overrided by the base IPAProxy. Remove it. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- libcamera: IPAProxy, IPAManager: Switch to one-proxy-per-pipeline scheme IPAProxy is changed in two major ways: - Every pipeline has its own proxy, to support each pipeline's IPA interface - IPAProxy implementations always encapsulate IPA modules, and switch internally for isolation or threaded The IPAProxy registration mechanism is removed, as each pipeline will have its own proxy, so the pipeline can pass the specialized class name of the IPAProxy to the IPAManager for construction. IPAManager is changed accordingly to support these changes: - createIPA is a template function that takes an IPAProxy class, and always returns an IPAProxy - IPAManager no longer decides on isolation, and simply creates an IPAProxy instance while passing the isolation flag Consequently, the old IPAProxy classes (IPAProxyThread and IPAProxyLinux) are removed. The IPAInterfaceTest is updated to use the new IPAManager interface, and to construct a ProcessManager as no single global instance is created anymore. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> --- libcamera: IPAProxy: Add isolate parameter to create() Since IPAProxy implementations now always encapsulate IPA modules, add a parameter to create() to signal if the proxy should isolate the IPA or not. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- libcamera: IPAManager: Fetch IPAProxy corresponding to pipeline Now that each pipeline handler has its own IPAProxy implementation, make the IPAManager fetch the IPAProxy based on the pipeline handler name. Also, since the IPAProxy is used regardless of isolation or no isolation, remove the isolation check from the proxy selection. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> --- libcamera: IPAManager: add isolation flag to proxy creation When the IPA proxy is created, it needs to know whether to isolate or not. Feed the flag at creation of the IPA proxy. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- libcamera: IPAManager: Make createIPA return proxy directly Since every pipeline knows the type of the proxy that it needs, and since all IPAs are to be wrapped in a proxy, IPAManager no longer needs to search in the factory list to fetch the proxy factory to construct a factory. Instead, we define createIPA as a template function, and the pipeline handler can declare the proxy type when it calls createIPA. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- libcamera: IPAProxy: Remove registration mechanism Implementations of IPA proxies use a registration mechanism to register themselves with the main IPA proxy factory. This registration declares static objects, causing a risk of things being constructed before the proper libcamera facilities are ready. Since each pipeline handler has its own IPA proxy and knows the type, it isn't necessary to have a proxy factory. Remove it to alleviate the risk of early construction. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- libcamera: proxy: Remove IPAProxyLinux and IPAProxyThread We have now changed the proxy from per-IPC mechanism to per-pipeline. The per-IPC mechanism proxies are thus no longer needed; remove them. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- tests: ipa_interface_test: Update to use new createIPA Update the IPA interface test to use the new createIPA function from IPAManager. Also create an instance of ProcessManager, as no single global instance is created automatically anymore. Update meson.build to to depend on the generated IPA interface headers. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- libcamera: PipelineHandler: Remove IPA from base class Since pipeline handlers now have their own IPA interface types, it can no longer be defined in the base class, and each pipeline handler implementation must declare it and its type themselves. Remove it from the base class. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- ipa: raspberrypi: Add mojom data definition file Add a mojom data definition for raspberrypi pipeline handler's IPAs. This simplifies the API between the raspberrypi pipeline handler and the IPA, and is not a direct translation of what was used before with IPAOperationData. Also move the enums from raspberrypi.h to raspberrypi.mojom Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- libcamera: pipeline, ipa: raspberrypi: Use new data definition Now that we can generate custom functions and data structures with mojo, switch the raspberrypi pipeline handler and IPA to use the custom data structures as defined in the mojom data definition file. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- libcamera: pipeline, ipa: vimc: Support the new IPC mechanism Add support to vimc pipeline handler and IPA for the new IPC mechanism. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> --- libcamera: pipeline, ipa: rkisp1: Support the new IPC mechanism Add support to the rkisp1 pipeline handler and IPA for the new IPC mechanism. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- libcamera: pipeline, ipa: ipu3: Support the new IPC mechanism Add support to ipu3 pipeline handler and IPA for the new IPC mechanism. [Original version] Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> [Fixed commit message and small changes] Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2021-02-11meson: Fix coding style when declaring arraysLaurent Pinchart
The meson.build files mix array declarations with and without a space after the opening and before the closing square bracket. The vast majority of cases don't use spaces, so standardize on that. While it it, fix indentation in a few places. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2020-12-08libcamera: ipa: Pass a set of controls and return results from ipa::start()Naushir Patuck
This change allows controls passed into PipelineHandler::start to be forwarded onto IPAInterface::start(). We also add a return channel if the pipeline handler must action any of these controls, e.g. setting the analogue gain or shutter speed in the sensor device. The IPA interface wrapper isn't addressed as it will soon be replaced by a new mechanism to handle IPC. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: David Plowman <david.plowman@raspberrypi.com> Tested-by: David Plowman <david.plowman@raspberrypi.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2020-10-20ipa: Rename ipa_vimc.h to vimc.hLaurent Pinchart
To be consistent with the other pipeline handlers that don't prefix their IPA protocol header with ipa_, rename ipa_vimc.h to vimc.h. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2020-10-12vimc: fix close(-1)Tomi Valkeinen
~IPAVimc() checks if fd != 0, but it should check if fd != -1. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@iki.fi> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2020-08-25meson: Remove -Wno-unused-parameterLaurent Pinchart
We build libcamera with -Wno-unused-parameter and this doesn't cause much issue internally. However, it prevents catching unused parameters in inline functions defined in public headers. This can lead to compilation warnings for applications compiled without -Wno-unused-parameter. To catch those issues, remove -Wno-unused-parameter and fix all the related warnings with [[maybe_unused]]. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
2020-07-17libcamera: ipa_interface: Add support for custom IPA data to configure()Laurent Pinchart
Add two new parameters, ipaConfig and result, to the IPAInterface::configure() function to allow pipeline handlers to pass custom data to their IPA, and receive data back. Wire this through the code base. The C API interface will be addressed separately, likely through automation of the C <-> C++ translation. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
2020-06-09libcamera: Add missing SPDX headers to miscellaneous small filesLaurent Pinchart
Add missing SPDX headers to miscellaneous small files. Use CC0-1.0 for meson.build, .gitignore and the small include/linux/README, and licenses matching the corresponding component for other files. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
2020-05-16libcamera: Move IPA headers from include/ipa/ to include/libcamera/ipa/Laurent Pinchart
The IPA headers are installed into $prefix/include/libcamera/ipa/, but are located in the source tree in include/ipa/. This requires files within libcamera to include them with #include <ipa/foo.h> while a third party IPA would need to use #include <libcamera/ipa/foo.h> Not only is this inconsistent, it can create issues later if IPA headers need to include each other, as the first form of include directive wouldn't be valid once the headers are installed. Fix the problem by moving the IPA headers to include/libcamera/ipa/. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Jacopo Mondi <jacopo@jmondi.org>
2020-05-16libcamera: Move internal headers to include/libcamera/internal/Laurent Pinchart
The libcamera internal headers are located in src/libcamera/include/. The directory is added to the compiler headers search path with a meson include_directories() directive, and internal headers are included with (e.g. for the internal semaphore.h header) #include "semaphore.h" All was well, until libcxx decided to implement the C++20 synchronization library. The __threading_support header gained a #include <semaphore.h> to include the pthread's semaphore support. As include_directories() adds src/libcamera/include/ to the compiler search path with -I, the internal semaphore.h is included instead of the pthread version. Needless to say, the compiler isn't happy. Three options have been considered to fix this issue: - Use -iquote instead of -I. The -iquote option instructs gcc to only consider the header search path for headers included with the "" version. Meson unfortunately doesn't support this option. - Rename the internal semaphore.h header. This was deemed to be the beginning of a long whack-a-mole game, where namespace clashes with system libraries would appear over time (possibly dependent on particular system configurations) and would need to be constantly fixed. - Move the internal headers to another directory to create a unique namespace through path components. This causes lots of churn in all the existing source files through the all project. The first option would be best, but isn't available to us due to missing support in meson. Even if -iquote support was added, we would need to fix the problem before a new version of meson containing the required support would be released. The third option is thus the only practical solution available. Bite the bullet, and do it, moving headers to include/libcamera/internal/. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Jacopo Mondi <jacopo@jmondi.org>
2020-05-13licenses: License all meson files under CC0-1.0Laurent Pinchart
In an attempt to clarify the license terms of all files in the libcamera project, the build system files deserve particular attention. While they describe how the binaries are created, they are not themselves transformed into any part of binary distributions of the software, and thus don't influence the copyright on the binary packages. They are however subject to copyright, and thus influence the distribution terms of the source packages. Most of the meson.build files would not meet the threshold of originality criteria required for copyright protection. Some of the more complex meson.build files may be eligible for copyright protection. To avoid any ambiguity and uncertainty, state our intent to not assert copyrights on the build system files by putting them in the public domain with the CC0-1.0 license. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Acked-by: Giulio Benetti <giulio.benetti@micronovasrl.com> Acked-by: Jacopo Mondi <jacopo@jmondi.org> Acked-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Acked-by: Naushir Patuck <naush@raspberrypi.com> Acked-by: Nicolas Dufresne <nicolas.dufresne@collabora.com> Acked-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Acked-by: Paul Elder <paul.elder@ideasonboard.com> Acked-by: Show Liu <show.liu@linaro.org>
2020-04-30libcamera: Build IPA module signatures by defaultLaurent Pinchart
Commit 7206035ee609 ("libcamera: Regenerate IPA module signatures at install time") replaced installation of the IPA module signatures with an install script that signs all modules. While doing so, it inadvertently also disabled generation of the signature at build time by default. This breaks running libcamera binaries from the build directory. Fix it. Fixes: 7206035ee609 ("libcamera: Regenerate IPA module signatures at install time") Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
2020-04-29libcamera: Regenerate IPA module signatures at install timeLaurent Pinchart
When the IPA modules are installed, meson strips the DT_RPATH and DT_RUNPATH from the binaries. This invalidates the signatures. Disable installation of the .sign files and add an installation script to regenerate them directly in the target directory. The .sign files still need to be created at build time to support running IPA modules from the build tree. Two alternative approaches have been considered: - meson could be taught a new target argument to preserve binary compatibility by skipping any operation that modifies files. This has been proposed in the #mesonbuild IRC channel. While this could be interesting in the longer term, we need to fix the issue now. - The module signatures could be computed on selected sections only. While skipping the .dynamic section when signing may not cause security issues, it would make signature generation and verification more complex, and wasn't deemed worth it. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2020-04-28libcamera: ipa: Add support for CameraSensorInfoJacopo Mondi
Add support for camera sensor information in the libcamera IPA protocol. Define a new 'struct ipa_sensor_info' structure in the IPA context and use it to perform translation between the C and the C++ API. Update the IPAInterface::configure() operation to accept a new CameraSensorInfo parameter and port all users of that function to the new interface. Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
2020-04-28ipa: vimc: Validate configuration file in init()Laurent Pinchart
Make sure we can open the configuration file passed to the init() function, and return an error otherwise. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2020-04-28ipa: vimc: Add a dummy configuration file to the vimc IPALaurent Pinchart
The file will be used to test the corresponding APIs. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2020-04-28ipa: Pass IPA initialization settings to IPAInterface::init()Laurent Pinchart
Add a new IPASettings class to pass IPA initialization settings through the IPAInterface::init() method. The settings currently only contain the name of a configuration file, and are expected to be extended later. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
2020-04-28ipa: Name IPA modules after their source directoryLaurent Pinchart
The IPAModuleInfo::name field is currently a free-formed string that has little use. Tighten its usage rules to make it suitable for building file system paths to IPA-specific resources by matching the directory name of the IPA module. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2020-04-16libcamera: Make IPA module signing optionalLaurent Pinchart
The IPA module signing mechanism relies on openssl to generate keys and sign the module. If openssl is not found on the system, the build will fail. Make the dependency optional by detecting openssl, and skip generation of signatures if openssl isn't found. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2020-04-14libcamera: ipa: Remove IPAModuleInfo license fieldLaurent Pinchart
The IPAModuleInfo license field isn't needed anymore now that modules are cryptographically signed. Remove it. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
2020-04-14libcamera: Add IPA module signing infrastructureLaurent Pinchart
Add infrastructure to generate an RSA private key and sign IPA modules. The signatures are stored in separate files with a .sign suffix. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
2020-04-14ipa: vimc: Remove isolated VIMC IPA moduleLaurent Pinchart
The isolated VIMC module isn't used in any test. Remove it to prepare for the rework of IPA module isolation. The feature can be added back later alongside corresponding tests if needed. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
2020-04-14ipa: Add start() and stop() operationsNiklas Söderlund
Add two new operations to the IPA interface to start and stop it. The intention is that these functions shall be used by the IPA to perform actions when the camera is started and stopped. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2020-03-25ipa: Move vimc to a subdirectoryLaurent Pinchart
Give a subdirectory to all IPA modules to make the structure of the source tree more consistent. This will also simplify the implementation of IPA module selection at build time. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
98' href='#n1598'>1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
   width="297mm"
   height="210mm"
   viewBox="0 0 297 210"
   version="1.1"
   id="svg5"
   inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
   sodipodi:docname="sensor_model.svg"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:svg="http://www.w3.org/2000/svg">
  <sodipodi:namedview
     id="namedview7"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:showpageshadow="2"
     inkscape:pageopacity="0.0"
     inkscape:pagecheckerboard="0"
     inkscape:deskcolor="#d1d1d1"
     inkscape:document-units="mm"
     showgrid="true"
     inkscape:zoom="0.55815145"
     inkscape:cx="535.6969"
     inkscape:cy="472.9899"
     inkscape:window-width="1916"
     inkscape:window-height="1040"
     inkscape:window-x="0"
     inkscape:window-y="38"
     inkscape:window-maximized="1"
     inkscape:current-layer="layer1"
     showguides="false">
    <inkscape:grid
       type="xygrid"
       id="grid184"
       originx="0"
       originy="0"
       spacingy="1"
       spacingx="1"
       units="mm"
       visible="true" />
  </sodipodi:namedview>
  <defs
     id="defs2">
    <marker
       style="overflow:visible"
       id="marker9374"
       refX="0"
       refY="0"
       orient="auto-start-reverse"
       inkscape:stockid="TriangleStart"
       markerWidth="5.32440803"
       markerHeight="6.15538502"
       viewBox="0 0 5.3244081 6.1553851"
       inkscape:isstock="true"
       inkscape:collect="always"
       preserveAspectRatio="xMidYMid">
      <path
         transform="scale(0.5)"
         style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
         d="M 5.77,0 -2.88,5 V -5 Z"
         id="path9372" />
    </marker>
    <marker
       style="overflow:visible"
       id="TriangleStart"
       refX="0"
       refY="0"
       orient="auto-start-reverse"
       inkscape:stockid="TriangleStart"
       markerWidth="5.3244081"
       markerHeight="6.155385"
       viewBox="0 0 5.3244081 6.1553851"
       inkscape:isstock="true"
       inkscape:collect="always"
       preserveAspectRatio="xMidYMid">
      <path
         transform="scale(0.5)"
         style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
         d="M 5.77,0 -2.88,5 V -5 Z"
         id="path135" />
    </marker>
    <marker
       style="overflow:visible"
       id="marker9374-3"
       refX="0"
       refY="0"
       orient="auto-start-reverse"
       inkscape:stockid="TriangleStart"
       markerWidth="5.3244081"
       markerHeight="6.155385"
       viewBox="0 0 5.3244081 6.1553851"
       inkscape:isstock="true"
       inkscape:collect="always"
       preserveAspectRatio="xMidYMid">
      <path
         transform="scale(0.5)"
         style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
         d="M 5.77,0 -2.88,5 V -5 Z"
         id="path9372-6" />
    </marker>
    <marker
       style="overflow:visible"
       id="TriangleStart-3"
       refX="0"
       refY="0"
       orient="auto-start-reverse"
       inkscape:stockid="TriangleStart"
       markerWidth="5.3244081"
       markerHeight="6.155385"
       viewBox="0 0 5.3244081 6.1553851"
       inkscape:isstock="true"
       inkscape:collect="always"
       preserveAspectRatio="xMidYMid">
      <path
         transform="scale(0.5)"
         style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
         d="M 5.77,0 -2.88,5 V -5 Z"
         id="path135-6" />
    </marker>
  </defs>
  <g
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     id="layer1">
    <g
       id="g1052"
       transform="translate(23.655977)"
       style="opacity:0.5"
       inkscape:export-filename="Documentation/camera-sensor-model_digiscale.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-2"
       transform="translate(13.062138,0.0898069)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-9"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-1"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-2"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-7"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-0"
       transform="translate(44.963283,-0.03138127)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-93"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-6"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-0"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-6"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-26"
       transform="translate(34.280458,-0.02885923)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-1"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-8"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-7"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-9"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-20"
       transform="translate(66.243325,-0.12103306)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-2"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-3"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-75"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-92"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-28"
       transform="translate(55.53615,-0.0663742)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-97"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-36"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-1"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-2"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-9"
       transform="translate(76.887707,-0.13032417)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-31"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-4"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-78"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-206"
       transform="translate(2.5889069,0.05636587)"
       style="opacity:0.502088">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-15"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-5"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-47"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-65"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-6"
       transform="translate(23.672688,10.516298)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-937"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-4"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-5"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-25"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-2-4"
       transform="translate(13.078849,10.606105)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-9-7"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-1-4"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-2-4"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-7-3"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-0-0"
       transform="translate(44.979994,10.484917)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-93-7"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-6-8"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-0-6"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-6-8"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-26-8"
       transform="translate(34.297169,10.487439)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-1-4"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-8-3"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-7-1"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-9-4"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-20-9"
       transform="translate(66.260036,10.395265)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-2-2"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-3-0"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-75-6"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-92-8"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-28-9"
       transform="translate(55.552861,10.449924)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-97-2"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-36-6"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-1-6"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-2-4"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-9-9"
       transform="translate(76.904418,10.385974)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-31-5"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9-0"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-4-4"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-78-8"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-206-7"
       transform="translate(2.6056179,10.572664)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-15-1"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-5-7"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-47-2"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-65-7"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-22"
       transform="translate(23.70412,21.058784)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-6"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-10"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-6"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-1"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-2-5"
       transform="translate(13.110281,21.148591)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-9-9"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-1-49"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-2-0"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-7-9"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-0-1"
       transform="translate(45.011426,21.027403)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-93-77"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-6-1"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-0-1"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-6-5"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-26-9"
       transform="translate(34.328601,21.029925)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-1-7"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-8-7"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-7-6"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-9-7"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-20-3"
       transform="translate(66.291468,20.937751)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-2-6"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-3-5"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-75-63"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-92-9"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-28-4"
       transform="translate(55.584293,20.99241)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-97-8"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-36-1"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-1-2"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-2-9"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-9-3"
       transform="translate(76.93585,20.92846)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-31-9"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9-08"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-4-8"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-78-5"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-206-0"
       transform="translate(2.6370499,21.11515)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-15-9"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-5-6"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-47-3"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-65-8"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-5"
       transform="translate(23.740609,31.433065)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-61"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-15"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-9"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-8"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-2-48"
       transform="translate(13.14677,31.522872)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-9-1"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-1-0"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-2-3"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-7-0"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-0-4"
       transform="translate(45.047915,31.401684)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-93-4"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-6-4"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-0-4"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-6-7"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-26-6"
       transform="translate(34.36509,31.404206)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-1-3"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-8-1"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-7-7"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-9-5"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-20-96"
       transform="translate(66.327957,31.312032)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-2-21"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-3-7"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-75-8"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-92-5"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-28-7"
       transform="translate(55.620782,31.366691)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-97-4"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-36-18"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-1-5"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-2-97"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-9-5"
       transform="translate(76.972339,31.302741)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-31-3"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9-8"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-4-83"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-78-1"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-206-8"
       transform="translate(2.6735389,31.489431)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-15-96"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-5-4"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-47-33"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-65-3"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-8"
       transform="translate(23.725354,41.251089)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-60"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-48"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-8"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-89"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-2-7"
       transform="translate(13.131515,41.340896)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-9-76"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-1-43"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-2-03"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-7-09"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-0-2"
       transform="translate(45.03266,41.219708)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-93-5"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-6-40"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-0-5"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-6-9"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-26-4"
       transform="translate(34.349835,41.22223)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-1-6"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-8-9"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-7-2"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-9-2"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-20-4"
       transform="translate(66.312702,41.130056)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-2-7"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-3-75"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-75-4"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-92-81"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-28-2"
       transform="translate(55.605527,41.184715)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-97-89"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-36-3"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-1-68"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-2-0"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-9-2"
       transform="translate(76.957084,41.120765)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-31-1"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9-05"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-4-1"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-78-10"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-206-85"
       transform="translate(2.5889069,41.307455)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-15-0"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-5-64"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-47-6"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-65-2"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-8-5"
       transform="translate(23.730747,51.649149)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-60-8"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-48-6"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-8-2"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-89-8"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-2-7-4"
       transform="translate(13.136908,51.738956)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-9-76-7"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-1-43-2"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-2-03-4"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-7-09-0"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-0-2-6"
       transform="translate(45.038053,51.617768)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-93-5-2"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-6-40-9"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-0-5-9"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-6-9-0"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-26-4-8"
       transform="translate(34.355228,51.62029)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-1-6-1"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-8-9-3"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-7-2-1"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-9-2-1"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-20-4-0"
       transform="translate(66.318095,51.528116)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-2-7-3"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-3-75-4"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-75-4-0"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-92-81-3"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-28-2-9"
       transform="translate(55.61092,51.582775)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-97-89-1"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-36-3-9"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-1-68-6"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-2-0-9"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <rect
       style="opacity:0.5;fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
       id="rect288-31-1-3"
       width="5.1440187"
       height="5.0140224"
       x="129.98665"
       y="78.113022" />
    <rect
       style="opacity:0.5;fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
       id="rect288-5-9-05-8"
       width="5.1440187"
       height="5.0140224"
       x="135.20201"
       y="78.074852" />
    <rect
       style="opacity:0.5;fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
       id="rect288-3-4-1-0"
       width="5.1440187"
       height="5.0140224"
       x="129.99101"
       y="83.377647" />
    <g
       id="g1052-9-4"
       transform="translate(87.507934,-0.18332859)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-31-6"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9-2"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-4-6"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-78-7"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-9-9-5"
       transform="translate(87.524645,10.332969)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-31-5-6"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9-0-9"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-4-4-8"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-78-8-7"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-9-3-2"
       transform="translate(87.556077,20.875455)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-31-9-8"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9-08-2"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-4-8-9"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-78-5-9"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-9-5-6"
       transform="translate(87.592566,31.249736)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-31-3-0"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9-8-2"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-4-83-7"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-78-1-6"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-9-2-1"
       transform="translate(87.577311,41.06776)"
       style="opacity:1">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-31-1-32"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9-05-1"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-4-1-5"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-78-10-9"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <rect
       style="opacity:0.5;fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
       id="rect288-3-4-1-0-9"
       width="5.1440187"
       height="5.0140224"
       x="140.61124"
       y="83.324638" />
    <rect
       style="opacity:0.5;fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
       id="rect288-56-78-10-5"
       width="5.1440187"
       height="5.0140224"
       x="135.21388"
       y="83.3274" />
    <rect
       style="opacity:0.5;fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
       id="rect288-31-1-3-1"
       width="5.1440187"
       height="5.0140224"
       x="140.60687"
       y="77.967453" />
    <g
       id="g1052-9-9-7-22"
       transform="translate(97.600308,0.08245514)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-31-5-4-1"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9-0-99-7"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-4-4-4-2"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-78-8-5-41"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-9-3-9-6"
       transform="translate(97.686888,10.559974)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-31-9-4-5"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9-08-22-78"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-4-8-6-5"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-78-5-4-9"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-9-5-3-27"
       transform="translate(97.723368,20.934255)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-31-3-3-36"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9-8-7-47"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-4-83-3-9"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-78-1-2-7"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <g
       id="g1052-9-2-8-2"
       transform="translate(97.708118,30.752279)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-31-1-9-2"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9-05-15-1"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-4-1-4-6"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-78-10-92-3"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <rect
       style="opacity:0.5;fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
       id="rect288-5-9-05-8-4"
       width="5.1440187"
       height="5.0140224"
       x="145.82224"
       y="77.929283" />
    <rect
       style="opacity:0.5;fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
       id="rect288-56-78-10-5-9"
       width="5.1440187"
       height="5.0140224"
       x="145.83411"
       y="83.181831" />
    <g
       id="g1052-9-2-1-0"
       transform="translate(97.884193,41.434681)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-31-1-32-0"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9-05-1-3"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-9-05-1-3-5"
         width="5.1440187"
         height="5.0140224"
         x="58.074577"
         y="37.001465" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-4-1-5-4"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-78-10-9-6"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <rect
       style="opacity:0.5;fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
       id="rect288-3-4-1-0-9-6"
       width="5.1440187"
       height="5.0140224"
       x="150.91812"
       y="83.691559" />
    <rect
       style="opacity:0.5;fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
       id="rect288-31-1-3-1-0"
       width="5.1440187"
       height="5.0140224"
       x="150.91376"
       y="78.334373" />
    <rect
       style="opacity:0.5;fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
       id="rect288-56-78-10-5-9-2"
       width="5.1440187"
       height="5.0140224"
       x="156.14098"
       y="83.548752" />
    <g
       id="g1052-206-85-6"
       transform="translate(2.5942999,51.705515)"
       style="opacity:0.5">
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-15-0-6"
         width="5.1440187"
         height="5.0140224"
         x="53.024174"
         y="26.5942" />
      <rect
         style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-5-5-64-4"
         width="5.1440187"
         height="5.0140224"
         x="58.23954"
         y="26.556028" />
      <rect
         style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-3-47-6-0"
         width="5.1440187"
         height="5.0140224"
         x="53.028545"
         y="31.858822" />
      <rect
         style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
         id="rect288-56-65-2-0"
         width="5.1440187"
         height="5.0140224"
         x="58.251408"
         y="31.808577" />
    </g>
    <rect
       style="opacity:0.195644;fill:#000000;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
       id="rect2827"
       width="7.4583311"
       height="61.587906"
       x="47.724121"
       y="26.798815" />
    <rect
       style="opacity:0.195644;fill:#000000;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
       id="rect2829"
       width="7.3512397"
       height="61.724613"
       x="161.43401"
       y="26.690187" />
    <rect
       style="opacity:0.195644;fill:#000000;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
       id="rect2831"
       width="121.2337"
       height="22.824373"
       x="47.633518"
       y="88.566978" />
    <rect
       style="opacity:0.195644;fill:#000000;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
       id="rect2833"
       width="121.20582"
       height="8.0138454"
       x="47.77354"
       y="18.34436" />
    <rect
       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.8;stroke-dasharray:3.2, 0.8;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill"
       id="rect3461"
       width="84.249771"
       height="41.517296"
       x="66.555992"
       y="36.749054" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.865;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.73, 0.865;stroke-dashoffset:0;stroke-opacity:1"
       d="M 149.57761,77.267496 301.74652,88.379163"
       id="path4533-3-7"
       sodipodi:nodetypes="cc" />
    <g
       id="g4698"
       transform="translate(55.540721,9.7505553)">
      <g
         id="g1052-9-9-7"
         transform="translate(174.2039,11.30255)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-31-5-4"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-9-0-99"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-4-4-4"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-78-8-5"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-6-1"
         transform="translate(121.02732,11.367907)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-937-0"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-4-7"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-5-5"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-25-8"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-2-4-7"
         transform="translate(110.43348,11.457714)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-9-7-0"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-1-4-4"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-2-4-8"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-7-3-0"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-0-0-4"
         transform="translate(142.33462,11.336526)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-93-7-2"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-6-8-9"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-0-6-6"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-6-8-1"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-26-8-0"
         transform="translate(131.6518,11.339048)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-1-4-4"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-8-3-2"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-7-1-2"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-9-4-2"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-20-9-0"
         transform="translate(163.61466,11.246874)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-2-2-5"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-3-0-5"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-75-6-2"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-92-8-9"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-28-9-0"
         transform="translate(152.90749,11.301533)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-97-2-2"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-36-6-8"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-1-6-3"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-2-4-8"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-22-0"
         transform="translate(121.05875,21.910393)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-6-4"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-10-0"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-6-9"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-1-1"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-2-5-9"
         transform="translate(110.46491,22.0002)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-9-9-6"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-1-49-2"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-2-0-5"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-7-9-4"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-26-9-0"
         transform="translate(131.68323,21.881534)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-1-7-5"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-8-7-0"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-7-6-2"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-9-7-9"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-0-1-4"
         transform="translate(142.36605,21.879012)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-93-77-9"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-6-1-9"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-0-1-3"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-6-5-6"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-20-3-4"
         transform="translate(163.64609,21.78936)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-2-6-3"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-3-5-5"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-75-63-1"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-92-9-7"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-28-4-4"
         transform="translate(152.93892,21.844019)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-97-8-3"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-36-1-1"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-1-2-4"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-2-9-6"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-9-3-9"
         transform="translate(174.29048,21.780069)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-31-9-4"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-9-08-22"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-4-8-6"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-78-5-4"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-5-1"
         transform="translate(121.09524,32.284674)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-61-2"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-15-8"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-9-8"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-8-9"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-2-48-2"
         transform="translate(110.5014,32.374481)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-9-1-8"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-1-0-8"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-2-3-8"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-7-0-6"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-0-4-8"
         transform="translate(142.40254,32.253293)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-93-4-3"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-6-4-8"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-0-4-3"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-6-7-3"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-26-6-3"
         transform="translate(131.71972,32.255815)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-1-3-8"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-8-1-0"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-7-7-4"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-9-5-7"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-20-96-6"
         transform="translate(163.68258,32.163641)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-2-21-8"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-3-7-9"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-75-8-0"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-92-5-6"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-28-7-8"
         transform="translate(152.97541,32.2183)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-97-4-7"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-36-18-9"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-1-5-0"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-2-97-3"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-9-5-3"
         transform="translate(174.32696,32.15435)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-31-3-3"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-9-8-7"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-4-83-3"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-78-1-2"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-8-6"
         transform="translate(121.07998,42.102698)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-60-5"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-48-2"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-8-6"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-89-5"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-2-7-8"
         transform="translate(110.48614,42.192505)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-9-76-79"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-1-43-6"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-2-03-0"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-7-09-4"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-0-2-1"
         transform="translate(142.38729,42.071317)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-93-5-0"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-6-40-4"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-0-5-8"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-6-9-7"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-26-4-0"
         transform="translate(131.70446,42.073839)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-1-6-8"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-8-9-6"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-7-2-2"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-9-2-4"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-20-4-7"
         transform="translate(163.66733,41.981665)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-2-7-9"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-3-75-3"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-75-4-9"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-92-81-2"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-28-2-8"
         transform="translate(152.96015,42.036324)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-97-89-3"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-36-3-0"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-1-68-1"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-2-0-7"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-9-2-8"
         transform="translate(174.31171,41.972374)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-31-1-9"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-9-05-15"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-4-1-4"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-78-10-92"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-9-9-7-5"
         transform="translate(184.38619,11.471979)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-31-5-4-0"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-9-0-99-9"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-4-4-4-0"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-78-8-5-40"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-9-3-9-1"
         transform="translate(184.47277,21.949498)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-31-9-4-3"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-9-08-22-7"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-4-8-6-4"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-78-5-4-1"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-9-5-3-1"
         transform="translate(184.50925,32.323779)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-31-3-3-3"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-9-8-7-0"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-4-83-3-32"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-78-1-2-1"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-9-2-8-7"
         transform="translate(184.494,42.141803)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-31-1-9-5"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-9-05-15-6"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-4-1-4-5"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-78-10-92-4"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
    </g>
    <g
       id="g4698-2"
       transform="translate(103.99571,147.10736)">
      <g
         id="g1052-9-9-7-2"
         transform="translate(126.23318,-40.652773)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-31-5-4-7"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-9-0-99-0"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-4-4-4-3"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-78-8-5-4"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-6-1-6"
         transform="translate(72.684847,-40.246111)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-937-0-3"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-4-7-6"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-5-5-3"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-25-8-3"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-2-4-7-44"
         transform="translate(62.091007,-40.156304)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-9-7-0-3"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-1-4-4-9"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-2-4-8-7"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-7-3-0-2"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-0-0-4-5"
         transform="translate(93.992147,-40.277492)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-93-7-2-8"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-6-8-9-9"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-0-6-6-0"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-6-8-1-2"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-26-8-0-4"
         transform="translate(83.309327,-40.27497)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-1-4-4-7"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-8-3-2-6"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-7-1-2-5"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-9-4-2-7"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-20-9-0-1"
         transform="translate(115.27219,-40.367144)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-2-2-5-3"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-3-0-5-3"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-75-6-2-3"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-92-8-9-8"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-28-9-0-5"
         transform="translate(104.56502,-40.312485)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-97-2-2-1"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-36-6-8-0"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-1-6-3-8"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-2-4-8-7"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-22-0-6"
         transform="translate(72.716277,-29.703625)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-6-4-3"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-10-0-5"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-6-9-0"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-1-1-8"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-2-5-9-0"
         transform="translate(62.122437,-29.613818)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-9-9-6-4"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-1-49-2-1"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-2-0-5-1"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-7-9-4-3"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-26-9-0-5"
         transform="translate(83.340757,-29.732484)"
         style="opacity:0.252344">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-1-7-5-9"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-8-7-0-3"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-7-6-2-4"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-9-7-9-1"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-0-1-4-5"
         transform="translate(94.023577,-29.735006)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-93-77-9-0"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-6-1-9-8"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-0-1-3-3"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-6-5-6-5"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-20-3-4-6"
         transform="translate(115.30362,-29.824658)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-2-6-3-5"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-3-5-5-9"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-75-63-1-9"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-92-9-7-0"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-28-4-4-7"
         transform="translate(104.59645,-29.769999)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-97-8-3-6"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-36-1-1-3"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-1-2-4-7"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-2-9-6-6"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-5-1-0"
         transform="translate(72.752767,-19.329344)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-61-2-8"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-15-8-1"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-9-8-2"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-8-9-2"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-2-48-2-6"
         transform="translate(62.158927,-19.239537)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-9-1-8-9"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-1-0-8-1"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-2-3-8-0"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-7-0-6-4"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-0-4-8-2"
         transform="translate(94.060067,-19.360725)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-93-4-3-7"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-6-4-8-4"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-0-4-3-0"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-6-7-3-3"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-26-6-3-2"
         transform="translate(83.377247,-19.358203)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-1-3-8-8"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-8-1-0-0"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-7-7-4-3"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-9-5-7-7"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-20-96-6-0"
         transform="translate(115.34011,-19.450377)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-2-21-8-0"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-3-7-9-3"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-75-8-0-4"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-92-5-6-9"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-28-7-8-2"
         transform="translate(104.63294,-19.395718)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-97-4-7-7"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-36-18-9-4"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-1-5-0-2"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-2-97-3-5"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-9-5-3-2"
         transform="translate(125.98449,-19.459668)">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-31-3-3-4"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-9-8-7-4"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-4-83-3-3"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-78-1-2-8"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-8-6-6"
         transform="translate(72.737507,-9.5113204)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-60-5-0"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-48-2-8"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-8-6-9"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-89-5-2"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-2-7-8-2"
         transform="translate(62.143667,-9.4215134)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-9-76-79-3"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-1-43-6-1"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-2-03-0-8"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-7-09-4-3"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-0-2-1-4"
         transform="translate(94.044817,-9.5427014)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-93-5-0-2"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-6-40-4-2"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-0-5-8-4"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-6-9-7-5"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-26-4-0-1"
         transform="translate(83.361987,-9.5401794)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-1-6-8-7"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-8-9-6-5"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-7-2-2-7"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-9-2-4-1"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-20-4-7-6"
         transform="translate(115.32486,-9.6323534)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-2-7-9-9"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-3-75-3-8"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-75-4-9-1"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-92-81-2-3"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-20-9-0-1-2"
         transform="translate(136.83954,-40.658221)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-2-2-5-3-1"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-3-0-5-3-9"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-75-6-2-3-9"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-92-8-9-8-6"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-20-3-4-6-0"
         transform="translate(136.87097,-30.115735)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-2-6-3-5-6"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-3-5-5-9-4"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-75-63-1-9-9"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-92-9-7-0-9"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-20-3-4-6-0-7"
         transform="translate(126.24242,-30.173373)"
         style="opacity:0.252344">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-2-6-3-5-6-3"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-3-5-5-9-4-7"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-75-63-1-9-9-1"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-92-9-7-0-9-2"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-20-96-6-0-0"
         transform="translate(136.90746,-19.741454)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-2-21-8-0-8"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-3-7-9-3-9"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-75-8-0-4-3"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-92-5-6-9-1"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-20-4-7-6-4"
         transform="translate(136.89221,-9.9234312)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-2-7-9-9-8"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-3-75-3-8-9"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-75-4-9-1-6"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-92-81-2-3-7"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-28-2-8-3"
         transform="translate(104.61768,-9.5776944)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-97-89-3-3"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-36-3-0-7"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-1-68-1-9"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-2-0-7-8"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-9-2-8-6"
         transform="translate(125.96924,-9.6416444)"
         style="opacity:0.15">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-31-1-9-7"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-9-05-15-0"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-4-1-4-4"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-78-10-92-8"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#040000;stroke-width:0.865;stroke-dasharray:3.46, 0.865;stroke-dashoffset:0;paint-order:markers stroke fill"
         id="rect6693"
         width="21.177956"
         height="20.838879"
         x="115.31686"
         y="-14.213038" />
      <rect
         style="fill:none;fill-opacity:1;stroke:#040000;stroke-width:0.865;stroke-dasharray:3.46, 0.865;stroke-dashoffset:0;paint-order:markers stroke fill"
         id="rect6693-4"
         width="21.177956"
         height="20.838879"
         x="115.17234"
         y="6.6754951" />
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#040000;stroke-width:0.865;stroke-dasharray:3.46, 0.865;stroke-dashoffset:0;paint-order:markers stroke fill"
         id="rect6693-8"
         width="21.177956"
         height="20.838879"
         x="136.78856"
         y="-14.086202" />
      <rect
         style="fill:none;fill-opacity:1;stroke:#040000;stroke-width:0.865;stroke-dasharray:3.46, 0.865;stroke-dashoffset:0;paint-order:markers stroke fill"
         id="rect6693-1"
         width="21.177956"
         height="20.838879"
         x="136.99756"
         y="6.4101439" />
      <rect
         style="fill:none;fill-opacity:1;stroke:#040000;stroke-width:0.865;stroke-dasharray:3.46, 0.865;stroke-dashoffset:0;paint-order:markers stroke fill"
         id="rect6693-6"
         width="21.177956"
         height="20.838879"
         x="158.1272"
         y="-14.220315" />
      <rect
         style="fill:none;fill-opacity:1;stroke:#040000;stroke-width:0.865;stroke-dasharray:3.46, 0.865;stroke-dashoffset:0;paint-order:markers stroke fill"
         id="rect6693-85"
         width="21.177956"
         height="20.838879"
         x="158.17397"
         y="6.7189174" />
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#040000;stroke-width:0.865;stroke-dasharray:3.46, 0.865;stroke-dashoffset:0;paint-order:markers stroke fill"
         id="rect6693-6-2"
         width="21.177956"
         height="20.838879"
         x="179.34555"
         y="-14.454299" />
      <rect
         style="fill:none;fill-opacity:1;stroke:#040000;stroke-width:0.865;stroke-dasharray:3.46, 0.865;stroke-dashoffset:0;paint-order:markers stroke fill"
         id="rect6693-85-1"
         width="21.177956"
         height="20.838879"
         x="179.64828"
         y="6.1961193" />
    </g>
    <path
       style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.865;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.73, 0.865;stroke-dashoffset:0;stroke-opacity:1"
       d="M 66.659356,36.818342 218.82541,47.962052"
       id="path4533"
       sodipodi:nodetypes="cc" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.865;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.73, 0.865;stroke-dashoffset:0;stroke-opacity:1"
       d="M 150.73309,36.200165 302.902,47.311832"
       id="path4533-3"
       sodipodi:nodetypes="cc" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.865;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:1.73, 0.865;stroke-dashoffset:0;stroke-opacity:1"
       d="M 67.986904,77.950336 220.15295,89.094046"
       id="path4533-7"
       sodipodi:nodetypes="cc" />
    <g
       id="g1">
      <g
         id="g1052-9-9-7-0-7"
         transform="translate(108.68336,116.60508)"
         style="opacity:0.300974">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-31-5-4-8-1"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-9-0-99-1-1"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-4-4-4-9-1"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-78-8-5-9-7"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-2-4-7-4-0"
         transform="translate(77.180174,116.39954)"
         style="opacity:0.300974">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-9-7-0-9-4"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-1-4-4-0-0"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-2-4-8-2-8"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-7-3-0-0-5"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-26-8-0-2-1"
         transform="translate(87.639831,116.58827)"
         style="opacity:1">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-1-4-4-0-6"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-8-3-2-7-6"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-7-1-2-3-2"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-9-4-2-1-1"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-28-9-0-7-9"
         transform="translate(98.042911,116.4909)"
         style="opacity:1">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-97-2-2-7-6"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-36-6-8-4-4"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-1-6-3-0-8"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-2-4-8-6-0"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-9-9-7-0-7-6"
         transform="translate(108.66488,126.92391)"
         style="opacity:0.300974">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-31-5-4-8-1-0"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-9-0-99-1-1-8"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-4-4-4-9-1-5"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-78-8-5-9-7-3"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-2-4-7-4-0-9"
         transform="translate(77.161698,126.71837)"
         style="opacity:0.300974">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-9-7-0-9-4-4"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-1-4-4-0-0-1"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-2-4-8-2-8-5"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-7-3-0-0-5-4"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-26-8-0-2-1-1"
         transform="translate(87.741912,126.78654)"
         style="opacity:1">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-1-4-4-0-6-5"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-8-3-2-7-6-5"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-7-1-2-3-2-4"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-9-4-2-1-1-9"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-28-9-0-7-9-8"
         transform="translate(98.024435,126.80973)"
         style="opacity:1">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-97-2-2-7-6-3"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-5-36-6-8-4-4-8"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-3-1-6-3-0-8-5"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.370417;paint-order:markers stroke fill"
           id="rect288-56-2-4-8-6-0-2"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <rect
         style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.8;stroke-dasharray:3.2, 0.8;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers stroke fill"
         id="rect7388"
         width="20.576803"
         height="20.307524"
         x="140.76538"
         y="143.06564" />
    </g>
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleStart)"
       d="m 261.72591,93.236032 0.16234,31.497498"
       id="path9137"
       sodipodi:nodetypes="cc" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleStart-3)"
       d="m 67.685641,168.64157 0.16234,16.82752"
       id="path9137-7"
       sodipodi:nodetypes="cc" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker9374)"
       d="m 212.12608,153.9478 c -0.39202,0.18905 -3.47785,0.26026 -7.09894,0.25872 -8.60075,-0.004 -21.95111,-0.0141 -21.95111,-0.0141"
       id="path9370"
       sodipodi:nodetypes="csc" />
    <text
       xml:space="preserve"
       style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="85.59259"
       y="13.192001"
       id="text9717"><tspan
         sodipodi:role="line"
         id="tspan9715"
         style="stroke-width:0.264583px"
         x="85.59259"
         y="13.192001">Pixel array</tspan></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="230.03058"
       y="35.165924"
       id="text9717-7"><tspan
         sodipodi:role="line"
         id="tspan9715-6"
         style="stroke-width:0.264583px"
         x="230.03058"
         y="35.165924">Analog crop</tspan></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="231.88487"
       y="190.28648"
       id="text9717-7-9"><tspan
         sodipodi:role="line"
         id="tspan9715-6-1"
         style="stroke-width:0.264583px"
         x="231.88487"
         y="190.28648">Subsampling</tspan></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="125.35484"
       y="177.69405"
       id="text9717-7-9-1"><tspan
         sodipodi:role="line"
         id="tspan9715-6-1-9"
         style="stroke-width:0.264583px"
         x="125.35484"
         y="177.69405">Digital crop</tspan><tspan
         sodipodi:role="line"
         style="stroke-width:0.264583px"
         x="125.35484"
         y="190.92317"
         id="tspan9850" /></text>
    <text
       xml:space="preserve"
       style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="43.724319"
       y="202.93666"
       id="text9717-7-9-1-5"><tspan
         sodipodi:role="line"
         id="tspan9715-6-1-9-3"
         style="stroke-width:0.264583px"
         x="43.724319"
         y="202.93666">Media Bus</tspan><tspan
         sodipodi:role="line"
         style="stroke-width:0.264583px"
         x="43.724319"
         y="216.16579"
         id="tspan9850-5" /></text>
    <g
       id="g2132"
       transform="matrix(1.3821489,0,0,1.4039825,12.968023,-62.501729)"
       style="stroke-width:0.717863">
      <g
         id="g1052-9-9-7-0-7-7"
         transform="translate(-3.2072982,115.91871)"
         style="opacity:0.300974;stroke-width:0.717863" />
      <g
         id="g1052-26-8-0-2-1-3"
         transform="matrix(0.67497349,0,0,0.67524564,-2.9671558,128.89065)"
         style="stroke-width:1.06333">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-1-4-4-0-6-6"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-5-8-3-2-7-6-0"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-3-7-1-2-3-2-62"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-56-9-4-2-1-1-6"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-28-9-0-7-9-1"
         transform="matrix(0.67497349,0,0,0.67524564,4.0546474,128.8249)"
         style="stroke-width:1.06333">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-97-2-2-7-6-8"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-5-36-6-8-4-4-7"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-3-1-6-3-0-8-9"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-56-2-4-8-6-0-20"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-26-8-0-2-1-1-3"
         transform="matrix(0.67497349,0,0,0.67524564,-2.8982539,135.77698)"
         style="stroke-width:1.06333">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-1-4-4-0-6-5-6"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-5-8-3-2-7-6-5-1"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-3-7-1-2-3-2-4-2"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-56-9-4-2-1-1-9-9"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
      <g
         id="g1052-28-9-0-7-9-8-3"
         transform="matrix(0.67497349,0,0,0.67524564,4.0421766,135.79264)"
         style="stroke-width:1.06333">
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-97-2-2-7-6-3-1"
           width="5.1440187"
           height="5.0140224"
           x="53.024174"
           y="26.5942" />
        <rect
           style="fill:#0100ff;fill-opacity:1;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-5-36-6-8-4-4-8-9"
           width="5.1440187"
           height="5.0140224"
           x="58.23954"
           y="26.556028" />
        <rect
           style="fill:#ff000a;fill-opacity:1;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-3-1-6-3-0-8-5-4"
           width="5.1440187"
           height="5.0140224"
           x="53.028545"
           y="31.858822" />
        <rect
           style="fill:#00ff00;stroke:#040000;stroke-width:0.393875;paint-order:markers stroke fill"
           id="rect288-56-2-4-8-6-0-2-7"
           width="5.1440187"
           height="5.0140224"
           x="58.251408"
           y="31.808577" />
      </g>
    </g>
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker9374-3)"
       d="m 123.82202,153.26143 c -0.39202,0.18905 -3.47785,0.26026 -7.09894,0.25872 -8.60075,-0.004 -21.951106,-0.0141 -21.951106,-0.0141"
       id="path9370-4"
       sodipodi:nodetypes="csc" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="m 42.161302,205.87857 50.15057,-0.10808"
       id="path1" />
    <path
       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="m 43.410067,193.21441 50.15057,-0.10808"
       id="path1-6" />
    <ellipse
       style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-dasharray:none;paint-order:markers stroke fill"
       id="path2"
       cx="263.63913"
       cy="17.331734"
       rx="8.0464878"
       ry="7.6880746" />
    <text
       xml:space="preserve"
       style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="261.26318"
       y="21.157597"
       id="text2"><tspan
         sodipodi:role="line"
         id="tspan2"
         style="stroke-width:0.264583px"
         x="261.26318"
         y="21.157597">1</tspan></text>
    <ellipse
       style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-dasharray:none;paint-order:markers stroke fill"
       id="path2-7"
       cx="264.95981"
       cy="200.2849"
       rx="8.0464878"
       ry="7.6880746" />
    <text
       xml:space="preserve"
       style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="262.07587"
       y="204.11606"
       id="text2-0"><tspan
         sodipodi:role="line"
         id="tspan2-9"
         style="stroke-width:0.264583px"
         x="262.07587"
         y="204.11606">2</tspan></text>
    <ellipse
       style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-dasharray:none;paint-order:markers stroke fill"
       id="path2-6"
       cx="44.883369"
       cy="177.41577"
       rx="8.0464878"
       ry="7.6880746" />
    <text
       xml:space="preserve"
       style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="41.983547"
       y="181.24164"
       id="text2-2"><tspan
         sodipodi:role="line"
         id="tspan2-6"
         style="stroke-width:0.264583px"
         x="41.983547"
         y="181.24164">4</tspan></text>
    <ellipse
       style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-dasharray:none;paint-order:markers stroke fill"
       id="path2-3"
       cx="153.0576"
       cy="191.86786"
       rx="8.0464878"
       ry="7.6880746" />
    <text
       xml:space="preserve"
       style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       x="150.21071"
       y="195.57201"
       id="text2-6"><tspan
         sodipodi:role="line"
         id="tspan2-0"
         style="stroke-width:0.264583px"
         x="150.21071"
         y="195.57201">3</tspan></text>
  </g>
</svg>