Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot//simgrid/simgrid
authorMarion Guthmuller <marion.guthmuller@loria.fr>
Fri, 30 Mar 2012 11:59:35 +0000 (13:59 +0200)
committerMarion Guthmuller <marion.guthmuller@loria.fr>
Fri, 30 Mar 2012 11:59:35 +0000 (13:59 +0200)
83 files changed:
ChangeLog
buildtools/Cmake/AddTests.cmake
buildtools/Cmake/DefinePackages.cmake
buildtools/Cmake/Distrib.cmake
buildtools/Cmake/Flags.cmake
buildtools/Cmake/GenerateDoc.cmake
buildtools/Cmake/Option.cmake
buildtools/Cmake/gras_config.h.in
buildtools/Cmake/simgrid.nsi.in
doc/AS_hierarchy.png [new file with mode: 0644]
doc/Doxyfile.in
doc/FAQ.doc
doc/HelloWorld/FindPcreWin.cmake
doc/install.doc
doc/module-msg.doc
doc/platform.doc [new file with mode: 0644]
doc/webcruft/win_install_01.png
doc/webcruft/win_install_02.png
doc/webcruft/win_install_03.png
doc/webcruft/win_install_04.png
doc/webcruft/win_install_05.png [new file with mode: 0644]
doc/webcruft/win_install_06.png [new file with mode: 0644]
examples/msg/chord/chord.tesh
examples/msg/chord/chord_crosstraffic.tesh
examples/msg/ns3/One_cluster.xml [deleted file]
examples/msg/ns3/Two_clusters.xml [deleted file]
examples/msg/ns3/ns3.tesh
examples/platforms/Two_clusters.xml [deleted file]
examples/platforms/cluster.xml [moved from examples/platforms/One_cluster.xml with 100% similarity]
examples/platforms/cluster_and_one_host.xml [moved from examples/platforms/One_cluster_one_host.xml with 94% similarity]
examples/platforms/cluster_no_backbone.xml [moved from examples/platforms/One_cluster_no_backbone.xml with 100% similarity]
examples/platforms/cluster_routing_rulebased.xml [moved from examples/platforms/gdx.xml with 100% similarity]
examples/platforms/clusters_routing_full.xml [new file with mode: 0644]
examples/platforms/config.xml [moved from examples/platforms/tag_config.xml with 100% similarity]
examples/platforms/content/storage_content.txt [moved from examples/platforms/storage_content.txt with 100% similarity]
examples/platforms/g5k.xml
examples/platforms/g5k_cabinets.xml [deleted file]
examples/platforms/nancy.xml [deleted file]
examples/platforms/storage.xml
include/msg/datatypes.h
include/xbt/log.h
include/xbt/misc.h
src/bindings/bindings_global.c [new file with mode: 0644]
src/gras/Msg/rl_msg.c
src/gras/Virtu/sg_process.c
src/gras/gras.c
src/gras/rl_stubs.c
src/include/surf/maxmin.h
src/instr/jedule/jedule_sd_binding.c
src/mc/mc_global.c
src/msg/msg_global.c
src/msg/msg_gos.c
src/simdag/sd_global.c
src/simix/smx_global.c
src/smpi/smpi_base.c
src/smpi/smpi_global.c
src/surf/maxmin.c
src/surf/network.c
src/surf/simgrid.dtd
src/surf/simgrid_dtd.c
src/surf/surf.c
src/surf/surf_config.c
src/surf/surf_routing.c
src/surf/surf_routing_none.c
src/surf/surfxml_parse.c
src/xbt/config.c
src/xbt/datadesc/ddt_create.c
src/xbt/dict.c
src/xbt/dict_cursor.c
src/xbt/dict_elm.c
src/xbt/dynar.c
src/xbt/graph.c
src/xbt/log.c
src/xbt/xbt_main.c
src/xbt/xbt_sha.c
src/xbt/xbt_synchro.c
teshsuite/simdag/platforms/Evaluate_get_route_time.c
teshsuite/simdag/platforms/platform_include.xml
tools/doxygen/doxygen_postprocesser.pl
tools/doxygen/xbt_log_extract_hierarchy.pl
tools/graphicator/graphicator.c
tools/gras/stub_generator.c
tools/tesh/tesh.c

index a618f73..1c1e96f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -38,7 +38,7 @@ SimGrid (3.7) NOT RELEASED; urgency=low
 
   MSG:
   * Deprecate the use of m_channel_t mecanism like MSG_task_{get,put}
-    functions and friends. This interface was considered as 
+    functions and friends. This interface was considered as
     deprecated since over 2 years, it's time to inform our users that it is.
     Switch to MSG_task_{send,recv} instead, or compile Simgrid command line
     'cmake -Dcustom_flags="-DMSG_USE_DEPRECATED" .' if you really need to
@@ -94,6 +94,12 @@ SimGrid (3.7) NOT RELEASED; urgency=low
   * Add a Chord example in Lua, equivalent to the MSG one.
 
   XBT:
+  * Logs:
+    - Add new runtime parameters --help-logs and --help-log-categories
+      to display informations about supported logging parameters and
+      categories.
+    - Old deprecated parameters --{gras,surf,msg.simix,xbt}-log=...
+      don't exists anymore.
   * Mallocators: allow value NULL for the reset function.
   * Dicts:
     - New function xbt_dict_new_homogeneous(void(*)(void*)) to
index 4ef863a..7737a2e 100644 (file)
@@ -382,9 +382,9 @@ endif(HAVE_RAWCTX)
 endif(HAVE_GTNETS)
 
 if(HAVE_NS3)
-ADD_TEST(msg-ns3-thread            ${CMAKE_BINARY_DIR}/bin/tesh ${TESH_OPTION} --cfg contexts/factory:thread           --setenv srcdir=${CMAKE_HOME_DIRECTORY}/examples/msg    --cd ${CMAKE_BINARY_DIR}/examples/msg ${CMAKE_HOME_DIRECTORY}/examples/msg/ns3/ns3.tesh)
-ADD_TEST(msg-ns3-ucontext      ${CMAKE_BINARY_DIR}/bin/tesh ${TESH_OPTION}     --cfg contexts/factory:ucontext         --setenv srcdir=${CMAKE_HOME_DIRECTORY}/examples/msg    --cd ${CMAKE_BINARY_DIR}/examples/msg ${CMAKE_HOME_DIRECTORY}/examples/msg/ns3/ns3.tesh)
-ADD_TEST(msg-ns3-raw        ${CMAKE_BINARY_DIR}/bin/tesh ${TESH_OPTION}        --cfg contexts/factory:raw              --setenv srcdir=${CMAKE_HOME_DIRECTORY}/examples/msg    --cd ${CMAKE_BINARY_DIR}/examples/msg ${CMAKE_HOME_DIRECTORY}/examples/msg/ns3/ns3.tesh)
+ADD_TEST(msg-ns3-thread            ${CMAKE_BINARY_DIR}/bin/tesh ${TESH_OPTION} --cfg contexts/factory:thread           --setenv srcdir=${CMAKE_HOME_DIRECTORY} --cd ${CMAKE_BINARY_DIR}/examples/msg ${CMAKE_HOME_DIRECTORY}/examples/msg/ns3/ns3.tesh)
+ADD_TEST(msg-ns3-ucontext      ${CMAKE_BINARY_DIR}/bin/tesh ${TESH_OPTION}     --cfg contexts/factory:ucontext         --setenv srcdir=${CMAKE_HOME_DIRECTORY} --cd ${CMAKE_BINARY_DIR}/examples/msg ${CMAKE_HOME_DIRECTORY}/examples/msg/ns3/ns3.tesh)
+ADD_TEST(msg-ns3-raw        ${CMAKE_BINARY_DIR}/bin/tesh ${TESH_OPTION}        --cfg contexts/factory:raw              --setenv srcdir=${CMAKE_HOME_DIRECTORY} --cd ${CMAKE_BINARY_DIR}/examples/msg ${CMAKE_HOME_DIRECTORY}/examples/msg/ns3/ns3.tesh)
 endif(HAVE_NS3)
 
 IF(HAVE_TRACING)
index c93a7fc..816e0f7 100644 (file)
@@ -330,6 +330,10 @@ set(AMOK_SRC
        src/amok/PeerManagement/peermanagement.c
 )
 
+set(BINDINGS_SRC
+       src/bindings/bindings_global.c
+)
+
 set(LUA_SRC
        src/bindings/lua/simgrid_lua.c
        src/bindings/lua/lua_task.c
@@ -513,6 +517,7 @@ set(simgrid_sources
        ${GRAS_COMMON_SRC}
        ${GRAS_SG_SRC}
        ${AMOK_SRC}
+       ${BINDINGS_SRC}
        ${JEDULE_SRC}
        ${RNGSTREAM_SRC}
 )
index 58c37f4..c7a3285 100644 (file)
@@ -338,7 +338,8 @@ WORKING_DIRECTORY "${CMAKE_HOME_DIRECTORY}"
 add_dependencies(sync-gforge-doc simgrid_documentation)
 
 add_custom_target(sync-gforge-dtd
-COMMAND scp src/surf/simgrid.dtd scm.gforge.inria.fr:/home/groups/simgrid/htdocs/${release_version}/
+COMMAND scp src/surf/simgrid.dtd scm.gforge.inria.fr:/home/groups/simgrid/htdocs/simgrid/${release_version}/simgrid.dtd
+COMMAND scp src/surf/simgrid.dtd scm.gforge.inria.fr:/home/groups/simgrid/htdocs/simgrid.dtd
 WORKING_DIRECTORY "${CMAKE_HOME_DIRECTORY}"
 )
 
index a87ec9e..b5dcd80 100644 (file)
@@ -33,9 +33,13 @@ if(APPLE AND COMPILER_C_VERSION_MAJOR_MINOR MATCHES "4.6")
 endif(APPLE AND COMPILER_C_VERSION_MAJOR_MINOR MATCHES "4.6")
 
 if(NOT enable_debug)
-               set(CMAKE_C_FLAGS "-DNDEBUG ${CMAKE_C_FLAGS}")
+    set(CMAKE_C_FLAGS "-DNDEBUG ${CMAKE_C_FLAGS}")
 endif(NOT enable_debug)
 
+if(enable_msg_deprecated)
+    set(CMAKE_C_FLAGS "-DMSG_USE_DEPRECATED ${CMAKE_C_FLAGS}")
+endif(enable_msg_deprecated)
+
 set(CMAKE_C_FLAGS "${optCFLAGS}${warnCFLAGS}${CMAKE_C_FLAGS}")
 
 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${custom_flags}")
index df02d62..a828cac 100644 (file)
@@ -43,6 +43,8 @@ if(DOXYGEN_PATH AND FIG2DEV_PATH AND BIBTEX2HTML_PATH AND GOOD_BIBTEX2HTML_VERSI
                ${CMAKE_HOME_DIRECTORY}/doc/webcruft/win_install_02.png
                ${CMAKE_HOME_DIRECTORY}/doc/webcruft/win_install_03.png
                ${CMAKE_HOME_DIRECTORY}/doc/webcruft/win_install_04.png
+               ${CMAKE_HOME_DIRECTORY}/doc/webcruft/win_install_05.png
+               ${CMAKE_HOME_DIRECTORY}/doc/webcruft/win_install_06.png
        )
        
        configure_file(${CMAKE_HOME_DIRECTORY}/doc/Doxyfile.in ${CMAKE_HOME_DIRECTORY}/doc/Doxyfile @ONLY)
@@ -84,6 +86,7 @@ if(DOXYGEN_PATH AND FIG2DEV_PATH AND BIBTEX2HTML_PATH AND GOOD_BIBTEX2HTML_VERSI
                COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_HOME_DIRECTORY}/doc/webcruft/Paje_MSG_screenshot.jpg     ${CMAKE_HOME_DIRECTORY}/doc/html/
                COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_HOME_DIRECTORY}/doc/triva-graph_configuration.png        ${CMAKE_HOME_DIRECTORY}/doc/html/
                COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_HOME_DIRECTORY}/doc/triva-graph_visualization.png        ${CMAKE_HOME_DIRECTORY}/doc/html/
+               COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_HOME_DIRECTORY}/doc/AS_hierarchy.png        ${CMAKE_HOME_DIRECTORY}/doc/html/          
                COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_HOME_DIRECTORY}/doc/simgrid.css                          ${CMAKE_HOME_DIRECTORY}/doc/html/
        )
        
@@ -91,7 +94,7 @@ if(DOXYGEN_PATH AND FIG2DEV_PATH AND BIBTEX2HTML_PATH AND GOOD_BIBTEX2HTML_VERSI
            COMMAND ${CMAKE_COMMAND} -E echo "XX First Doxygen pass"
                COMMAND ${DOXYGEN_PATH}/doxygen Doxyfile
                COMMAND ${CMAKE_HOME_DIRECTORY}/tools/doxygen/index_create.pl simgrid.tag index-API.doc
-               COMMAND ${CMAKE_HOME_DIRECTORY}/tools/doxygen/toc_create.pl pls.doc index.doc FAQ.doc gtut-introduction.doc install.doc bindings.doc options.doc tracing.doc
+               COMMAND ${CMAKE_HOME_DIRECTORY}/tools/doxygen/toc_create.pl pls.doc index.doc FAQ.doc gtut-introduction.doc install.doc bindings.doc options.doc tracing.doc platform.doc
                
                COMMAND ${CMAKE_COMMAND} -E echo "XX Second Doxygen pass"
                COMMAND ${DOXYGEN_PATH}/doxygen Doxyfile
index 8f883d6..6e64b98 100644 (file)
@@ -33,6 +33,7 @@ option(enable_lib_static "" off)
 option(enable_jedule "Jedule output of SimDAG." off)
 option(enable_debug "Turn this off to remove all debug messages at compile time (faster, but no debug activable)" on)
 option(enable_supernovae "Whether Supernovae mode (helping compiler optimization) is activated." on)
+option(enable_msg_deprecated "This option enable the use of msg deprecated functions" off)
 
 #if(enable_supernovae AND enable_model-checking)
 #      set(enable_model-checking OFF CACHE TYPE INTERNAL FORCE)
index 6899591..e637923 100644 (file)
@@ -56,6 +56,7 @@
 #cmakedefine HAVE_FUTEX_H @HAVE_FUTEX_H@
 
 /* Some variable for graphviz */
+#cmakedefine HAVE_GRAPHVIZ @HAVE_GRAPHVIZ@
 #cmakedefine HAVE_GRAPH_H @GRAPH_H@
 #cmakedefine HAVE_CGRAPH_H @CGRAPH_H@
 #cmakedefine HAVE_AGRAPH_H @AGRAPH_H@
index 0e36ce0..a5c4f84 100644 (file)
@@ -27,7 +27,7 @@
 ;--------------------------------\r
 \r
 Name "Simgrid"\r
-outFile "SimGrid@SIMGRID_VERSION_MAJOR@.@SIMGRID_VERSION_MINOR@.@SIMGRID_VERSION_PATCH@_@NSIS_WIN_VERSION@@BIN_EXE@"\r
+outFile "SimGrid@SIMGRID_VERSION_MAJOR@.@SIMGRID_VERSION_MINOR@.@SIMGRID_VERSION_PATCH@_SGjava_@NSIS_WIN_VERSION@@BIN_EXE@"\r
 Icon "@CMAKE_HOME_DIRECTORY@\doc\webcruft\SimGrid.ico"\r
 \r
 RequestExecutionLevel admin\r
@@ -223,6 +223,8 @@ Section "Java Bindings" JavaSection
        file /r "$%SIMGRID_JAVA_SRC%\examples\"\r
        # create shortcuts in the start menu programs directory\r
        createShortCut  "$SMPROGRAMS\SimGrid @SIMGRID_VERSION_MAJOR@.@SIMGRID_VERSION_MINOR@.@SIMGRID_VERSION_PATCH@\Examples\Java project.lnk" "$INSTDIR\examples\simgrid-java"\r
+       # create a popup box, with an OK button"\r
+       messageBox MB_OK "WARNING! Please add to your environment variable CLASSPATH value '$INSTDIR\lib\simgrid.jar;.' before executing Simgrid classes."\r
 SectionEnd\r
 \r
 # default section start\r
@@ -248,6 +250,9 @@ section
        WriteRegStr HKCU "SOFTWARE\SimGrid" "Version" "@SIMGRID_VERSION_MAJOR@.@SIMGRID_VERSION_MINOR@.@SIMGRID_VERSION_PATCH@"\r
        WriteRegStr HKCU "SOFTWARE\SimGrid" "InstallPath" "$INSTDIR"\r
        \r
+       # create a popup box, with an OK button"\r
+       messageBox MB_OK "WARNING! Please add to your environment variable PATH value '$INSTDIR\lib;$INSTDIR\GnuWin32\bin' before executing Simgrid binaries."\r
+       \r
        SetRebootFlag true\r
 \r
 # default section end\r
diff --git a/doc/AS_hierarchy.png b/doc/AS_hierarchy.png
new file mode 100644 (file)
index 0000000..a618a86
Binary files /dev/null and b/doc/AS_hierarchy.png differ
index 756f275..9fcc61a 100644 (file)
@@ -619,7 +619,8 @@ INPUT                  = index.doc \
                          bindings.doc \
                          options.doc \
                          tracing.doc \
-                         use.doc \
+                         platform.doc \
+                        use.doc \
                          pls.doc \
                          ./index-API.doc \
                          modules.doc \
@@ -1550,7 +1551,8 @@ PREDEFINED             = DOXYGEN \
                          DOXYGEN_SKIP_IT \
                          XBT_PUBLIC= \
                          XBT_INLINE= \
-                         HAVE_TRACING
+                         HAVE_TRACING \
+                         MSG_USE_DEPRECATED
 
 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
 # this tag can be used to specify a list of macro names that should be expanded.
index 42e6649..88f7afc 100644 (file)
@@ -356,7 +356,7 @@ of processes in your simulations.
      file, so I wrote a little script
      <tt>examples/gras/mutual_exclusion/simple_token/make_deployment.pl</tt>, which you may
      want to adapt to your case. You could also think about hijacking
-     the SURFXML parser (have look at \ref faq_flexml_bypassing).
+     the SURFXML parser (have look at \ref pf_flexml_bypassing).
    - The deployment file became quite big, so I had to do what is in
      the FAQ entry \ref faq_flexml_limit
    - Each UNIX98 context has its own stack entry. As debugging this is
@@ -461,19 +461,6 @@ annotate Tiers-generated topologies. This perl-script is in
 <tt>tools/platform_generation/</tt> directory of the SVN. Dinda et Al.
 released a very comparable tool, and called it GridG.
 
-\subsubsection faq_SURF_multicore Modeling multi-core resources 
-
-Since version 3.6 of simgrid we can specify the core number of a resource.
-To use this feature use tag 'host' with 'core' attribute. 
-\verbatim
-<?xml version='1.0'?>
-<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
-<platform version="3">
-    <AS  id="AS0"  routing="Full">
-        <host id="Tremblay" power="98095000" core="6"/>
-    </AS>
-</platform>
-\endverbatim
 
 The specified computing power will be available to up to 6 sequential
 tasks without sharing. If more tasks are placed on this host, the
@@ -482,188 +469,8 @@ tasks on the host, each will get half of the computing power. Please
 note that although sound, this model were never scientifically
 assessed. Please keep this fact in mind when using it.
 
-\subsubsection faq_SURF_dynamic Modeling dynamic resource availability 
-
-A nice feature of SimGrid is that it enables you to seamlessly have
-resources whose availability change over time. When you build a
-platform, you generally declare hosts like that:
-
-\verbatim
-  <host id="host A" power="100.00"/>
-\endverbatim 
-
-If you want the availability of "host A" to change over time, the only
-thing you have to do is change this definition like that:
-
-\verbatim
-  <host id="host A" power="100.00" availability_file="trace_A.txt" state_file="trace_A_failure.txt"/>
-\endverbatim
-
-For hosts, availability files are expressed in fraction of available
-power. Let's have a look at what "trace_A.txt" may look like:
-
-\verbatim
-PERIODICITY 1.0
-0.0 1.0
-11.0 0.5
-20.0 0.9
-\endverbatim
-
-At time 0, our host will deliver 100 flop/s. At time 11.0, it will
-deliver only 50 flop/s until time 20.0 where it will start
-delivering 90 flop/s. Last at time 21.0 (20.0 plus the periodicity
-1.0), we'll be back to the beginning and it will deliver 100 flop/s.
-
-Now let's look at the state file:
-\verbatim
-PERIODICITY 10.0
-1.0 -1.0
-2.0 1.0
-\endverbatim
-
-A negative value means "off" while a positive one means "on". At time
-1.0, the host is on. At time 1.0, it is turned off and at time 2.0, it
-is turned on again until time 12 (2.0 plus the periodicity 10.0). It
-will be turned on again at time 13.0 until time 23.0, and so on.
-
-Now, let's look how the same kind of thing can be done for network
-links. A usual declaration looks like:
-
-\verbatim
-  <link id="LinkA" bandwidth="10.0" latency="0.2"/>
-\endverbatim
-
-You have at your disposal the following options: bandwidth_file,
-latency_file and state_file. The only difference with hosts is that
-bandwidth_file and latency_file do not express fraction of available
-power but are expressed directly in bytes per seconds and seconds.
-
-\subsubsection faq_platform_multipath How to express multipath routing in platform files?
-
-It is unfortunately impossible to express the fact that there is more
-than one routing path between two given hosts. Let's consider the
-following platform file:
-
-\verbatim
-<route src="A" dst="B">
-   <link_ctn id="1"/>
-</route>
-<route src="B" dst="C">
-  <link_ctn id="2"/>
-</route>
-<route src="A" dst="C">
-  <link_ctn id="3"/>
-</route>
-\endverbatim
-
-Although it is perfectly valid, it does not mean that data traveling
-from A to C can either go directly (using link 3) or through B (using
-links 1 and 2). It simply means that the routing on the graph is not
-trivial, and that data do not following the shortest path in number of
-hops on this graph. Another way to say it is that there is no implicit
-in these routing descriptions. The system will only use the routes you
-declare (such as &lt;route src="A" dst="C"&gt;&lt;link_ctn
-id="3"/&gt;&lt;/route&gt;), without trying to build new routes by aggregating
-the provided ones.
-  
-You are also free to declare platform where the routing is not
-symmetric. For example, add the following to the previous file:
 
-\verbatim
-<route src="C" dst="A">
-  <link_ctn id="2"/>
-  <link_ctn id="1"/>
-</route>
-\endverbatim
 
-This makes sure that data from C to A go through B where data from A
-to C go directly. Don't worry about realism of such settings since
-we've seen ways more weird situation in real settings (in fact, that's
-the realism of very regular platforms which is questionable, but
-that's another story).
-
-\subsubsection faq_flexml_bypassing Bypassing the XML parser with your own C functions
-
-So you want to bypass the XML files parser, uh? Maybe doing some parameter
-sweep experiments on your simulations or so? This is possible, and
-it's not even really difficult (well. Such a brutal idea could be
-harder to implement). Here is how it goes.
-
-For this, you have to first remember that the XML parsing in SimGrid is done
-using a tool called FleXML. Given a DTD, this gives a flex-based parser. If
-you want to bypass the parser, you need to provide some code mimicking what
-it does and replacing it in its interactions with the SURF code. So, let's
-have a look at these interactions.
-
-FleXML parser are close to classical SAX parsers. It means that a
-well-formed SimGrid platform XML file might result in the following
-"events":
-
-  - start "platform_description" with attribute version="2"
-  - start "host" with attributes id="host1" power="1.0"
-  - end "host"
-  - start "host" with attributes id="host2" power="2.0"
-  - end "host"
-  - start "link" with ...
-  - end "link"
-  - start "route" with ...
-  - start "link_ctn" with ...
-  - end "link_ctn"
-  - end "route"
-  - end "platform_description"
-
-The communication from the parser to the SURF code uses two means:
-Attributes get copied into some global variables, and a surf-provided
-function gets called by the parser for each event. For example, the event
-  - start "host" with attributes id="host1" power="1.0"
-
-let the parser do something roughly equivalent to:
-\verbatim
-  strcpy(A_host_id,"host1");
-  A_host_power = 1.0;
-  STag_host();
-\endverbatim
-
-In SURF, we attach callbacks to the different events by initializing the
-pointer functions to some the right surf functions. Since there can be
-more than one callback attached to the same event (if more than one
-model is in use, for example), they are stored in a dynar. Example in
-workstation_ptask_L07.c:
-\verbatim
-  /* Adding callback functions */
-  surf_parse_reset_parser();
-  surfxml_add_callback(STag_surfxml_host_cb_list, &parse_cpu_init);
-  surfxml_add_callback(STag_surfxml_prop_cb_list, &parse_properties);
-  surfxml_add_callback(STag_surfxml_link_cb_list, &parse_link_init);
-  surfxml_add_callback(STag_surfxml_route_cb_list, &parse_route_set_endpoints);
-  surfxml_add_callback(ETag_surfxml_link_c_ctn_cb_list, &parse_route_elem);
-  surfxml_add_callback(ETag_surfxml_route_cb_list, &parse_route_set_route);
-                
-  /* Parse the file */
-  surf_parse_open(file);
-  xbt_assert(!surf_parse(), "Parse error in %s", file);
-  surf_parse_close();
-\endverbatim
-    
-So, to bypass the FleXML parser, you need to write your own version of the
-surf_parse function, which should do the following:
-   - Fill the A_<tag>_<attribute> variables with the wanted values
-   - Call the corresponding STag_<tag>_fun function to simulate tag start
-   - Call the corresponding ETag_<tag>_fun function to simulate tag end
-   - (do the same for the next set of values, and loop)
-
-Then, tell SimGrid that you want to use your own "parser" instead of the stock one:
-\verbatim
-  surf_parse = surf_parse_bypass_environment;
-  MSG_create_environment(NULL);
-  surf_parse = surf_parse_bypass_application;
-  MSG_launch_application(NULL);
-\endverbatim
-
-A set of macros are provided at the end of
-include/surf/surfxml_parse.h to ease the writing of the bypass
-functions. An example of this trick is distributed in the file
-examples/msg/masterslave/masterslave_bypass.c
 
 \section faq_troubleshooting Troubleshooting
 
@@ -714,6 +521,46 @@ of SimGrid -- see \ref faq_more_processes), you must absolutely
 specify <tt>-lpthread</tt> on the linker command line. As usual, this should
 come after <tt>-lsimgrid</tt> on this command line.
 
+\subsubsection faq_trouble_lib_msg_deprecated "gcc: undefined reference to MSG_*"
+
+Since version 3.7 all the #m_channel_t mecanism is deprecated. So functions 
+about this mecanism may get removed in future releases.
+
+List of functions:
+
+\li XBT_PUBLIC(int) MSG_get_host_number(void);
+
+\li XBT_PUBLIC(m_host_t *) MSG_get_host_table(void);
+
+\li XBT_PUBLIC(MSG_error_t) MSG_get_errno(void);
+
+\li XBT_PUBLIC(MSG_error_t) MSG_task_get(m_task_t * task, m_channel_t channel);
+
+\li XBT_PUBLIC(MSG_error_t) MSG_task_get_with_timeout(m_task_t * task, m_channel_t channel, double max_duration);
+
+\li XBT_PUBLIC(MSG_error_t) MSG_task_get_from_host(m_task_t * task, int channel, m_host_t host);
+
+\li XBT_PUBLIC(MSG_error_t) MSG_task_get_ext(m_task_t * task, int channel, double max_duration, m_host_t host);
+
+\li XBT_PUBLIC(MSG_error_t) MSG_task_put(m_task_t task, m_host_t dest, m_channel_t channel);
+
+\li XBT_PUBLIC(MSG_error_t) MSG_task_put_bounded(m_task_t task, m_host_t dest, m_channel_t channel, double max_rate);
+
+\li XBT_PUBLIC(MSG_error_t) MSG_task_put_with_timeout(m_task_t task, m_host_t dest, m_channel_t channel, double max_duration);
+
+\li XBT_PUBLIC(int) MSG_task_Iprobe(m_channel_t channel);
+
+\li XBT_PUBLIC(int) MSG_task_probe_from(m_channel_t channel);
+
+\li XBT_PUBLIC(int) MSG_task_probe_from_host(int channel, m_host_t host);
+
+\li XBT_PUBLIC(MSG_error_t) MSG_set_channel_number(int number);
+
+\li XBT_PUBLIC(int) MSG_get_channel_number(void);
+
+If you want them you have to compile Simgrid v3.7 with option "-Denable_msg_deprecated=ON".
+Using them should print warning to inform what new function you have to use.
+
 \subsection faq_trouble_errors Runtime error messages
 
 \subsubsection faq_flexml_limit "surf_parse_lex: Assertion `next limit' failed."
@@ -757,7 +604,7 @@ was done by William Dowling, who use it in his own work. The good point is
 that it now use a dynamic buffer, and that the memory usage was greatly
 improved. The downside is that William also changed some things internally,
 and it breaks the hack we devised to bypass the parser, as explained in 
-\ref faq_flexml_bypassing. Indeed, this is not a classical usage of the
+\ref pf_flexml_bypassing. Indeed, this is not a classical usage of the
 parser, and Will didn't imagine that we may have used (and even documented)
 such a crude usage of FleXML. So, we now have to repair the bypassing
 functionality to use the lastest FleXML version and fix the memory usage in
index f2e1ad3..226c0fe 100644 (file)
@@ -6,7 +6,7 @@ find_library(PATH_PCRE_LIB
     $ENV{PCRE_LIBRARY_PATH}
     PATH_SUFFIXES bin/ GnuWin32/bin
     )
-
+        
 find_path(PATH_PCRE_H "pcre.h"
     HINTS
     $ENV{SIMGRID_PCRE_LIBRARY_PATH}
@@ -33,7 +33,9 @@ if(PATH_PCRE_LIB AND PATH_PCRE_H)
           string(REGEX MATCH "-I${PATH_PCRE_H} " operation "${CMAKE_C_FLAGS}")
           if(NOT operation)
                        SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}-I${PATH_PCRE_H} ")
-          endif(NOT operation)    
+          endif(NOT operation)
+          string(REGEX REPLACE "/libpcre.dll" "" PATH_PCRE_LIB  "${PATH_PCRE_LIB}")
+       link_directories(${PATH_PCRE_LIB})   
 else(PATH_PCRE_LIB)
           message(FATAL_ERROR "Please install the pcre package before using SimGrid.")
 endif(PATH_PCRE_LIB AND PATH_PCRE_H)
index adc5f5f..b737c17 100644 (file)
@@ -37,6 +37,7 @@ For Windows :
 "cmake -D[name]=[value] ... ./"
 
 [name]         enable_gtnets           [value] ON/OFF or TRUE/FALSE or 1/0
+       enable_ns3                      ON/OFF or TRUE/FALSE or 1/0
        enable_lua                      ON/OFF or TRUE/FALSE or 1/0
        enable_compile_optimizations    ON/OFF or TRUE/FALSE or 1/0
        enable_compile_warnings         ON/OFF or TRUE/FALSE or 1/0
@@ -50,8 +51,12 @@ For Windows :
        enable_jedule                   ON/OFF or TRUE/FALSE or 1/0
        enable_latency_bound_tracking   ON/OFF or TRUE/FALSE or 1/0
        enable_lib_static               ON/OFF or TRUE/FALSE or 1/0
+       enable_supernovae               ON/OFF or TRUE/FALSE or 1/0
+       enable_msg_deprecated           ON/OFF or TRUE/FALSE or 1/0                                                                                                                                                                                                                                                                               
+       enable_print_message            ON/OFF or TRUE/FALSE or 1/0 
        custom_flags                    <flags>
        gtnets_path                     <path_to_gtnets_directory>
+       ns3_path                        <path_to_ns3_directory>
        CMAKE_INSTALL_PREFIX            <path_to_install_directory>
        CMAKE_C_COMPILER                <path_to_compiler>
        CMAKE_CXX_COMPILER              <path_to_compiler>
@@ -61,6 +66,8 @@ For Windows :
 \subsubsection install_cmakeoption2 Options explaination
 
   \li enable_gtnets : set to true implie that user wants to use gtnets.
+  
+  \li enable_ns3 : set to true implie that user wants to use ns3.
 
   \li enable_lua : set to true implie that user wants to add lua langage into simgrid compilation.
 
@@ -86,11 +93,19 @@ For Windows :
   
   \li enable_latency_bound_tracking : Set to on if you want to be warned when communications are limited by round trip time.
   
-  \li enable_lib_static : Enable generated Simgrid and smpi static libraries.  
+  \li enable_lib_static : Enable generated Simgrid and smpi static libraries.
+  
+  \li enable_supernovae : Set to true make one file for each lib and compile with those generated files.
+  
+  \li enable_msg_deprecated : Simgrid is compiled with msg deprecated functions.                                                                                                                                                                                                                                                                              
+  
+  \li enable_print_message : When set to true configuration print more debug output.
   
   \li custom_flags : If user wants to use a specific flag during compilation, give here.
 
   \li gtnets_path : Path to gtnets install directory (ex /usr)
+  
+  \li ns3_path : Path to ns3 install directory (ex /usr)
 
   \li CMAKE_INSTALL_PREFIX : Path where are installed lib/ doc/ and include/ directories (ex /usr/local)
   
@@ -321,7 +336,19 @@ Step 3: Choice where to install packets previously selected. Please don't use sp
 <a href="win_install_04.png" border=0><img src="win_install_04.png" border=0></a>
 \endhtmlonly
 
-Step 4: Restart your computer to take in consideration environment variables.
+Step 4: Add CLASSPATH to environment variables.
+
+\htmlonly
+<a href="win_install_05.png" border=0><img src="win_install_05.png" border=0></a>
+\endhtmlonly
+
+Step 5: Add PATH to environment variables.
+
+\htmlonly
+<a href="win_install_06.png" border=0><img src="win_install_06.png" border=0></a>
+\endhtmlonly
+
+Step 6: Restart your computer to take in consideration environment variables.
 
 \subsection install_Win_compile1 Compile a project "HelloWorld"
 
index d94fd0d..698d3f3 100644 (file)
@@ -20,6 +20,7 @@
    - \ref m_file_management
    - \ref msg_actions_functions
    - \ref msg_gos_functions
+   - \ref msg_deprecated_functions
    - \ref msg_easier_life
    - \ref msg_simulation
 
  *  @brief This section describes the functions that can be used
  *         by an agent for handling some task.
  */
-
+/** @defgroup msg_deprecated_functions MSG Deprecated
+ *  @ingroup MSG_API
+ *  @brief This section describes the deprecated functions and. They
+ *     should be remove on next release.
+ */
 /** @defgroup msg_easier_life      Platform and Application management
  *  @ingroup MSG_API
  *  @brief This section describes functions to manage the platform creation
diff --git a/doc/platform.doc b/doc/platform.doc
new file mode 100644 (file)
index 0000000..c8ed826
--- /dev/null
@@ -0,0 +1,1017 @@
+/*! \page platform Platform description
+
+\htmlinclude .platform.doc.toc
+
+In order to run any simulation, SimGrid needs 3 things: something to run 
+(so, your code), a description of the platform on which you want to run your 
+application, and finally it needs something to know where to deploy what.
+
+For the latest 2 entries, you have basically 2 ways to give it as an input :
+\li You can program it, either using the Lua console or if you're using MSG some 
+of its platform and deployments functions. If you want to use it, please refer 
+to its doc. (you can also  check the section  \ref pf_flexml_bypassing but this is strongly deprecated, as there is a new way to do it properly, but not yet documented).
+\li You can use two XML files: a platform description file and a deployment 
+description one.
+
+As the second one (deployment description) just consists of saying which 
+process runs where and which arguments it should take as input, the easier way to 
+understand how to write it is just to take a look at the examples. Here is an example of it:
+
+\verbatim
+<?xml version='1.0'?>
+<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
+<platform version="3">
+  <!-- The master process (with some arguments) -->
+  <process host="Tremblay" function="master">
+     <argument value="20"/>       <!-- Number of tasks -->
+     <argument value="50000000"/>  <!-- Computation size of tasks -->
+     <argument value="1000000"/>   <!-- Communication size of tasks -->
+     <argument value="Jupiter"/>  <!-- First slave -->
+     <argument value="Fafard"/>   <!-- Second slave -->
+     <argument value="Ginette"/>  <!-- Third slave -->
+     <argument value="Bourassa"/> <!-- Last slave -->
+     <argument value="Tremblay"/> <!-- Me! I can work too! -->
+  </process>
+  <!-- The slave processes (with no argument) -->
+  <process host="Tremblay" function="slave"/>
+  <process host="Jupiter" function="slave"/>
+  <process host="Fafard" function="slave"/>
+  <process host="Ginette" function="slave"/>
+  <process host="Bourassa" function="slave"/>
+</platform>
+\endverbatim
+
+The platform description is slightly more complicated. This documentation is all about how to write this file: what are the basic concept it relies on, what possibilities are offered, and some hints and tips on how to write a good platform description.
+
+\section pf_overview Some words about XML and DTD
+
+We choose to use XML because of some of its possibilities: if you're 
+using an accurate XML editor, or simply using any XML plug-in for eclipse, it 
+will allow you to have cool stuff like auto-completion, validation and checking,
+so all syntaxic errors may be avoided this way.
+
+the XML checking is done based on the dtd which is nowaday online at 
+<a href="http://simgrid.gforge.inria.fr/simgrid.dtd">http://simgrid.gforge.inria.fr/simgrid.dtd</a>
+while you might be tempted to read it, it will not help you that much.
+
+If you read it, you should notice two or three important things :
+\li The platform tags contains a version attributes. At the time of writing this doc
+the current version is 3.
+\li The DTD contains definitions for the 2 files used by SimGrid (platform 
+description and deployment).
+\li There is a bunch of possibilities ! Let's see what's in it
+
+
+\section pf_basics Basic concepts
+
+Nowadays, the Internet is composed of a bunch of independently managed networks. Within each of those networks, there are entry and exit points (most of the time, you can both enter and exit through the same point) that allows to go out of the current network and reach other networks. At the upper level, these networks are known as <b>Autonomous System (AS)</b>, while at the lower level they are named sub-networks, or LAN. Indeed they are autonomous: routing is defined within the limits of his network by the administrator, and so, those networks can continue to operate without the existence of other networks. There are some rules to get out of networks by the entry points (or gateways). Those gateways allow you to go from a network to another one. Inside of each autonomous system, there is a bunch of equipments (cables, routers, switches, computers) that belong to the autonomous system owner.
+
+SimGrid platform description file relies exactly on the same concepts as real life platform. Every resource (computers, network equipments, and so on) belongs to an AS. Within this AS, you can define the routing you want between its elements (that's done with the routing model attribute and eventually with some \<route\> tag). You define AS by using ... well ... the \<AS\> tag. An AS can also contain some AS : AS allows you to define the hierarchy of your platform. 
+
+Within each AS, you basically have the following type of resources:
+\li <b>host</b>: an host, with cores in it, and so on
+\li <b>router</b>: a router or a gateway.
+\li <b>link</b>: a link, that defines a connection between two (or more) resources (and have a bandwidth and a latency)
+\li <b>cluster</b>: like a real cluster, contains many hosts interconnected by some dedicated network.
+
+Between those elements, a routing has to be defined. As the AS is supposed to be Autonomous, this has to be done at the AS level. As AS handles two different types of entities (<b>host/router</b> and <b>AS</b>) you will have to define routes between those elements. A network model have to be provided for AS, but you may/will need, depending of the network model, or because you want to bypass the default beahviour to defines routes manually. There are 3 tags to use :
+\li <b>ASroute</b>: to define routes between two  <b>AS</b>
+\li <b>route</b>: to define routes between two <b>host/router</b>
+\li <b>bypassRoute</b>: to define routes between two <b>AS</b> that will bypass default routing.
+
+Here is an illustration of the overall concepts:
+
+\htmlonly
+<a href="AS_hierarchy.png" border=0><img src="AS_hierarchy.png" width="30%" border=0 align="center"></a>
+<br/>
+\endhtmlonly
+ Circles represent processing units and squares represent network routers. Bold
+    lines represent communication links. AS2 models the core of a national
+    network interconnecting a small flat cluster (AS4) and a larger
+    hierarchical cluster (AS5), a subset of a LAN (AS6), and a set of peers
+    scattered around the world (AS7).
+
+
+This is all for the concepts ! To make a long story short, a SimGrid platform is made of a hierarchy of AS, each of them containing resources, and routing is defined at AS level. Let's have a deeper look in the tags.
+
+
+
+\section pf_pftags Describing resources and their organization
+
+\subsection  pf_As Platform organization tag : AS
+
+AS (or Autonomous System) is an organizational unit that contains resources and defines routing between them, and eventually some other AS. So it allows you to define a hierarchy into your platform. <b>*ANY*</b> resource <b>*MUST*</b> belong to an AS. There are a few attributes.
+
+<b>AS</b> attributes : 
+\li <b>name (mandatory)</b>: the identifier of AS to be used when referring to it. 
+\li <b>routing (mandatory)</b>: the routing model used into it. By model we mean the internal way the simulator will manage routing. That also have a big impact on how many information you'll have to provide to help the simulator to route between the AS elements. <b>routing</b> possible values are <b>Full, Floyd, Dijkstra, DijkstraCache, none, RuleBased, Vivaldi, Cluster</b>. For more explanation about what to choose, take a look at the section devoted to it below.
+
+Elements into an AS are basically resources (computers, network equipments) and some routing informations if necessary (see below for more explanation).
+
+<b>AS example</b>
+\verbatim
+<AS  id="AS0"  routing="Full">
+   <host id="host1" power="1000000000"/>
+   <host id="host2" power="1000000000"/>
+   <link id="link1" bandwidth="125000000" latency="0.000100"/>
+   <route src="host1" dst="host2"><link_ctn id="link1"/></route>
+ </AS>
+\endverbatim
+
+
+In this example, AS0 contains two hosts (host1 and host2). The route between the hosts goes through link1.
+\subsection pf_Cr Computing resources: hosts, clusters and peers.
+
+\subsubsection pf_host host
+A <b>host</b> represents a computer, where you will be able to execute code and from which you can send and receive information. A host can contain more than 1 core. Here are the attributes of a host :
+
+
+<b>host</b> attributes : 
+\li <b>id (mandatory)</b>: the identifier of the host to be used when referring to it.
+\li <b>power (mandatory)</b>:the peak number FLOPS the CPU can manage. Expressed in flop/s.
+\li <b>core</b>: The number of core of this host. If setted, the power gives the power of one core. The specified computing power will be available to up to 6 sequential
+tasks without sharing. If more tasks are placed on this host, the
+resource will be shared accordingly. For example, if you schedule 12
+tasks on the host, each will get half of the computing power. Please
+note that although sound, this model were never scientifically
+assessed. Please keep this fact in mind when using it.
+
+\li <b>availability</b>: specify if the percentage of power available. 
+\li <b>availability_file</b>: Allow you to use a file as input. This file will contain availability traces for this computer. The syntax of this file is defined below. Possible values : absolute or relative path, syntax similar to the one in use on your system.
+\li <b>state</b>: the computer state, as in : is that computer ON or OFF. Possible values : "ON" or "OFF".
+\li <b>state_file</b>: Same mechanism as availability_file, similar syntax for value.
+\li <b>coordinates</b>: you'll have to give it if you choose the vivaldi, coordinate-based routing model for the AS the host belongs to. More details about it in the P2P coordinate based section.
+
+An host can also contain the <b>prop</b> tag. the prop tag allows you to define additional informations on this host following the attribute/value schema. You may want to use it to give information to the tool you use for rendering your simulation, for example.
+
+<b>host example</b>
+\verbatim
+   <host id="host1" power="1000000000"/>
+   <host id="host2" power="1000000000">
+       <prop id="color" value="blue"/>
+       <prop id="rendershape" value="square"/>
+   </host>     
+\endverbatim
+
+
+<b>Expressing dynamicity.</b>
+It is also possible to seamlessly declare a host whose
+availability changes over time using the availability_file
+attribute and a separate text file whose syntax is exemplified below.
+
+<b>Adding a trace file</b>
+\verbatim
+    <platform version="1">
+      <host id="bob" power="500000000" 
+            availability_file="bob.trace" />
+    </platform>
+\endverbatim
+<b>Example of "bob.trace" file</b>
+\verbatim
+PERIODICITY 1.0
+  0.0 1.0
+  11.0 0.5
+  20.0 0.8
+\endverbatim
+
+At time 0, our host will deliver 500~Mflop/s. At time 11.0, it will
+deliver half, that is 250~Mflop/s until time 20.0 where it will
+will start delivering 80\% of its power, that is 400~Mflop/s. Last, at
+time 21.0 (20.0 plus the periodicity 1.0), we loop back to the
+beginning and the host will deliver again 500~Mflop/s.
+
+<b>Changing initial state</b> 
+
+It is also possible to specify whether the host
+is up or down by setting the <b>state</b> attribute to either <b>ON</b>
+(default value) or <b>OFF</b>.
+
+<b>Expliciting the default value "ON"</b>
+\verbatim
+  <platform version="1">
+     <host id="bob" 
+           power="500000000" 
+          state="ON" />
+  </platform>
+\endverbatim
+<b>Host switched off</b>
+\verbatim
+  <platform version="1">
+     <host id="bob" 
+           power="500000000" 
+           state="OFF" />
+  </platform>
+\endverbatim
+<b>Expressing churn</b>
+To express the fact that a host can change state over time (as in P2P
+systems, for instance), it is possible to use a file describing the time
+at which the host is turned on or off. An example of the content
+of such a file is presented below.
+<b>Adding a state file</b>
+  \verbatim  
+    <platform version="1">
+      <host id="bob" power="500000000" 
+           state_file="bob.fail" />
+    </platform>
+  \endverbatim
+<b>Example of "bob.fail" file</b>
+\verbatim
+  PERIODICITY 10.0
+  1.0 -1.0
+  2.0 1.0
+\endverbatim
+
+A negative value means <b>down</b> while a positive one means <b>up and
+  running</b>. From time 0.0 to time 1.0, the host is on. At time 1.0, it is
+turned off and at time 2.0, it is turned on again until time 12 (2.0 plus the
+periodicity 10.0). It will be turned on again at time 13.0 until time 23.0, and
+so on.
+
+
+
+\subsubsection pf_cluster cluster
+A <b>cluster</b> represents a cluster. It is most of the time used when you want to have a bunch of machine defined quickly. It must be noted that cluster is meta-tag : <b>from the inner SimGrid point of view, a cluster is an AS where some optimized routing is defined</b> . The default inner organisation of the cluster is as follow :  
+\verbatim
+                 _________
+                |          |
+                |  router  |
+    ____________|__________|_____________ backbone
+      |   |   |              |     |   |       
+    l0|        l1| l2|           l97| l96 |   | l99
+      |   |   |   ........   |     |   |
+      |                                |
+    c-0.me                             c-99.me 
+\endverbatim
+
+You have a set of <b>host</b> defined. Each of them has a <b>link</b> to a central backbone (backbone is a <b>link</b> itsef, as a link can be used to represent a switch, see the switch or <b>link</b> section below for more details about it). A <b>router</b> gives a way to the <b>cluster</b> to be connected to the outside world. Internally, cluster is then an AS containing all hosts : the router is the default gateway for the cluster. 
+
+There is an alternative organization, which is as follow : 
+\verbatim
+                 _________
+                |          |
+                |  router  |
+                |__________|
+                    / | \
+                   /  |  \
+               l0 / l1|   \l2 
+                 /    |    \
+                /     |     \
+            host0   host1   host2      
+\endverbatim
+
+The principle is the same, except we don't have the backbone. The way to obtain it is simple : you just have to let bb_* attributes unsetted.
+
+
+
+<b>cluster</b> attributes : 
+\li <b>id (mandatory)</b>: the identifier of the cluster to be used when referring to it.
+\li <b>prefix (mandatory)</b>: each node of the cluster has to have a name. This is its prefix.
+\li <b>suffix (mandatory)</b>: node suffix name.
+\li <b>radical (mandatory)</b>: regexp used to generate cluster nodes name. Syntax is quite common, "10-20" will give you 11 machines numbered from 10 to 20, "10-20;2" will give you 12 machines, one with the number 2, others numbered as before. The produced number is concatenated  between prefix and suffix to form machine names.
+\li <b>power (mandatory)</b>: same as <b>host</b> power.
+\li <b>core</b>: same as <b>host</b> core.
+\li <b>bw (mandatory)</b>: bandwidth for the links between nodes and backbone (if any). See <b>link</b> section for syntax/details.
+\li <b>lat (mandatory)</b>: latency for the links between nodes and backbone (if any). See <b>link</b> section for syntax/details.
+\li <b>sharing_policy</b>: sharing policy for the links between nodes and backbone (if any). See <b>link</b> section for syntax/details.
+\li <b>bb_bw </b>: bandwidth for backbone (if any). See <b>link</b> section for syntax/details. If both bb_* attributes are ommited, no backbone is create (alternative cluster architecture described before).
+\li <b>bb_lat </b>: latency for backbone (if any). See <b>link</b> section for syntax/details. If both bb_* attributes are ommited, no backbone is create (alternative cluster architecture described before).
+\li <b>bb_sharing_policy</b>: sharing policy for the backbone (if any). See <b>link</b> section for syntax/details.
+\li <b>availability_file</b>: Allow you to use a file as input for availability. Similar to <b>hosts</b> attribute.
+\li <b>state_file</b>: Allow you to use a file as input for states. Similar to <b>hosts</b> attribute.
+
+the router name is defined as the resulting String in the following java line of code: router_name = prefix + "router_ + suffix ;
+
+
+<b>cluster example</b>
+\verbatim
+<cluster id="my_cluster_1" prefix="" suffix=""
+               radical="0-262144"      power="1000000000"    bw="125000000"     lat="5E-5"/>
+<cluster id="my_cluster_1" prefix="c-" suffix=".me"
+               radical="0-99"  power="1000000000"    bw="125000000"     lat="5E-5"
+        bb_bw="2250000000" bb_lat="5E-4"/>
+\endverbatim
+
+\subsubsection pf_peer peer
+A <b>peer</b> represents a peer, as in Peer-to-Peer (P2P). Basically, as cluster, <b>A PEER IS INTERNALLY INTERPRETED AS AN \<AS\></b>. It's just a kind of shortcut that does the following : 
+\li It creates an host that has coordinates
+\li Two links : one for download and one for upload. This is convenient to use and simulate stuff under the last mile model (as ADSL peers).
+<b>peer</b> attributes : 
+\li <b>id (mandatory)</b>: the identifier of the peer to be used when referring to it.
+\li <b>power CDATA (mandatory)</b>:
+\li <b>bw_in CDATA (mandatory)</b>:
+\li <b>bw_out CDATA (mandatory)</b>:
+\li <b>lat CDATA (mandatory)</b>:
+\li <b>coordinates</b>:
+\li <b>sharing_policy</b>: sharing policy for links. Can be SHARED or FULLDUPLEX, FULLDUPLEX is the default. See <b>link</b> description for details.
+\li <b>availability_file</b>: availability file for the peer. Same as host availability file. See <b>host</b> description for details.
+\li <b>state_file </b>: state file for the peer. Same as host state file. See <b>host</b> description for details.
+
+\subsection pf_ne Network equipments: links and routers
+
+You have basically two entities available to represent network entities : 
+\li <b>link</b>: represents something that has a limited bandwidth, a latency, and that can be shared according to TCP way to share this bandwidth. <b>LINKS ARE NOT EDGES BUT HYPEREDGES</b>: it means that you can have more than 2 equipments connected to it.
+\li <b>router</b>: represents something that one message can be routed to, but does not accept any code, nor have any influence on the performances (no bandwidth, no latency, not anything).<b>ROUTERS ARE ENTITIES (ALMOST) IGNORED BY THE SIMULATOR WHEN THE SIMULATION HAS BEGUN</b>. If you want to represent something like a switch, you must use <b>link</b> (see section below). Routers are used in order to run some routing algorithm and determine routes (see routing section for details).
+
+let's see deeper what those entities hide.
+
+\subsubsection pf_router router
+As said before, <b>router</b> is used only to give some information for routing algorithms. So, it does not have any attributes except : 
+<b>router</b> attributes : 
+\li <b>id (mandatory)</b>: the identifier of the router to be used when referring to it.
+\li <b>coordinates</b>: you'll have to give it if you choose the vivaldi, coordinate-based routing model for the AS the host belongs to. More details about it in the P2P coordinates based section.
+
+
+<b>router example</b>
+\verbatim
+ <router id="gw_dc1_horizdist"/>
+\endverbatim
+
+\subsubsection pf_link link
+Network links can represent one-hop network connections. They are characterized by their id and their bandwidth.
+The latency is optional with a default value of 0.0. For instance, we can declare a network link named link1
+having bandwidth of 1Gb/s and a latency of 50µs.
+Example link:
+\verbatim
+ <link id="LINK1" bandwidth="125000000" latency="5E-5"/>
+\endverbatim
+<b>Expressing sharing policy</b>
+
+By default a network link is SHARED, that is if more than one flow go through
+a link, each gets a share of the available bandwidth similar to the share TCP connections offers. 
+
+Conversely if a link is defined as a FATPIPE, each flow going through this link will get all the available bandwidth, whatever the number of flows. The FATPIPE
+behavior allows to describe big backbones that won't affect performances (except latency). Finally a link can be considered as FULLDUPLEX, that means that in the simulator, 2 links (one named UP and the other DOWN) will be created for each link, so as the transfers from one side to the other will interact similarly as TCP when ACK returning packets circulate on the other direction. More discussion about it is available in <b>link_ctn</b> description. 
+
+\verbatim
+ <link id="SWITCH" bandwidth="125000000" latency="5E-5" sharing_policy="FATPIPE" />
+\endverbatim
+
+<b>Expressing dynamicity and failures</b>
+
+ As for hosts, it is possible to declare links whose state, bandwidth or latency change over the time. In this case, the bandwidth and latency attributes are respectively replaced by the bandwidth file and latency file attributes and the corresponding text files.
+
+\verbatim
+ <link id="LINK1" state_file="link1.fail" bandwidth="80000000" latency=".0001" bandwidth_file="link1.bw" latency_file="link1.lat" />
+\endverbatim
+
+It has to be noted that even if the syntax is the same, the semantic of bandwidth and latency trace files
+differs from that of host availability files. Those files do not express availability as a fraction of the available
+capacity but directly in bytes per seconds for the bandwidth and in seconds for the latency. This is because
+most tools allowing to capture traces on real platforms (such as NWS ) express their results this way.
+
+<b>Example of "link1.bw" file</b>
+\verbatim
+1 PERIODICITY 12.0
+2 4.0 40000000
+3 8.0 60000000
+\endverbatim
+<b>Example of "link1.lat" file</b>
+\verbatim
+ 1 PERIODICITY 5.0
+2 1.0 0.001
+3 2.0 0.01
+4 3.0 0.001
+\endverbatim
+In this example, the bandwidth varies with a period of 12 seconds while the latency varies with a period of
+5 seconds. At the beginning of simulation, the link’s bandwidth is of 80,000,000 B/s (i.e., 80 Mb/s). After four
+seconds, it drops at 40 Mb/s, and climbs back to 60 Mb/s after eight seconds. It keeps that way until second
+12 (ie, until the end of the period), point at which it loops its behavior (seconds 12-16 will experience 80 Mb/s,
+16-20 40 Mb/s and so on). In the same time, the latency values are 100µs (initial value) on the [0, 1[ time
+interval, 1ms on [1, 2[, 10ms on [2, 3[, 1ms on [3,5[ (i.e., until the end of period). It then loops back, starting
+at 100µs for one second.
+
+<b>link</b> attributes : 
+\li <b>id (mandatory)</b>: the identifier of the cluster to be used when referring to it.
+\li <b>bandwidth (mandatory)</b>: bandwidth for the link.
+\li <b>lat </b>: latency for the link. Default is 0.0.
+\li <b>sharing_policy</b>: sharing policy for the link.
+\li <b>state</b>: Allow you to to set link as ON or OFF. Default is ON.
+\li <b>bandwidth_file</b>: Allow you to use a file as input for bandwidth.
+\li <b>latency_file</b>: Allow you to use a file as input for latency.
+\li <b>state_file</b>: Allow you to use a file as input for states.
+
+As an host, a <b>link</b> tag can also contain the <b>prop</b> tag.
+
+<b>link example</b>
+\verbatim
+   <link id="link1" bandwidth="125000000" latency="0.000100"/>
+\endverbatim
+
+
+\subsection pf_storage Storage
+
+At the time of writing this doc, a storage protoype has been implemented. While it is not stable, no doc for it, sorry.
+
+\section pf_routing Routing
+
+In order to run fast, it has been chosen to use static routing within SimGrid. By static, it means that it is calculated once, and will not change during execution. We chose to do that because it is rare to have a real deficience of a resource ; most of the time, a communication fails because the links are too overloaded, and so your connection stops before the time out, or because the computer at the other end is not answering. 
+
+We also chose to use shortests paths algorithms in order to emulate routing. Doing so is consistent with the reality: RIP, OSPF, BGP are all calculating shortest paths. They have some convergence time, but at the end, so when the platform is stable (and this should be the moment you want to simulate something using SimGrid) your packets will follow the shortest paths.  
+\subsection pf_rm Routing models
+
+Within each AS, you have to define a routing model to use. You have basically 3 main kind of routing models :
+\li Shortest-path based models: you let SimGrid calculates shortest paths and manage it. Behaves more or less as most real life routing.
+\li Manually-entered route models: you'll have to define all routes manually by yourself into the platform description file. Consistent with some manually managed real life routing.
+\li Simple/fast models: those models offers fast, low memory routing algorithms. You should consider to use it if you can make some assumptions about your AS. Routing in this case is more or less ignored
+
+\subsubsection pf_raf The router affair
+
+Expressing routers becomes mandatory when using shortest-path based models or when using ns-3 or the bindings to the GTNetS packet-level simulator instead of the native analytical network model implemented in SimGrid. 
+
+For graph-based shortest path algorithms, routers are mandatory, because both algorithms need a graph, and so we need to have source and destination for each edge. 
+
+Routers are naturally an important concept in GTNetS or ns-3 since the way they run the packet routing algorithms is actually simulated. Instead, the
+SimGrid’s analytical models aggregate the routing time with the transfer time.
+Rebuilding a graph representation only from the route information turns to be a very difficult task, because
+of the missing information about how routes intersect. That is why we introduced a \<router\> tag, which is
+simply used to express these intersection points. The only attribute accepted by this tag an id.
+It is important to understand that the \<router\> tag is only used to provide topological information. 
+
+To express those topological information, some <b>route</b> have to be defined saying which link is between which routers. Description or the route syntax is given below, as well as example for the different models.
+
+\subsubsection pf_rm_sh Shortest-path based models 
+
+Here is the complete list of such models, that computes routes using classic shortest-paths algorithms. How to choose the best suited algorithm is discussed later in the section devoted to it.
+\li <b>Floyd</b>: Floyd routing data
+\li <b>Dijkstra</b>: Dijkstra routing data 
+\li <b>DijkstraCache</b>: Dijkstra routing data 
+
+Floyd example : 
+\verbatim
+<AS  id="AS0"  routing="Floyd">
+    
+  <cluster id="my_cluster_1" prefix="c-" suffix=""
+               radical="0-1"   power="1000000000"    bw="125000000"     lat="5E-5"
+        router_id="router1"/>
+
+ <AS id="AS1" routing="none">
+    <host id="host1" power="1000000000"/>
+ </AS>
+
+  <link id="link1" bandwidth="100000" latency="0.01"/>
+  
+  <ASroute src="my_cluster_1" dst="AS1"
+    gw_src="router1"
+    gw_dst="host1">
+    <link_ctn id="link1"/>
+  </ASroute>
+  
+</AS>
+\endverbatim
+ASroute given at the end gives a topological information : link1 is between router1 and host1.
+
+
+Dijsktra example : 
+\verbatim
+XXX?
+\endverbatim
+
+DijsktraCache example : 
+\verbatim
+XXX?
+\endverbatim
+
+\subsubsection pf_rm_me Manually-entered route models 
+
+\li <b>Full</b>: You have to enter all necessary routes manually
+\li <b>RuleBased</b>: Rule-Based routing data; same as Full except you can use regexp to express route. As SimGrid has to evaluate the regexp, it's slower than Full, but requires less memory. Regexp syntax is similar as <a href="http://www.pcre.org">pcre</a> ones, as this is the lib SimGrid use to do so.
+
+Full example : 
+\verbatim
+<AS  id="AS0"  routing="Full">
+   <host id="host1" power="1000000000"/>
+   <host id="host2" power="1000000000"/>
+   <link id="link1" bandwidth="125000000" latency="0.000100"/>
+   <route src="host1" dst="host2"><link_ctn id="link1"/></route>
+ </AS>
+\endverbatim
+
+RuleBased example : 
+\verbatim
+<AS id="AS_orsay" routing="RuleBased" >
+                       <cluster id="AS_gdx" prefix="gdx-" suffix=".orsay.grid5000.fr"
+                               radical="1-310" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
+                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                       <link   id="link_gdx" bandwidth="1.25E9" latency="1.0E-4"/>
+
+                       <cluster id="AS_netgdx" prefix="netgdx-" suffix=".orsay.grid5000.fr"
+                               radical="1-30" power="4.7144E9" bw="1.25E8" lat="1.0E-4"
+                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                       <link   id="link_netgdx" bandwidth="1.25E9" latency="1.0E-4"/>
+
+                       <AS id="gw_AS_orsay" routing="Full">
+                               <router id="gw_orsay"/>
+                       </AS>
+                       <link   id="link_gw_orsay" bandwidth="1.25E9" latency="1.0E-4"/>
+
+                       <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
+                               gw_src="$1src-AS_$1src_router.orsay.grid5000.fr"
+                               gw_dst="$1dst-AS_$1dst_router.orsay.grid5000.fr"
+                               symmetrical="YES">
+                                       <link_ctn id="link_$1src"/>
+                                       <link_ctn id="link_$1dst"/>
+                       </ASroute>
+
+                       <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
+                               gw_src="$1src-AS_$1src_router.orsay.grid5000.fr"
+                               gw_dst="gw_$1dst"
+                               symmetrical="NO">
+                                       <link_ctn id="link_$1src"/>
+                       </ASroute>
+
+                       <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
+                               gw_src="gw_$1src"
+                               gw_dst="$1dst-AS_$1dst_router.orsay.grid5000.fr"
+                               symmetrical="NO">
+                                       <link_ctn id="link_$1dst"/>
+                       </ASroute>
+
+               </AS>
+\endverbatim
+
+The example upper contains $1. Those $1 are evaluated as follow XXX?
+
+\subsubsection pf_rm_sf Simple/fast models 
+
+\li <b>none</b>: No routing (Unless you know what you are doing, avoid using this mode in combination with a non Constant network model).
+None Example :
+\verbatim
+XXX?
+\endverbatim
+
+\li <b>Vivaldi</b>: Vivaldi routing, so when you want to use coordinates. See the corresponding section P2P below for details.
+\li <b>Cluster</b>: Cluster routing, specific to cluster tag, should not be used, except internally.
+
+\subsection ps_dec Defining routes
+
+The principle of route definition is the same for the 4 available tags for doing it. Those for tags are: 
+
+\li <b>route</b>: to define route between host/router
+\li <b>ASroute</b>: to define route between AS
+\li <b>bypassRoute</b>: to bypass normal routes as calculated by the network model between host/router
+\li <b>bypassASroute</b>: same as bypassRoute, but for AS
+
+Basically all those tags will contain an (ordered) list of references to link that compose the route you want to define. 
+
+Consider the example below: 
+
+\verbatim
+<route src="Alice" dst="Bob">
+       <link_ctn id="link1"/>
+       <link_ctn id="link2"/>
+       <link_ctn id="link3"/>
+   </route>
+\endverbatim
+
+The route here fom host Alice to Bob will be first link1, then link2, and finally link3. What about the reverse route ? <b>route</b> and <b>ASroute</b> have an optional attribute <b>symmetrical</b>, that can be either YES or NO. YES means that the reverse route is the same route in the inverse order, and is setted to YES by default. Note that this is not the case for bypass*Route, as it is more probable that you want to bypass only one default route.
+
+For an ASroute, things are just sligthly more complicated, as you have to give the id of the gateway which is inside the AS you're talking about you want to access ... So it looks like this : 
+
+
+\verbatim
+  <ASroute src="AS1" dst="AS2"
+    gw_src="router1" gw_dst="router2">
+    <link_ctn id="link1"/>
+  </ASroute>
+\endverbatim
+
+gw == gateway, so when any message are trying to go from AS1 to AS2, it means that it must pass through router1 to get out of the AS, then pass through link1, and get into AS2 by being received by router2. router1 must belong to AS1 and router2 must belong to AS2. 
+
+\subsubsection pf_linkctn link_ctn
+
+a <b>link_ctn</b> is the tag that is used in order to reference a <b>link</b> in a route. Its id is the link id it refers to.
+
+<b>link_ctn</b> attributes : 
+\li <b>id (mandatory)</b>: Id of the link this tag refers to
+\li <b>direction</b>: if the link referenced by <b>id</b> has been declared as FULLDUPLEX, this is used to indicate in which direction the route you're defining is going through this link. Possible values "UP" or "DOWN".
+
+\subsubsection pf_asro ASroute
+
+ASroute tag purpose is to let people write manually their routes between AS. It's usefull when you're in Full or Rule-based model.
+
+<b>ASroute</b> attributes : 
+\li <b>src (mandatory)</b>: the source AS id.
+\li <b>dst (mandatory)</b>: the destination AS id.
+\li <b>gw_src (mandatory)</b>: the gateway to be used within the AS. Can be any <b>host</b> or \b router defined into the \b src AS or into one of the AS it includes.  
+\li <b>gw_dst (mandatory)</b>: the gateway to be used within the AS. Can be any <b>host</b> or \b router defined into the \b dst AS or into one of the AS it includes.
+\li <b>symmetrical</b>: if the route is symmetric, the reverse route will be the opposite of the one defined. Can be either YES or NO, default is  YES.
+
+<b>Example of ASroute with RuleBased</b>
+\verbatim
+<ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
+                               gw_src="gw_$1src"
+                               gw_dst="$1dst-AS_$1dst_router.orsay.grid5000.fr"
+                               symmetrical="NO">
+                                       <link_ctn id="link_$1dst"/>
+                       </ASroute>
+\endverbatim
+<b>Example of ASroute with Full</b>
+\verbatim
+<AS  id="AS0"  routing="Full">
+  <cluster id="my_cluster_1" prefix="c-" suffix=".me"
+               radical="0-149" power="1000000000"    bw="125000000"     lat="5E-5"
+        bb_bw="2250000000" bb_lat="5E-4"/>
+               
+  <cluster id="my_cluster_2" prefix="c-" suffix=".me"
+           radical="150-299" power="1000000000"        bw="125000000"  lat="5E-5"
+           bb_bw="2250000000" bb_lat="5E-4"/>  
+       
+     <link id="backbone" bandwidth="1250000000" latency="5E-4"/>  
+       
+     <ASroute src="my_cluster_1" dst="my_cluster_2" 
+        gw_src="c-my_cluster_1_router.me" 
+        gw_dst="c-my_cluster_2_router.me">
+               <link_ctn id="backbone"/>
+     </ASroute>   
+     <ASroute src="my_cluster_2" dst="my_cluster_1" 
+        gw_src="c-my_cluster_2_router.me" 
+        gw_dst="c-my_cluster_1_router.me">
+               <link_ctn id="backbone"/>
+     </ASroute> 
+</AS>
+\endverbatim
+
+\subsubsection pf_ro route
+The principle is the same as ASroute : <b>route</b> contains list of links that are in the path between src and dst, except that it is for routes between a src that can be either <b>host</b> or \b router and a dst that can be either <b>host</b> or \b router. Usefull for Full and RuleBased, as well as for the shortest-paths based models, where you have to give topological informations.
+
+
+<b>route</b> attributes : 
+\li <b>src (mandatory)</b>: the source id.
+\li <b>dst (mandatory)</b>: the destination id.
+\li <b>symmetrical</b>: if the route is symmetric, the reverse route will be the opposite of the one defined. Can be either YES or NO, default is  YES.
+
+<b>route example in Full</b>
+\verbatim
+ <route src="Tremblay" dst="Bourassa">
+     <link_ctn id="4"/><link_ctn id="3"/><link_ctn id="2"/><link_ctn id="0"/><link_ctn id="1"/><link_ctn id="6"/><link_ctn id="7"/>
+   </route>
+\endverbatim
+
+<b>route example in a shortest-path model</b>
+\verbatim
+ <route src="Tremblay" dst="Bourassa">
+     <link_ctn id="3"/>
+   </route>
+\endverbatim
+Note that when using route to give topological information, you have to give routes with one link only in it, as SimGrid needs to know which host are at the end of the link.
+
+\subsubsection pf_byro bypassASroute
+<b>Note : bypassASroute and bypassRoute are under rewriting to perform better ; so you may not use it yet</b>
+As said before, once you choose a model, it (if so) calculates routes for you. But maybe you want to define some of your routes, which will be specific. You may also want to bypass some routes defined in lower level AS at an upper stage : <b>bypassASroute</b> is the tag you're looking for. It allows to bypass routes defined between already defined between AS (if you want to bypass route for a specific host, you should just use byPassRoute). The principle is the same as ASroute : <b>bypassASroute</b> contains list of links that are in the path between src and dst.
+
+<b>bypassASroute</b> attributes : 
+\li <b>src (mandatory)</b>: the source AS id.
+\li <b>dst (mandatory)</b>: the destination AS id.
+\li <b>gw_src (mandatory)</b>: the gateway to be used within the AS. Can be any <b>host</b> or \b router defined into the \b src AS or into one of the AS it includes.  
+\li <b>gw_dst (mandatory)</b>: the gateway to be used within the AS. Can be any <b>host</b> or \b router defined into the \b dst AS or into one of the AS it includes.
+\li <b>symmetrical</b>: if the route is symmetric, the reverse route will be the opposite of the one defined. Can be either YES or NO, default is  YES.
+
+<b>bypassASroute Example</b>
+\verbatim
+    <bypassASRoute src="my_cluster_1" dst="my_cluster_2"
+     gw_src="my_cluster_1_router" 
+     gw_dst="my_cluster_2_router">
+        <link_ctn id="link_tmp"/>  
+     </bypassASroute>
+\endverbatim
+
+\subsubsection pf_byro bypassRoute
+<b>Note : bypassASRoute and bypassRoute are under rewriting to perform better ; so you may not use it yet</b>
+As said before, once you choose a model, it (if so) calculates routes for you. But maybe you want to define some of your routes, which will be specific. You may also want to bypass some routes defined in lower level AS at an upper stage : <b>bypassRoute</b> is the tag you're looking for. It allows to bypass routes defined between <b>host/router</b>. The principle is the same as route : <b>bypassRoute</b> contains list of links references of links that are in the path between src and dst.
+
+<b>bypassRoute</b> attributes : 
+\li <b>src (mandatory)</b>: the source AS id.
+\li <b>dst (mandatory)</b>: the destination AS id.
+\li <b>symmetrical</b>: if the route is symmetric, the reverse route will be the opposite of the one defined. Can be either YES or NO, default is  YES.
+
+<b>bypassRoute Example</b>
+\verbatim
+<b>bypassRoute Example</b>
+\verbatim
+    <bypassRoute src="host_1" dst="host_2">
+        <link_ctn id="link_tmp"/>  
+     </bypassRoute>
+\endverbatim
+
+
+\subsection pb_baroex Basic Routing Example
+
+Let's say you have an AS named AS_Big that contains two other AS, AS_1 and AS_2. If you want to make an host (h1) from AS_1 with another one (h2) from  AS_2 and you did not have choosen to use some routing model that compute routes automatically, then you'll have to proceed as follow: 
+\li First, you have to ensure that a route is defined from h1 to the AS_1's exit gateway and from h2 to AS_2's exit gateway.
+\li Then, you'll have to define a route between AS_1 to AS_2. As those AS are both resources belonging to AS_Big, then it has to be done at AS_big level. To define such a route, you have to give the source AS (AS_1), the destination AS (AS_2), and their respective gateway (as the route is effectively defined between those two entry/exit points). Elements of this route can only be elements belonging to AS_Big, so links and routers in this route should be defined inside AS_Big. 
+
+As said before, there are mainly 2 tags for routing :
+\li <b>ASroute</b>: to define routes between two  <b>AS</b>
+\li <b>route</b>: to define routes between two <b>host/router</b>
+
+As we are dealing with routes between AS, it means that those we'll have some definition at AS_Big level. Let consider AS_1 and AS_2 contains 1 host, 1 link and one router. 
+
+\section pf_other_tags Tags not (directly) describing the platform
+
+There are 3 tags, that you can use inside a \<platform\> tag that are not describing the platform:
+\li random: it allows you to define random generators you want to use for your simulation.
+\li config: it allows you to pass some configuration stuff like, for example, the network model and so on. It follows the 
+\li include: simply allows you to include another file into the current one.
+
+\subsection pf_conf config
+<b>config</b> attributes : 
+\li <b>id (mandatory)</b>: the identifier of the config to be used when referring to it.
+
+
+<b>config</b> tag only purpose is to include <b>prop</b> tags. Valid id are basically the same as the list of possible parameters you can use by command line, except that "/" are used for namespace definition. See the \ref options config and options page for more information.
+
+
+<b>config example</b>
+\verbatim
+<?xml version='1.0'?>
+<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
+<platform version="3"> 
+<config id="General">
+       <prop id="maxmin/precision" value="0.000010"></prop>
+       <prop id="cpu/optim" value="TI"></prop>
+       <prop id="workstation/model" value="compound"></prop>
+       <prop id="network/model" value="SMPI"></prop>
+       <prop id="path" value="~/"></prop>
+       <prop id="smpi/bw_factor" value="65472:0.940694;15424:0.697866;9376:0.58729"></prop>
+</config>
+       
+<AS  id="AS0"  routing="Full">
+...
+\endverbatim
+
+
+\subsection pf_rand random
+Not yet in use, and possibly subject to huge modifications.
+
+\subsection pf_incl include
+<b>include</b> tag allows to import into a file platform parts located in another file. This is done with the intention to help people combine their different AS and provide new platforms. Those files should contains XML part that contains either <b>include,cluster,peer,AS,trace,trace_connect</b> tags.
+
+<b>include</b> attributes : 
+\li <b>file (mandatory)</b>: filename of the file to include. Possible values : absolute or relative path, syntax similar to the one in use on your system.
+
+<b>Note</b> : due to some obscure technical reasons, you have to open and close tag in order to let it work. 
+<b>include Example</b>
+\verbatim
+<?xml version='1.0'?>
+<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
+<platform version="3">
+       <AS id="main" routing="Full">
+               <include file="clusterA.xml"></include>
+               <include file="clusterB.xml"></include>
+       </AS>
+</platform>
+\endverbatim
+
+\subsection pf_tra trace and trace_connect
+Both tags are an alternate way to passe availability, state, and so on files to entity. Instead of refering to the file directly in the host, link, or cluster tag, you proceed by defining a trace with an id corresponding to a file, later an host/link/cluster, and finally using trace_connect you say that the file trace must be used by the entity. Get it ? Let's have a look at an example :
+
+\verbatim
+<AS  id="AS0"  routing="Full">
+  <host id="bob" power="1000000000"/>  
+</AS>
+  <trace id="myTrace" file="bob.trace" periodicity="1.0"/>
+  <trace_connect trace="myTrace" element="bob" kind="POWER"/>
+\endverbatim
+
+All constraints you have is that <b>trace_connect</b> is after <b>trace</b> and <b>host</b> definitions. 
+
+
+<b>trace</b> attributes : 
+\li <b>id (mandatory)</b>: the identifier of the trace to be used when referring to it.
+\li <b>file</b>: filename of the file to include. Possible values : absolute or relative path, syntax similar to the one in use on your system.
+\li <b>trace periodicity (mandatory)</b>: trace periodicity, same definition as in hosts (see upper for details).
+
+<b>trace_connect</b> attributes : 
+\li <b>kind</b>: the type of trace, possible values <b>HOST_AVAIL|POWER|LINK_AVAIL|BANDWIDTH|LATENCY,</b>  default: <b>HOST_AVAIL</b>
+\li <b>trace (mandatory)</b>: the identifier of the trace referenced.
+\li <b>element (mandatory)</b>: the identifier of the entity referenced.
+
+
+
+\section pf_hints Hints and tips, or how to write a platform efficiently
+
+Now you should know at least the syntax dans be able to create a platform. However, after having ourselves wrote some platforms, there are some best practices you should pay attention to in order to produce good platform and some choices you can make in order to have faster simulations. Here's some hints and tips, then.
+
+\subsection pf_as_h AS Hierarchy 
+The AS design allows SimGrid to go fast, because computing route is done only for the set of resources defined in this AS. If you're using only a big AS containing all resource with no AS into it and you're using Full model, then ... you'll loose all interest into it. On the other hand, designing a binary tree of AS with, at the lower level, only one host, then you'll also loose all the good AS hierarchy can give you. Remind you should always be "reasonable" in your platform definition when choosing the hierarchy. A good choice if you try to describe a real life platform is to follow the AS described in reality, since this kind og trade-off works well for real life platforms.
+
+\subsection pf_exit_as Exit AS: why and how
+Users that have looked at some of our platforms may have notice a non-intuitive schema ... Something like that : 
+
+
+\verbatim
+<AS id="AS_4"  routing="Full">
+<AS id="exitAS_4"  routing="Full">
+       <router id="router_4"/>
+</AS>
+<cluster id="cl_4_1" prefix="c_4_1-" suffix="" radical="1-20" power="1000000000" bw="125000000" lat="5E-5" bb_bw="2250000000" bb_lat="5E-4"/>
+<cluster id="cl_4_2" prefix="c_4_2-" suffix="" radical="1-20" power="1000000000" bw="125000000" lat="5E-5" bb_bw="2250000000" bb_lat="5E-4"/>
+<link id="4_1" bandwidth="2250000000" latency="5E-5"/>
+<link id="4_2" bandwidth="2250000000" latency="5E-5"/>
+<link id="bb_4" bandwidth="2250000000" latency="5E-4"/>
+<ASroute src="cl_4_1"
+       dst="cl_4_2"
+       gw_src="c_4_1-cl_4_1_router"
+       gw_dst="c_4_2-cl_4_2_router"
+       symmetrical="YES">
+               <link_ctn id="4_1"/>
+               <link_ctn id="bb_4"/>
+               <link_ctn id="4_2"/>
+</ASroute>
+<ASroute src="cl_4_1"
+       dst="exitAS_4"
+       gw_src="c_4_1-cl_4_1_router"
+       gw_dst="router_4"
+       symmetrical="YES">
+               <link_ctn id="4_1"/>
+               <link_ctn id="bb_4"/>
+</ASroute>
+<ASroute src="cl_4_2"
+       dst="exitAS_4"
+       gw_src="c_4_2-cl_4_2_router"
+       gw_dst="router_4"
+       symmetrical="YES">
+               <link_ctn id="4_2"/>
+               <link_ctn id="bb_4"/>
+</ASroute>
+</AS>
+\endverbatim
+
+In the AS_4, you have an exitAS_4 defined, containing only one router, and routes defined to that AS from all other AS (as cluster is only a shortcut for an AS, see cluster description for details). If there was an upper AS, it would define routes to and from AS_4 with the gateway router_4. It's just because, as we did not allowed (for performances issues) to have routes from an AS to a single host/router, you have to enclose your gateway, when you have AS included in your AS, within an AS to define routes to it. 
+
+
+\subsection pf_P2P_tags P2P or how to use coordinates
+SimGrid allows you to use some coordinated-based system, like vivaldi, to describe a platform. The main concept is that you have some peers that are located somewhere: this is the function of the  <b>coordinates</b> of the \<peer\> or \<host\> tag. There's nothing complicated in using it, here is an example of it:
+
+\verbatim
+<?xml version='1.0'?>
+<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
+<platform version="3">
+       
+<config id="General">
+       <prop id="network/coordinates" value="yes"></prop>
+</config>      
+ <AS  id="AS0"  routing="Vivaldi">
+       <host id="100030591" coordinates="25.5 9.4 1.4" power="1500000000.0" />
+       <host id="100036570" coordinates="-12.7 -9.9 2.1" power="730000000.0" />
+       ...
+       <host id="100429957" coordinates="17.5 6.7 18.8" power="830000000.0" />
+       </AS>
+</platform>
+\endverbatim
+
+Coordinates are then used to calculate latency between two hosts by calculating the euclidian distance between the two hosts coordinates. The results express the latency in ms.
+
+\subsection pf_wisely Choosing wisely the routing model to use
+
+
+Choosing wisely the routing model to use can significantly fasten your simulation/save your time when writing the platform/save tremendeous disk space. Here is the list of available model and their characteristics (lookup : time to resolve a route):
+
+\li <b>Full</b>: Full routing data (fast, large memory requirements, fully expressive)
+\li <b>Floyd</b>: Floyd routing data (slow initialization, fast lookup, lesser memory requirements, shortest path routing only)
+\li <b>Dijkstra</b>: Dijkstra routing data (fast initialization, slow lookup, small memory requirements, shortest path routing only)
+\li <b>DijkstraCache</b>: Dijkstra routing data (fast initialization, fast lookup, small memory requirements, shortest path routing only) 
+\li <b>none</b>: No routing (usable with Constant network only)
+\li <b>RuleBased</b>: Rule-Based routing data (...)
+\li <b>Vivaldi</b>: Vivaldi routing, so when you want to use coordinates
+\li <b>Cluster</b>: Cluster routing, specific to cluster tag, should not be used.
+
+
+
+\subsection pf_switch Hey, I want to describe a switch but there is no switch tag !
+
+Actually we did not include swith tag, ok. But when you're trying to simulate a switch, the only major impact it has when you're using fluid model (and SimGrid uses fluid model unless you activate GTNetS, ns-3, or constant network mode) is the impact of the upper limit of the switch motherboard speed that will eventually be reached if you're using intensively your switch. So, the switch impact is similar to a link one. That's why we are used to describe a switch using a link tag (as a link is not an edge by a hyperedge, you can connect more than 2 other links to it).
+\subsection pf_platform_multipath How to express multipath routing in platform files?
+
+It is unfortunately impossible to express the fact that there is more
+than one routing path between two given hosts. Let's consider the
+following platform file:
+
+\verbatim
+<route src="A" dst="B">
+   <link_ctn id="1"/>
+</route>
+<route src="B" dst="C">
+  <link_ctn id="2"/>
+</route>
+<route src="A" dst="C">
+  <link_ctn id="3"/>
+</route>
+\endverbatim
+
+Although it is perfectly valid, it does not mean that data traveling
+from A to C can either go directly (using link 3) or through B (using
+links 1 and 2). It simply means that the routing on the graph is not
+trivial, and that data do not following the shortest path in number of
+hops on this graph. Another way to say it is that there is no implicit
+in these routing descriptions. The system will only use the routes you
+declare (such as &lt;route src="A" dst="C"&gt;&lt;link_ctn
+id="3"/&gt;&lt;/route&gt;), without trying to build new routes by aggregating
+the provided ones.
+  
+You are also free to declare platform where the routing is not
+symmetric. For example, add the following to the previous file:
+
+\verbatim
+<route src="C" dst="A">
+  <link_ctn id="2"/>
+  <link_ctn id="1"/>
+</route>
+\endverbatim
+
+This makes sure that data from C to A go through B where data from A
+to C go directly. Don't worry about realism of such settings since
+we've seen ways more weird situation in real settings (in fact, that's
+the realism of very regular platforms which is questionable, but
+that's another story).
+
+\section pf_flexml_bypassing Bypassing the XML parser with your own C functions
+<b>NOTE THAT THIS DOCUMENTATION, WHILE STILL WORKING, IS STRONGLY DEPRECATED</b>
+
+So you want to bypass the XML files parser, uh? Maybe doing some parameter
+sweep experiments on your simulations or so? This is possible, and
+it's not even really difficult (well. Such a brutal idea could be
+harder to implement). Here is how it goes.
+
+For this, you have to first remember that the XML parsing in SimGrid is done
+using a tool called FleXML. Given a DTD, this gives a flex-based parser. If
+you want to bypass the parser, you need to provide some code mimicking what
+it does and replacing it in its interactions with the SURF code. So, let's
+have a look at these interactions.
+
+FleXML parser are close to classical SAX parsers. It means that a
+well-formed SimGrid platform XML file might result in the following
+"events":
+
+  - start "platform_description" with attribute version="2"
+  - start "host" with attributes id="host1" power="1.0"
+  - end "host"
+  - start "host" with attributes id="host2" power="2.0"
+  - end "host"
+  - start "link" with ...
+  - end "link"
+  - start "route" with ...
+  - start "link_ctn" with ...
+  - end "link_ctn"
+  - end "route"
+  - end "platform_description"
+
+The communication from the parser to the SURF code uses two means:
+Attributes get copied into some global variables, and a surf-provided
+function gets called by the parser for each event. For example, the event
+  - start "host" with attributes id="host1" power="1.0"
+
+let the parser do something roughly equivalent to:
+\verbatim
+  strcpy(A_host_id,"host1");
+  A_host_power = 1.0;
+  STag_host();
+\endverbatim
+
+In SURF, we attach callbacks to the different events by initializing the
+pointer functions to some the right surf functions. Since there can be
+more than one callback attached to the same event (if more than one
+model is in use, for example), they are stored in a dynar. Example in
+workstation_ptask_L07.c:
+\verbatim
+  /* Adding callback functions */
+  surf_parse_reset_parser();
+  surfxml_add_callback(STag_surfxml_host_cb_list, &parse_cpu_init);
+  surfxml_add_callback(STag_surfxml_prop_cb_list, &parse_properties);
+  surfxml_add_callback(STag_surfxml_link_cb_list, &parse_link_init);
+  surfxml_add_callback(STag_surfxml_route_cb_list, &parse_route_set_endpoints);
+  surfxml_add_callback(ETag_surfxml_link_c_ctn_cb_list, &parse_route_elem);
+  surfxml_add_callback(ETag_surfxml_route_cb_list, &parse_route_set_route);
+                
+  /* Parse the file */
+  surf_parse_open(file);
+  xbt_assert(!surf_parse(), "Parse error in %s", file);
+  surf_parse_close();
+\endverbatim
+    
+So, to bypass the FleXML parser, you need to write your own version of the
+surf_parse function, which should do the following:
+   - Fill the A_<tag>_<attribute> variables with the wanted values
+   - Call the corresponding STag_<tag>_fun function to simulate tag start
+   - Call the corresponding ETag_<tag>_fun function to simulate tag end
+   - (do the same for the next set of values, and loop)
+
+Then, tell SimGrid that you want to use your own "parser" instead of the stock one:
+\verbatim
+  surf_parse = surf_parse_bypass_environment;
+  MSG_create_environment(NULL);
+  surf_parse = surf_parse_bypass_application;
+  MSG_launch_application(NULL);
+\endverbatim
+
+A set of macros are provided at the end of
+include/surf/surfxml_parse.h to ease the writing of the bypass
+functions. An example of this trick is distributed in the file
+examples/msg/masterslave/masterslave_bypass.c
+
+
+*/
index f7ab980..9d09bda 100644 (file)
Binary files a/doc/webcruft/win_install_01.png and b/doc/webcruft/win_install_01.png differ
index 42d082d..5d442a9 100644 (file)
Binary files a/doc/webcruft/win_install_02.png and b/doc/webcruft/win_install_02.png differ
index a6c51d4..012cb38 100644 (file)
Binary files a/doc/webcruft/win_install_03.png and b/doc/webcruft/win_install_03.png differ
index b3fc6bb..aedc2d9 100644 (file)
Binary files a/doc/webcruft/win_install_04.png and b/doc/webcruft/win_install_04.png differ
diff --git a/doc/webcruft/win_install_05.png b/doc/webcruft/win_install_05.png
new file mode 100644 (file)
index 0000000..f7ebe88
Binary files /dev/null and b/doc/webcruft/win_install_05.png differ
diff --git a/doc/webcruft/win_install_06.png b/doc/webcruft/win_install_06.png
new file mode 100644 (file)
index 0000000..b032383
Binary files /dev/null and b/doc/webcruft/win_install_06.png differ
index 5de61ff..5409bf6 100644 (file)
@@ -439,7 +439,7 @@ $ $SG_TEST_EXENV ${bindir:=.}/chord$EXEEXT -nb_bits=6 ${srcdir:=.}/../msg_platfo
 > [652.548539] (0:@) Simulated time: 652.549
 
 ! output sort
-$ $SG_TEST_EXENV ${bindir:=.}/chord$EXEEXT ${srcdir:=.}/../../platforms/One_cluster.xml ${srcdir:=.}/chord10.xml --cfg=network/crosstraffic:0 --log=msg_chord.thres:verbose "--log=root.fmt:[%11.6r]%e(%i:%P@%h)%e%m%n" --cfg=network/model:Constant
+$ $SG_TEST_EXENV ${bindir:=.}/chord$EXEEXT ${srcdir:=.}/../../platforms/cluster.xml ${srcdir:=.}/chord10.xml --cfg=network/crosstraffic:0 --log=msg_chord.thres:verbose "--log=root.fmt:[%11.6r]%e(%i:%P@%h)%e%m%n" --cfg=network/model:Constant
 > [   0.000000] (0:@) Configuration change: Set 'network/crosstraffic' to '0'
 > [   0.000000] (0:@) Configuration change: Set 'network/model' to 'Constant'
 > [   0.000000] (0:@) Switching workstation model to compound since you changed the network and/or cpu model(s)
index 6cd2c1e..e778dbc 100644 (file)
@@ -438,7 +438,7 @@ $ $SG_TEST_EXENV ${bindir:=.}/chord$EXEEXT -nb_bits=6 ${srcdir:=.}/../msg_platfo
 > [652.548539] (0:@) Simulated time: 652.549
 
 ! output sort
-$ $SG_TEST_EXENV ${bindir:=.}/chord$EXEEXT ${srcdir:=.}/../../platforms/One_cluster.xml ${srcdir:=.}/chord10.xml --log=msg_chord.thres:verbose "--log=root.fmt:[%11.6r]%e(%i:%P@%h)%e%m%n" --cfg=network/model:Constant
+$ $SG_TEST_EXENV ${bindir:=.}/chord$EXEEXT ${srcdir:=.}/../../platforms/cluster.xml ${srcdir:=.}/chord10.xml --log=msg_chord.thres:verbose "--log=root.fmt:[%11.6r]%e(%i:%P@%h)%e%m%n" --cfg=network/model:Constant
 > [   0.000000] (0:@) Configuration change: Set 'network/model' to 'Constant'
 > [   0.000000] (0:@) Switching workstation model to compound since you changed the network and/or cpu model(s)
 > [   0.000000] (10:node@c-9.me) Joining the ring with id 2015253, knowing node 1319738
diff --git a/examples/msg/ns3/One_cluster.xml b/examples/msg/ns3/One_cluster.xml
deleted file mode 100644 (file)
index 5171642..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version='1.0'?>
-<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
-<!--              _________
-                               |              |
-                               |  router  |
-       ____________|__________|_____________ backbone
-         |   |   |              |     |   |    
-    l0|        l1|     l2|            l7|  l6 |   | l9
-      |          |       |   ........   |     |   |
-      |                                |
-   c-0.me                             c-9.me   
--->
-<platform version="3">
-<AS  id="AS0"  routing="Full">
-  <cluster id="my_cluster_1" prefix="c-" suffix=".me"
-               radical="0-9"   power="1000000000"    bw="125000000"     lat="5E-5"
-        bb_bw="2250000000" bb_lat="5E-4"/>
-</AS>
-</platform>
diff --git a/examples/msg/ns3/Two_clusters.xml b/examples/msg/ns3/Two_clusters.xml
deleted file mode 100644 (file)
index efc5e10..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version='1.0'?>
-<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
-<platform version="3">
-
-<!--
-                                         __________________________________________________
-                  ____|_____                                                                                   |
-                               |              |                                                                                        |
-                               |  router1 |                                                                                    |
-       ____________|__________|_____________ csma1                                                     |
-         |   |   |              |     |   |                                                            |backbone
-    l0|        l1|     l2|            l7|   l8|   | l9                                                         |
-      |          |       |   ........   |     |   |                                                            |
-      |                                |                                                               |
-   c-0.me                             c-9.me                           |
-                     ___________________________________________________|
-                                 ___|______
-                               |              |
-                               |  router2 |
-       ____________|__________|_____________ csma2
-        |    |    |               |     |   |          
- l10 | l11|       |            l17|  l18|   | l19
-     |   |        |   ........    |     |   |
-     |                                   |
-   c-10.me                              c-19.me        
--->
-<AS  id="AS0"  routing="Full">
-  <cluster id="my_cluster_1" prefix="c-" suffix=".me"
-               radical="0-9"   power="1000000000"    bw="125000000"     lat="5E-5"
-        bb_bw="2250000000" bb_lat="5E-4"/>
-               
-  <cluster id="my_cluster_2" prefix="c-" suffix=".me"
-           radical="10-19" power="1000000000"  bw="125000000"  lat="5E-5"
-           bb_bw="2250000000" bb_lat="5E-4"/>  
-       
-     <link id="backbone" bandwidth="1250000000" latency="5E-4"/>  
-       
-     <ASroute src="my_cluster_1" dst="my_cluster_2" 
-        gw_src="c-my_cluster_1_router.me" 
-        gw_dst="c-my_cluster_2_router.me">
-               <link_ctn id="backbone"/>
-     </ASroute>   
-</AS>
-</platform>
index f9770e3..d1e4bc5 100644 (file)
@@ -2,14 +2,14 @@
 
 p 3hosts 2links
 
-$ ns3/ns3 ${srcdir:=.}/ns3/3hosts_2links_p.xml ${srcdir:=.}/ns3/3hosts_2links_d.xml --cfg=network/model:NS3
+$ ns3/ns3 ${srcdir:=.}/examples/msg/ns3/3hosts_2links_p.xml ${srcdir:=.}/examples/msg/ns3/3hosts_2links_d.xml --cfg=network/model:NS3
 > [0.000000] [xbt_cfg/INFO] Configuration change: Set 'network/model' to 'NS3'
 > [0.000000] [surf_config/INFO] Switching workstation model to compound since you changed the network and/or cpu model(s)
 > [c:slave:(2) 0.700000] [msg_test/INFO] FLOW[1] : Receive 100 bytes from a to c
 
 p 6hosts 3links
 
-$ ns3/ns3 ${srcdir:=.}/ns3/3links-p.xml ${srcdir:=.}/ns3/3links-d.xml --cfg=network/model:NS3
+$ ns3/ns3 ${srcdir:=.}/examples/msg/ns3/3links-p.xml ${srcdir:=.}/examples/msg/ns3/3links-d.xml --cfg=network/model:NS3
 > [0.000000] [xbt_cfg/INFO] Configuration change: Set 'network/model' to 'NS3'
 > [0.000000] [surf_config/INFO] Switching workstation model to compound since you changed the network and/or cpu model(s)
 > [C1:slave:(2) 0.104428] [msg_test/INFO] FLOW[1] : Receive 100000 bytes from S1 to C1
@@ -17,7 +17,7 @@ $ ns3/ns3 ${srcdir:=.}/ns3/3links-p.xml ${srcdir:=.}/ns3/3links-d.xml --cfg=netw
 > [C3:slave:(6) 2.082380] [msg_test/INFO] FLOW[3] : Receive 2000000 bytes from S3 to C3
 
 
-$ ns3/ns3 ${srcdir:=.}/ns3/3links-p.xml ${srcdir:=.}/ns3/3links-d-timer.xml --cfg=network/model:NS3
+$ ns3/ns3 ${srcdir:=.}/examples/msg/ns3/3links-p.xml ${srcdir:=.}/examples/msg/ns3/3links-d-timer.xml --cfg=network/model:NS3
 > [0.000000] [xbt_cfg/INFO] Configuration change: Set 'network/model' to 'NS3'
 > [0.000000] [surf_config/INFO] Switching workstation model to compound since you changed the network and/or cpu model(s)
 > [C1:slave:(2) 0.104428] [msg_test/INFO] FLOW[1] : Receive 100000 bytes from S1 to C1
@@ -28,14 +28,14 @@ $ ns3/ns3 ${srcdir:=.}/ns3/3links-p.xml ${srcdir:=.}/ns3/3links-d-timer.xml --cf
 
 p One cluster
 
-$ ns3/ns3 ${srcdir:=.}/ns3/One_cluster.xml ${srcdir:=.}/ns3/One_cluster-d.xml --cfg=network/model:NS3
+$ ns3/ns3 ${srcdir:=.}/examples/platforms/cluster.xml ${srcdir:=.}/examples/msg/ns3/One_cluster-d.xml --cfg=network/model:NS3
 > [0.000000] [xbt_cfg/INFO] Configuration change: Set 'network/model' to 'NS3'
 > [0.000000] [surf_config/INFO] Switching workstation model to compound since you changed the network and/or cpu model(s)
 > [c-6.me:slave:(2) 0.006614] [msg_test/INFO] FLOW[1] : Receive 100 bytes from c-2.me to c-6.me
 
 p Two clusters
 
-$ ns3/ns3 ${srcdir:=.}/ns3/Two_clusters.xml ${srcdir:=.}/ns3/Two_clusters-d.xml --cfg=network/model:NS3
+$ ns3/ns3 ${srcdir:=.}/examples/platforms/clusters_routing_full.xml ${srcdir:=.}/examples/msg/ns3/Two_clusters-d.xml --cfg=network/model:NS3
 > [0.000000] [xbt_cfg/INFO] Configuration change: Set 'network/model' to 'NS3'
 > [0.000000] [surf_config/INFO] Switching workstation model to compound since you changed the network and/or cpu model(s)
 > [c-16.me:slave:(2) 0.012453] [msg_test/INFO] FLOW[1] : Receive 100 bytes from c-3.me to c-16.me
diff --git a/examples/platforms/Two_clusters.xml b/examples/platforms/Two_clusters.xml
deleted file mode 100644 (file)
index fc63a07..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version='1.0'?>
-<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
-<platform version="3">
-<AS  id="AS0"  routing="Full">
-  <cluster id="my_cluster_1" prefix="c-" suffix=".me"
-               radical="0-149" power="1000000000"    bw="125000000"     lat="5E-5"
-        bb_bw="2250000000" bb_lat="5E-4"/>
-               
-  <cluster id="my_cluster_2" prefix="c-" suffix=".me"
-           radical="150-299" power="1000000000"        bw="125000000"  lat="5E-5"
-           bb_bw="2250000000" bb_lat="5E-4"/>  
-       
-     <link id="backbone" bandwidth="1250000000" latency="5E-4"/>  
-       
-     <ASroute src="my_cluster_1" dst="my_cluster_2" 
-        gw_src="c-my_cluster_1_router.me" 
-        gw_dst="c-my_cluster_2_router.me">
-               <link_ctn id="backbone"/>
-     </ASroute>   
-     <ASroute src="my_cluster_2" dst="my_cluster_1" 
-        gw_src="c-my_cluster_2_router.me" 
-        gw_dst="c-my_cluster_1_router.me">
-               <link_ctn id="backbone"/>
-     </ASroute> 
-</AS>
-</platform>
similarity index 94%
rename from examples/platforms/One_cluster_one_host.xml
rename to examples/platforms/cluster_and_one_host.xml
index 1966d43..a789fcb 100644 (file)
@@ -2,7 +2,7 @@
 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
 
 <platform version="3">
-<AS  id="AS0"  routing="Floyd">
+<AS  id="AS0"  routing="bob">
     
   <cluster id="my_cluster_1" prefix="c-" suffix=""
                radical="0-1"   power="1000000000"    bw="125000000"     lat="5E-5"
diff --git a/examples/platforms/clusters_routing_full.xml b/examples/platforms/clusters_routing_full.xml
new file mode 100644 (file)
index 0000000..4598d7c
--- /dev/null
@@ -0,0 +1,43 @@
+<?xml version='1.0'?>
+<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
+<platform version="3">
+
+<!--                  _________________________________________
+                 ____|_____                                    |
+                |          |                                   |
+                |  router1 |                                   |
+    ____________|__________|_____________ backbone1            |
+      |   |   |              |     |   |                       | backbone
+    l0|        l1| l2|            l7|   l8|   |l9                     |
+      |   |   |   ........   |     |   |                       |
+      |                                |                       |
+    c-0.me                             c-9.me                  |
+                     __________________________________________|
+                 ___|______
+                |          |
+                |  router2 |
+    ____________|__________|_____________ backbone2
+      |   |   |              |     |   |       
+   l10|l11|l12|           l17| l18 |   | l19
+      |   |   |   ........   |     |   |
+      |                                |
+   c-10.me                             c-19.me 
+-->
+
+<AS id="AS0" routing="Full">
+       <cluster id="my_cluster_1" prefix="c-" suffix=".me" radical="0-9"
+               power="1000000000" bw="125000000" lat="5E-5" bb_bw="2250000000"
+               bb_lat="5E-4" />
+
+       <cluster id="my_cluster_2" prefix="c-" suffix=".me" radical="10-19"
+               power="1000000000" bw="125000000" lat="5E-5" bb_bw="2250000000"
+               bb_lat="5E-4" />
+
+       <link id="backbone" bandwidth="1250000000" latency="5E-4" />
+
+       <ASroute src="my_cluster_1" dst="my_cluster_2" gw_src="c-my_cluster_1_router.me"
+               gw_dst="c-my_cluster_2_router.me">
+               <link_ctn id="backbone" />
+       </ASroute>
+</AS>
+</platform>
index 664ae30..9d20e6c 100644 (file)
 
                </AS>
                <AS id="AS_nancy" routing="RuleBased" >
-                       <cluster id="AS_graphene" prefix="graphene-" suffix=".nancy.grid5000.fr"
-                               radical="1-144" power="16.673E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                       <AS id="AS_graphene" routing="RuleBased" >
+                               <cluster id="AS_sgraphene1" prefix="graphene-" suffix=".nancy.grid5000.fr"
+                                       radical="1-39" power="16.673E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                               <cluster id="AS_sgraphene2" prefix="graphene-" suffix=".nancy.grid5000.fr"
+                                       radical="40-74" power="16.673E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                               <cluster id="AS_sgraphene3" prefix="graphene-" suffix=".nancy.grid5000.fr"
+                                       radical="75-104" power="16.673E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                               <cluster id="AS_sgraphene4" prefix="graphene-" suffix=".nancy.grid5000.fr"
+                                       radical="105-144" power="16.673E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+
+                               <AS id="gw_AS_graphene" routing="Full">
+                                       <router id="graphene-AS_graphene_router.nancy.grid5000.fr"/>
+                               </AS>
+                               <link id="switch-graphene" bandwidth="1250000000" latency="5E-4"/>
+
+                               <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
+                                gw_src="graphene-AS_$1src_router.nancy.grid5000.fr"
+                                gw_dst="graphene-AS_$1dst_router.nancy.grid5000.fr">
+                                       <link_ctn id="switch-graphene"/>
+                               </ASroute>
+                               <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
+                                gw_src="graphene-AS_$1src_router.nancy.grid5000.fr"
+                                gw_dst="graphene-AS_graphene_router.nancy.grid5000.fr">
+                                       <link_ctn id="switch-graphene"/>
+                               </ASroute>
+                               <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
+                                gw_src="graphene-AS_graphene_router.nancy.grid5000.fr"
+                                gw_dst="graphene-AS_$1dst_router.nancy.grid5000.fr">
+                                       <link_ctn id="switch-graphene"/>
+                               </ASroute>
+                       </AS>
                        <link   id="link_graphene" bandwidth="1.25E9" latency="1.0E-4"/>
 
-                       <cluster id="AS_griffon" prefix="griffon-" suffix=".nancy.grid5000.fr"
-                               radical="1-92" power="20.678E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                       <AS id="AS_griffon" routing="RuleBased" >
+                               <cluster id="AS_sgriffon1" prefix="griffon-" suffix=".nancy.grid5000.fr"
+                                       radical="1-29,58-60" power="20.678E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                               <cluster id="AS_sgriffon2" prefix="griffon-" suffix=".nancy.grid5000.fr"
+                                       radical="30-57" power="20.678E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                               <cluster id="AS_sgriffon3" prefix="griffon-" suffix=".nancy.grid5000.fr"
+                                       radical="61-92" power="20.678E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+
+                               <AS id="gw_AS_griffon" routing="Full">
+                                       <router id="griffon-AS_griffon_router.nancy.grid5000.fr"/>
+                               </AS>
+                               <link id="switch-griffon" bandwidth="1250000000" latency="5E-4"/>
+
+                               <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
+                                gw_src="griffon-AS_$1src_router.nancy.grid5000.fr"
+                                gw_dst="griffon-AS_$1dst_router.nancy.grid5000.fr">
+                                       <link_ctn id="switch-griffon"/>
+                               </ASroute>
+                               <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
+                                gw_src="griffon-AS_$1src_router.nancy.grid5000.fr"
+                                gw_dst="griffon-AS_griffon_router.nancy.grid5000.fr">
+                                       <link_ctn id="switch-griffon"/>
+                               </ASroute>
+                               <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
+                                gw_src="griffon-AS_griffon_router.nancy.grid5000.fr"
+                                gw_dst="griffon-AS_$1dst_router.nancy.grid5000.fr">
+                                       <link_ctn id="switch-griffon"/>
+                               </ASroute>
+                       </AS>
                        <link   id="link_griffon" bandwidth="1.25E9" latency="1.0E-4"/>
 
                        <AS id="gw_AS_nancy" routing="Full">
 
                </AS>
                <AS id="AS_orsay" routing="RuleBased" >
-                       <cluster id="AS_gdx" prefix="gdx-" suffix=".orsay.grid5000.fr"
-                               radical="1-310" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                       <AS id="AS_gdx" routing="RuleBased" >
+                               <cluster id="AS_netgear01.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
+                                       radical="1-36" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                               <cluster id="AS_netgear02.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
+                                       radical="37-72" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                               <cluster id="AS_netgear03.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
+                                       radical="73-108" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                               <cluster id="AS_netgear04.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
+                                       radical="109-144" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                               <cluster id="AS_netgear05.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
+                                       radical="145-180" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                               <cluster id="AS_netgear06.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
+                                       radical="193-216" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                               <cluster id="AS_netgear07.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
+                                       radical="217-252" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                               <cluster id="AS_netgear08.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
+                                       radical="253-288" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                               <cluster id="AS_procurve-bmc-09.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
+                                       radical="289-310" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                               <cluster id="AS_switch14.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
+                                       radical="181-186" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+                               <cluster id="AS_switch15.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
+                                       radical="187-192" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
+                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
+
+                               <AS id="gw_AS_gdx" routing="Full">
+                                       <router id="gdx-AS_gdx_router.orsay.grid5000.fr"/>
+                               </AS>
+                               <link id="switch-gdx" bandwidth="1250000000" latency="5E-4"/>
+
+                               <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
+                                gw_src="gdx-AS_$1src_router.orsay.grid5000.fr"
+                                gw_dst="gdx-AS_$1dst_router.orsay.grid5000.fr">
+                                       <link_ctn id="switch-gdx"/>
+                               </ASroute>
+                               <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
+                                gw_src="gdx-AS_$1src_router.orsay.grid5000.fr"
+                                gw_dst="gdx-AS_gdx_router.orsay.grid5000.fr">
+                                       <link_ctn id="switch-gdx"/>
+                               </ASroute>
+                               <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
+                                gw_src="gdx-AS_gdx_router.orsay.grid5000.fr"
+                                gw_dst="gdx-AS_$1dst_router.orsay.grid5000.fr">
+                                       <link_ctn id="switch-gdx"/>
+                               </ASroute>
+                       </AS>
                        <link   id="link_gdx" bandwidth="1.25E9" latency="1.0E-4"/>
 
                        <cluster id="AS_netgdx" prefix="netgdx-" suffix=".orsay.grid5000.fr"
diff --git a/examples/platforms/g5k_cabinets.xml b/examples/platforms/g5k_cabinets.xml
deleted file mode 100644 (file)
index 9d20e6c..0000000
+++ /dev/null
@@ -1,565 +0,0 @@
-<?xml version='1.0'?>
-<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
-<platform version="3">
-       <AS id="AS_grid5000" routing="Floyd" >
-               <AS id="AS_interne" routing="Floyd">
-                       <router id="lille"/>
-                       <router id="paris"/>
-                       <router id="nancy"/>
-                       <router id="rennes"/>
-                       <router id="lyon"/>
-                       <router id="bordeaux"/>
-                       <router id="grenoble"/>
-                       <router id="marseille"/>
-                       <router id="toulouse"/>
-                       <router id="sophia"/>
-
-                       <link id="Lille_Paris"        bandwidth="1.25E9" latency="1.0E-4"/>
-                       <link id="Paris_Nancy"        bandwidth="1.25E9" latency="1.0E-4"/>
-                       <link id="Paris_Rennes"       bandwidth="1.25E9" latency="1.0E-4"/>
-                       <link id="Paris_Lyon"         bandwidth="1.25E9" latency="1.0E-4"/>
-                       <link id="Bordeaux_Lyon"      bandwidth="1.25E9" latency="1.0E-4"/>
-                       <link id="Lyon_Grenoble"      bandwidth="1.25E9" latency="1.0E-4"/>
-                       <link id="Lyon_Marseille"     bandwidth="1.25E9" latency="1.0E-4"/>
-                       <link id="Marseille_Sophia"   bandwidth="1.25E9" latency="1.0E-4"/>
-                       <link id="Marseille_Toulouse" bandwidth="1.25E9" latency="1.0E-4"/>
-
-               <route src="lille"     dst="paris"     ><link_ctn id="Lille_Paris"/></route>
-               <route src="paris"     dst="nancy"     ><link_ctn id="Paris_Nancy"/></route>
-               <route src="paris"     dst="rennes"    ><link_ctn id="Paris_Rennes"/></route>
-               <route src="paris"     dst="lyon"      ><link_ctn id="Paris_Lyon"/></route>
-               <route src="bordeaux"  dst="lyon"      ><link_ctn id="Bordeaux_Lyon"/></route>
-               <route src="lyon"      dst="grenoble"  ><link_ctn id="Lyon_Grenoble"/></route>
-               <route src="lyon"      dst="marseille" ><link_ctn id="Lyon_Marseille"/></route>
-               <route src="marseille" dst="sophia"    ><link_ctn id="Marseille_Sophia"/></route>
-               <route src="marseille" dst="toulouse"  ><link_ctn id="Marseille_Toulouse"/></route>
-               </AS>
-               <AS id="AS_bordeaux" routing="RuleBased" >
-                       <cluster id="AS_bordeplage" prefix="bordeplage-" suffix=".bordeaux.grid5000.fr"
-                               radical="1-51" power="5.2297E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_bordeplage" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <cluster id="AS_bordereau" prefix="bordereau-" suffix=".bordeaux.grid5000.fr"
-                               radical="1-93" power="8.8925E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_bordereau" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <cluster id="AS_borderline" prefix="borderline-" suffix=".bordeaux.grid5000.fr"
-                               radical="1-10" power="13.357E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_borderline" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <AS id="gw_AS_bordeaux" routing="Full">
-                               <router id="gw_bordeaux"/>
-                       </AS>
-                       <link   id="link_gw_bordeaux" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.bordeaux.grid5000.fr"
-                               gw_dst="$1dst-AS_$1dst_router.bordeaux.grid5000.fr"
-                               symmetrical="YES">
-                                       <link_ctn id="link_$1src"/>
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-                       <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.bordeaux.grid5000.fr"
-                               gw_dst="gw_$1dst"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1src"/>
-                       </ASroute>
-
-                       <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="gw_$1src"
-                               gw_dst="$1dst-AS_$1dst_router.bordeaux.grid5000.fr"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-               </AS>
-               <AS id="AS_grenoble" routing="RuleBased" >
-                       <cluster id="AS_adonis" prefix="adonis-" suffix=".grenoble.grid5000.fr"
-                               radical="1-12" power="23.681E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_adonis" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <cluster id="AS_edel" prefix="edel-" suffix=".grenoble.grid5000.fr"
-                               radical="1-72" power="23.492E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_edel" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <cluster id="AS_genepi" prefix="genepi-" suffix=".grenoble.grid5000.fr"
-                               radical="1-34" power="21.175E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_genepi" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <AS id="gw_AS_grenoble" routing="Full">
-                               <router id="gw_grenoble"/>
-                       </AS>
-                       <link   id="link_gw_grenoble" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.grenoble.grid5000.fr"
-                               gw_dst="$1dst-AS_$1dst_router.grenoble.grid5000.fr"
-                               symmetrical="YES">
-                                       <link_ctn id="link_$1src"/>
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-                       <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.grenoble.grid5000.fr"
-                               gw_dst="gw_$1dst"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1src"/>
-                       </ASroute>
-
-                       <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="gw_$1src"
-                               gw_dst="$1dst-AS_$1dst_router.grenoble.grid5000.fr"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-               </AS>
-               <AS id="AS_lille" routing="RuleBased" >
-                       <cluster id="AS_chicon" prefix="chicon-" suffix=".lille.grid5000.fr"
-                               radical="1-26" power="8.9618E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_chicon" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <cluster id="AS_chimint" prefix="chimint-" suffix=".lille.grid5000.fr"
-                               radical="1-20" power="23.531E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_chimint" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <cluster id="AS_chinqchint" prefix="chinqchint-" suffix=".lille.grid5000.fr"
-                               radical="1-46" power="22.270E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_chinqchint" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <cluster id="AS_chirloute" prefix="chirloute-" suffix=".lille.grid5000.fr"
-                               radical="1-8" power="24.473E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_chirloute" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <AS id="gw_AS_lille" routing="Full">
-                               <router id="gw_lille"/>
-                       </AS>
-                       <link   id="link_gw_lille" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.lille.grid5000.fr"
-                               gw_dst="$1dst-AS_$1dst_router.lille.grid5000.fr"
-                               symmetrical="YES">
-                                       <link_ctn id="link_$1src"/>
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-                       <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.lille.grid5000.fr"
-                               gw_dst="gw_$1dst"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1src"/>
-                       </ASroute>
-
-                       <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="gw_$1src"
-                               gw_dst="$1dst-AS_$1dst_router.lille.grid5000.fr"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-               </AS>
-               <AS id="AS_lyon" routing="RuleBased" >
-                       <cluster id="AS_capricorne" prefix="capricorne-" suffix=".lyon.grid5000.fr"
-                               radical="1-56" power="4.7233E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_capricorne" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <cluster id="AS_sagittaire" prefix="sagittaire-" suffix=".lyon.grid5000.fr"
-                               radical="1-79" power="5.6693E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_sagittaire" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <AS id="gw_AS_lyon" routing="Full">
-                               <router id="gw_lyon"/>
-                       </AS>
-                       <link   id="link_gw_lyon" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.lyon.grid5000.fr"
-                               gw_dst="$1dst-AS_$1dst_router.lyon.grid5000.fr"
-                               symmetrical="YES">
-                                       <link_ctn id="link_$1src"/>
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-                       <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.lyon.grid5000.fr"
-                               gw_dst="gw_$1dst"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1src"/>
-                       </ASroute>
-
-                       <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="gw_$1src"
-                               gw_dst="$1dst-AS_$1dst_router.lyon.grid5000.fr"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-               </AS>
-               <AS id="AS_nancy" routing="RuleBased" >
-                       <AS id="AS_graphene" routing="RuleBased" >
-                               <cluster id="AS_sgraphene1" prefix="graphene-" suffix=".nancy.grid5000.fr"
-                                       radical="1-39" power="16.673E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                               <cluster id="AS_sgraphene2" prefix="graphene-" suffix=".nancy.grid5000.fr"
-                                       radical="40-74" power="16.673E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                               <cluster id="AS_sgraphene3" prefix="graphene-" suffix=".nancy.grid5000.fr"
-                                       radical="75-104" power="16.673E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                               <cluster id="AS_sgraphene4" prefix="graphene-" suffix=".nancy.grid5000.fr"
-                                       radical="105-144" power="16.673E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-
-                               <AS id="gw_AS_graphene" routing="Full">
-                                       <router id="graphene-AS_graphene_router.nancy.grid5000.fr"/>
-                               </AS>
-                               <link id="switch-graphene" bandwidth="1250000000" latency="5E-4"/>
-
-                               <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
-                                gw_src="graphene-AS_$1src_router.nancy.grid5000.fr"
-                                gw_dst="graphene-AS_$1dst_router.nancy.grid5000.fr">
-                                       <link_ctn id="switch-graphene"/>
-                               </ASroute>
-                               <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
-                                gw_src="graphene-AS_$1src_router.nancy.grid5000.fr"
-                                gw_dst="graphene-AS_graphene_router.nancy.grid5000.fr">
-                                       <link_ctn id="switch-graphene"/>
-                               </ASroute>
-                               <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
-                                gw_src="graphene-AS_graphene_router.nancy.grid5000.fr"
-                                gw_dst="graphene-AS_$1dst_router.nancy.grid5000.fr">
-                                       <link_ctn id="switch-graphene"/>
-                               </ASroute>
-                       </AS>
-                       <link   id="link_graphene" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <AS id="AS_griffon" routing="RuleBased" >
-                               <cluster id="AS_sgriffon1" prefix="griffon-" suffix=".nancy.grid5000.fr"
-                                       radical="1-29,58-60" power="20.678E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                               <cluster id="AS_sgriffon2" prefix="griffon-" suffix=".nancy.grid5000.fr"
-                                       radical="30-57" power="20.678E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                               <cluster id="AS_sgriffon3" prefix="griffon-" suffix=".nancy.grid5000.fr"
-                                       radical="61-92" power="20.678E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-
-                               <AS id="gw_AS_griffon" routing="Full">
-                                       <router id="griffon-AS_griffon_router.nancy.grid5000.fr"/>
-                               </AS>
-                               <link id="switch-griffon" bandwidth="1250000000" latency="5E-4"/>
-
-                               <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
-                                gw_src="griffon-AS_$1src_router.nancy.grid5000.fr"
-                                gw_dst="griffon-AS_$1dst_router.nancy.grid5000.fr">
-                                       <link_ctn id="switch-griffon"/>
-                               </ASroute>
-                               <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
-                                gw_src="griffon-AS_$1src_router.nancy.grid5000.fr"
-                                gw_dst="griffon-AS_griffon_router.nancy.grid5000.fr">
-                                       <link_ctn id="switch-griffon"/>
-                               </ASroute>
-                               <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
-                                gw_src="griffon-AS_griffon_router.nancy.grid5000.fr"
-                                gw_dst="griffon-AS_$1dst_router.nancy.grid5000.fr">
-                                       <link_ctn id="switch-griffon"/>
-                               </ASroute>
-                       </AS>
-                       <link   id="link_griffon" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <AS id="gw_AS_nancy" routing="Full">
-                               <router id="gw_nancy"/>
-                       </AS>
-                       <link   id="link_gw_nancy" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.nancy.grid5000.fr"
-                               gw_dst="$1dst-AS_$1dst_router.nancy.grid5000.fr"
-                               symmetrical="YES">
-                                       <link_ctn id="link_$1src"/>
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-                       <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.nancy.grid5000.fr"
-                               gw_dst="gw_$1dst"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1src"/>
-                       </ASroute>
-
-                       <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="gw_$1src"
-                               gw_dst="$1dst-AS_$1dst_router.nancy.grid5000.fr"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-               </AS>
-               <AS id="AS_orsay" routing="RuleBased" >
-                       <AS id="AS_gdx" routing="RuleBased" >
-                               <cluster id="AS_netgear01.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
-                                       radical="1-36" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                               <cluster id="AS_netgear02.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
-                                       radical="37-72" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                               <cluster id="AS_netgear03.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
-                                       radical="73-108" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                               <cluster id="AS_netgear04.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
-                                       radical="109-144" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                               <cluster id="AS_netgear05.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
-                                       radical="145-180" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                               <cluster id="AS_netgear06.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
-                                       radical="193-216" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                               <cluster id="AS_netgear07.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
-                                       radical="217-252" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                               <cluster id="AS_netgear08.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
-                                       radical="253-288" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                               <cluster id="AS_procurve-bmc-09.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
-                                       radical="289-310" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                               <cluster id="AS_switch14.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
-                                       radical="181-186" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                               <cluster id="AS_switch15.orsay.grid5000.fr" prefix="gdx-" suffix=".orsay.grid5000.fr"
-                                       radical="187-192" power="4.7153E9" bw="1.25E8" lat="1.0E-4"
-                                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-
-                               <AS id="gw_AS_gdx" routing="Full">
-                                       <router id="gdx-AS_gdx_router.orsay.grid5000.fr"/>
-                               </AS>
-                               <link id="switch-gdx" bandwidth="1250000000" latency="5E-4"/>
-
-                               <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
-                                gw_src="gdx-AS_$1src_router.orsay.grid5000.fr"
-                                gw_dst="gdx-AS_$1dst_router.orsay.grid5000.fr">
-                                       <link_ctn id="switch-gdx"/>
-                               </ASroute>
-                               <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
-                                gw_src="gdx-AS_$1src_router.orsay.grid5000.fr"
-                                gw_dst="gdx-AS_gdx_router.orsay.grid5000.fr">
-                                       <link_ctn id="switch-gdx"/>
-                               </ASroute>
-                               <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
-                                gw_src="gdx-AS_gdx_router.orsay.grid5000.fr"
-                                gw_dst="gdx-AS_$1dst_router.orsay.grid5000.fr">
-                                       <link_ctn id="switch-gdx"/>
-                               </ASroute>
-                       </AS>
-                       <link   id="link_gdx" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <cluster id="AS_netgdx" prefix="netgdx-" suffix=".orsay.grid5000.fr"
-                               radical="1-30" power="4.7144E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_netgdx" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <AS id="gw_AS_orsay" routing="Full">
-                               <router id="gw_orsay"/>
-                       </AS>
-                       <link   id="link_gw_orsay" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.orsay.grid5000.fr"
-                               gw_dst="$1dst-AS_$1dst_router.orsay.grid5000.fr"
-                               symmetrical="YES">
-                                       <link_ctn id="link_$1src"/>
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-                       <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.orsay.grid5000.fr"
-                               gw_dst="gw_$1dst"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1src"/>
-                       </ASroute>
-
-                       <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="gw_$1src"
-                               gw_dst="$1dst-AS_$1dst_router.orsay.grid5000.fr"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-               </AS>
-               <AS id="AS_rennes" routing="RuleBased" >
-                       <cluster id="AS_paradent" prefix="paradent-" suffix=".rennes.grid5000.fr"
-                               radical="1-64" power="21.496E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_paradent" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <cluster id="AS_paramount" prefix="paramount-" suffix=".rennes.grid5000.fr"
-                               radical="1-33" power="12.910E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_paramount" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <cluster id="AS_parapide" prefix="parapide-" suffix=".rennes.grid5000.fr"
-                               radical="1-25" power="30.130E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_parapide" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <cluster id="AS_parapluie" prefix="parapluie-" suffix=".rennes.grid5000.fr"
-                               radical="1-40" power="27.391E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_parapluie" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <AS id="gw_AS_rennes" routing="Full">
-                               <router id="gw_rennes"/>
-                       </AS>
-                       <link   id="link_gw_rennes" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.rennes.grid5000.fr"
-                               gw_dst="$1dst-AS_$1dst_router.rennes.grid5000.fr"
-                               symmetrical="YES">
-                                       <link_ctn id="link_$1src"/>
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-                       <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.rennes.grid5000.fr"
-                               gw_dst="gw_$1dst"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1src"/>
-                       </ASroute>
-
-                       <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="gw_$1src"
-                               gw_dst="$1dst-AS_$1dst_router.rennes.grid5000.fr"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-               </AS>
-               <AS id="AS_sophia" routing="RuleBased" >
-                       <cluster id="AS_helios" prefix="helios-" suffix=".sophia.grid5000.fr"
-                               radical="1-56" power="7.7318E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_helios" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <cluster id="AS_sol" prefix="sol-" suffix=".sophia.grid5000.fr"
-                               radical="1-50" power="8.9388E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_sol" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <cluster id="AS_suno" prefix="suno-" suffix=".sophia.grid5000.fr"
-                               radical="1-45" power="23.530E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_suno" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <AS id="gw_AS_sophia" routing="Full">
-                               <router id="gw_sophia"/>
-                       </AS>
-                       <link   id="link_gw_sophia" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.sophia.grid5000.fr"
-                               gw_dst="$1dst-AS_$1dst_router.sophia.grid5000.fr"
-                               symmetrical="YES">
-                                       <link_ctn id="link_$1src"/>
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-                       <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.sophia.grid5000.fr"
-                               gw_dst="gw_$1dst"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1src"/>
-                       </ASroute>
-
-                       <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="gw_$1src"
-                               gw_dst="$1dst-AS_$1dst_router.sophia.grid5000.fr"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-               </AS>
-               <AS id="AS_toulouse" routing="RuleBased" >
-                       <cluster id="AS_pastel" prefix="pastel-" suffix=".toulouse.grid5000.fr"
-                               radical="1-80" power="9.5674E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_pastel" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <cluster id="AS_violette" prefix="violette-" suffix=".toulouse.grid5000.fr"
-                               radical="1-52" power="5.1143E9" bw="1.25E8" lat="1.0E-4"
-                               bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-                       <link   id="link_violette" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <AS id="gw_AS_toulouse" routing="Full">
-                               <router id="gw_toulouse"/>
-                       </AS>
-                       <link   id="link_gw_toulouse" bandwidth="1.25E9" latency="1.0E-4"/>
-
-                       <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.toulouse.grid5000.fr"
-                               gw_dst="$1dst-AS_$1dst_router.toulouse.grid5000.fr"
-                               symmetrical="YES">
-                                       <link_ctn id="link_$1src"/>
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-                       <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
-                               gw_src="$1src-AS_$1src_router.toulouse.grid5000.fr"
-                               gw_dst="gw_$1dst"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1src"/>
-                       </ASroute>
-
-                       <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
-                               gw_src="gw_$1src"
-                               gw_dst="$1dst-AS_$1dst_router.toulouse.grid5000.fr"
-                               symmetrical="NO">
-                                       <link_ctn id="link_$1dst"/>
-                       </ASroute>
-
-               </AS>
-               <ASroute src="AS_toulouse" dst="AS_interne" gw_src="gw_toulouse" gw_dst="toulouse" symmetrical="YES">
-                       <link_ctn id="link_gw_toulouse"/>
-               </ASroute>
-               <ASroute src="AS_sophia" dst="AS_interne" gw_src="gw_sophia" gw_dst="sophia" symmetrical="YES">
-                       <link_ctn id="link_gw_sophia"/>
-               </ASroute>
-               <ASroute src="AS_rennes" dst="AS_interne" gw_src="gw_rennes" gw_dst="rennes" symmetrical="YES">
-                       <link_ctn id="link_gw_rennes"/>
-               </ASroute>
-               <ASroute src="AS_orsay" dst="AS_interne" gw_src="gw_orsay" gw_dst="paris" symmetrical="YES">
-                       <link_ctn id="link_gw_orsay"/>
-               </ASroute>
-               <ASroute src="AS_nancy" dst="AS_interne" gw_src="gw_nancy" gw_dst="nancy" symmetrical="YES">
-                       <link_ctn id="link_gw_nancy"/>
-               </ASroute>
-               <ASroute src="AS_lyon" dst="AS_interne" gw_src="gw_lyon" gw_dst="lyon" symmetrical="YES">
-                       <link_ctn id="link_gw_lyon"/>
-               </ASroute>
-               <ASroute src="AS_lille" dst="AS_interne" gw_src="gw_lille" gw_dst="lille" symmetrical="YES">
-                       <link_ctn id="link_gw_lille"/>
-               </ASroute>
-               <ASroute src="AS_grenoble" dst="AS_interne" gw_src="gw_grenoble" gw_dst="grenoble" symmetrical="YES">
-                       <link_ctn id="link_gw_grenoble"/>
-               </ASroute>
-               <ASroute src="AS_bordeaux" dst="AS_interne" gw_src="gw_bordeaux" gw_dst="bordeaux" symmetrical="YES">
-                       <link_ctn id="link_gw_bordeaux"/>
-               </ASroute>
-       </AS>
-</platform>
diff --git a/examples/platforms/nancy.xml b/examples/platforms/nancy.xml
deleted file mode 100644 (file)
index f21a9b1..0000000
+++ /dev/null
@@ -1,106 +0,0 @@
-<?xml version='1.0'?>
-<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
-<platform version="3">
-
-<AS id="AS_nancy" routing="RuleBased" >
-       <AS id="AS_graphene" routing="RuleBased" >
-               <cluster id="AS_sgraphene1" prefix="graphene-" suffix=".nancy.grid5000.fr"
-                       radical="1-39" power="16.673E9" bw="1.25E8" lat="1.0E-4"
-                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-               <cluster id="AS_sgraphene2" prefix="graphene-" suffix=".nancy.grid5000.fr"
-                       radical="40-74" power="16.673E9" bw="1.25E8" lat="1.0E-4"
-                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-               <cluster id="AS_sgraphene3" prefix="graphene-" suffix=".nancy.grid5000.fr"
-                       radical="75-104" power="16.673E9" bw="1.25E8" lat="1.0E-4"
-                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-               <cluster id="AS_sgraphene4" prefix="graphene-" suffix=".nancy.grid5000.fr"
-                       radical="105-144" power="16.673E9" bw="1.25E8" lat="1.0E-4"
-                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-
-               <AS id="gw_AS_graphene" routing="Full">
-                       <router id="graphene-AS_graphene_router.nancy.grid5000.fr"/>
-               </AS>
-               <link id="switch-graphene" bandwidth="1250000000" latency="5E-4"/>
-
-               <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
-                gw_src="graphene-AS_$1src_router.nancy.grid5000.fr"
-                gw_dst="graphene-AS_$1dst_router.nancy.grid5000.fr">
-                       <link_ctn id="switch-graphene"/>
-               </ASroute>
-               <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
-                gw_src="graphene-AS_$1src_router.nancy.grid5000.fr"
-                gw_dst="graphene-AS_graphene_router.nancy.grid5000.fr">
-                       <link_ctn id="switch-graphene"/>
-               </ASroute>
-               <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
-                gw_src="graphene-AS_graphene_router.nancy.grid5000.fr"
-                gw_dst="graphene-AS_$1dst_router.nancy.grid5000.fr">
-                       <link_ctn id="switch-graphene"/>
-               </ASroute>
-       </AS>
-       <link   id="link_graphene" bandwidth="1.25E9" latency="1.0E-4"/>
-
-       <AS id="AS_griffon" routing="RuleBased" >
-               <cluster id="AS_sgriffon1" prefix="griffon-" suffix=".nancy.grid5000.fr"
-                       radical="1-29;58-60" power="20.678E9" bw="1.25E8" lat="1.0E-4"
-                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-               <cluster id="AS_sgriffon2" prefix="griffon-" suffix=".nancy.grid5000.fr"
-                       radical="30-57" power="20.678E9" bw="1.25E8" lat="1.0E-4"
-                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-               <cluster id="AS_sgriffon3" prefix="griffon-" suffix=".nancy.grid5000.fr"
-                       radical="61-92" power="20.678E9" bw="1.25E8" lat="1.0E-4"
-                       bb_bw="1.25E9" bb_lat="1.0E-4"></cluster>
-
-               <AS id="gw_AS_griffon" routing="Full">
-                       <router id="griffon-AS_griffon_router.nancy.grid5000.fr"/>
-               </AS>
-               <link id="switch-griffon" bandwidth="1250000000" latency="5E-4"/>
-
-               <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
-                gw_src="griffon-AS_$1src_router.nancy.grid5000.fr"
-                gw_dst="griffon-AS_$1dst_router.nancy.grid5000.fr">
-                       <link_ctn id="switch-griffon"/>
-               </ASroute>
-               <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
-                gw_src="griffon-AS_$1src_router.nancy.grid5000.fr"
-                gw_dst="griffon-AS_griffon_router.nancy.grid5000.fr">
-                       <link_ctn id="switch-griffon"/>
-               </ASroute>
-               <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
-                gw_src="griffon-AS_griffon_router.nancy.grid5000.fr"
-                gw_dst="griffon-AS_$1dst_router.nancy.grid5000.fr">
-                       <link_ctn id="switch-griffon"/>
-               </ASroute>
-       </AS>
-       <link   id="link_griffon" bandwidth="1.25E9" latency="1.0E-4"/>
-
-       <AS id="gw_AS_nancy" routing="Full">
-               <router id="gw_nancy"/>
-       </AS>
-       <link   id="link_gw_nancy" bandwidth="1.25E9" latency="1.0E-4"/>
-
-       <ASroute src="^AS_(.*)$" dst="^AS_(.*)$"
-               gw_src="$1src-AS_$1src_router.nancy.grid5000.fr"
-               gw_dst="$1dst-AS_$1dst_router.nancy.grid5000.fr"
-               symmetrical="YES">
-                       <link_ctn id="link_$1src"/>
-                       <link_ctn id="link_$1dst"/>
-       </ASroute>
-
-       <ASroute src="^AS_(.*)$" dst="^gw_AS_(.*)$"
-               gw_src="$1src-AS_$1src_router.nancy.grid5000.fr"
-               gw_dst="gw_$1dst"
-               symmetrical="NO">
-                       <link_ctn id="link_$1src"/>
-       </ASroute>
-
-       <ASroute src="^gw_AS_(.*)$" dst="^AS_(.*)$"
-               gw_src="gw_$1src"
-               gw_dst="$1dst-AS_$1dst_router.nancy.grid5000.fr"
-               symmetrical="NO">
-                       <link_ctn id="link_$1dst"/>
-       </ASroute>
-
-</AS>
-
-</platform>
index 91ef507..db881dc 100644 (file)
@@ -9,19 +9,19 @@
 
        <AS id="AS0" routing="Full">
 
-               <storage_type id="samsung" model="RAID5" content="storage_content.txt">
+               <storage_type id="samsung" model="RAID5" content="content/storage_content.txt">
                        <prop id="Bwrite" value="30000000" /> <!-- 30Mo/s -->
                        <prop id="Bread" value="100000000" /> <!-- 100Mo/s -->
                        <prop id="Bconnexion" value="6000000000" /> <!-- 6Go/s -->
                </storage_type>
 
-               <storage_type id="crucial" model="SSD" content="storage_content.txt">
+               <storage_type id="crucial" model="SSD" content="content/storage_content.txt">
                        <prop id="Bwrite" value="30000000" />
                        <prop id="Bread" value="100000000" />
                        <prop id="Bconnexion" value="6000000000" />
                </storage_type>
 
-               <storage_type id="wdigital" model="RAID0" content="storage_content.txt">
+               <storage_type id="wdigital" model="RAID0" content="content/storage_content.txt">
                        <prop id="Bwrite" value="30000000" />
                        <prop id="Bread" value="100000000" />
                        <prop id="Bconnexion" value="6000000000" />
index 50b6a66..5b171c1 100644 (file)
@@ -122,7 +122,7 @@ typedef struct s_smx_process *m_process_t;
 #ifdef MSG_USE_DEPRECATED
 /* ********************************* Channel ******************************** */
 /** @brief Channel datatype  
-    @ingroup m_datatypes_management 
+    @ingroup msg_deprecated_functions
 
     A <em>channel</em>  is a number and identifies a mailbox type (just as a 
     port number does).
index c0d9448..a398c40 100644 (file)
@@ -18,7 +18,7 @@
  *     
  *  This is the list of all existing log categories in SimGrid.
  *  This list was automatically extracted from the source code by
- *  the src/xbt_log_extract_hierarchy utility.
+ *  the tools/doxygen/xbt_log_extract_hierarchy.pl utility.
  *     
  *  You can thus be certain that it is uptodate, but it may somehow
  *  lack a final manual touch.
@@ -35,6 +35,7 @@
 
 #include "xbt/misc.h"
 #include <stdarg.h>
+#include <stddef.h>             /* NULL */
 SG_BEGIN_DECL()
 /**\brief Log priorities
  * \ingroup XBT_log
@@ -85,8 +86,10 @@ typedef enum {
 #endif                          /* !defined(NLOG) */
 
 /* Transforms a category name to a global variable name. */
-#define _XBT_LOGV(cat)   _XBT_LOG_CONCAT(_simgrid_log_category__, cat)
-#define _XBT_LOG_CONCAT(x,y) x ## y
+#define _XBT_LOGV(cat) _XBT_LOG_CONCAT(_simgrid_log_category__, cat)
+#define _XBT_LOGV_CTOR(cat) _XBT_LOG_CONCAT2(_XBT_LOGV(cat), __constructor__)
+#define _XBT_LOG_CONCAT(x, y) x ## y
+#define _XBT_LOG_CONCAT2(x, y) _XBT_LOG_CONCAT(x, y)
 
 /* The root of the category hierarchy. */
 #define XBT_LOG_ROOT_CAT   root
@@ -101,41 +104,60 @@ typedef enum {
  * Unfortunately, Visual C builder does not target any standard
  * compliance, and C99 is not an exception to this unfortunate rule.
  * 
- * So, we work this around by adding a XBT_LOG_CONNECT() macro,
+ * So, we work this around by adding a XBT_LOG_CONNECT_PARENT() macro,
  * allowing to connect a child to its parent. It should be used
  * during the initialization of the code, before the child category
  * gets used.
  * 
- * When compiling with gcc, this is not necessary (XBT_LOG_CONNECT
+ * When compiling with gcc, this is not necessary (XBT_LOG_CONNECT_PARENT
  * defines to nothing). When compiling with MSVC, this is needed if
  * you don't want to see your child category become a child of root
  * directly.
  */
 #if defined(_MSC_VER)
 # define _XBT_LOG_PARENT_INITIALIZER(parent) NULL
-# define XBT_LOG_CONNECT(parent_cat,child)       _XBT_LOGV(child).parent = &_XBT_LOGV(parent_cat)
+# define XBT_LOG_CONNECT_PARENT(child, parent_cat)                      \
+  _XBT_LOGV(child).parent = &_XBT_LOGV(parent_cat)
 #else
 # define _XBT_LOG_PARENT_INITIALIZER(parent) &_XBT_LOGV(parent)
-# define XBT_LOG_CONNECT(parent_cat,child)      /*  xbt_assert(_XBT_LOGV(child).parent == &_XBT_LOGV(parent_cat)) */
+# define XBT_LOG_CONNECT_PARENT(child, parent_cat)                      \
+  /* xbt_assert(_XBT_LOGV(child).parent == &_XBT_LOGV(parent_cat)); */  \
+  ((void)0)
 #endif
 
+#define XBT_LOG_CONNECT(cat)                    \
+  if (1) {                                      \
+    extern void _XBT_LOGV_CTOR(cat)(void);      \
+    _XBT_LOGV_CTOR(cat)();                      \
+  } else ((void)0)
+
 /* XBT_LOG_NEW_SUBCATEGORY_helper:
  * Implementation of XBT_LOG_NEW_SUBCATEGORY, which must declare "extern parent" in addition
  * to avoid an extra declaration of root when XBT_LOG_NEW_SUBCATEGORY is called by
  * XBT_LOG_NEW_CATEGORY */
-#define XBT_LOG_NEW_SUBCATEGORY_helper(catName, parent, desc) \
-    XBT_EXPORT_NO_IMPORT(s_xbt_log_category_t) _XBT_LOGV(catName) = {       \
-        _XBT_LOG_PARENT_INITIALIZER(parent),            \
-        NULL /* firstChild */,                          \
-       NULL /* nextSibling */,                         \
-        #catName,                                       \
-        0 /*initialized */,                             \
-        xbt_log_priority_uninitialized /* threshold */, \
-        1 /* isThreshInherited */,                      \
-        NULL /* appender */,                            \
-       NULL /* layout */,                              \
-       1 /* additivity */                              \
-    }
+#define XBT_LOG_NEW_SUBCATEGORY_helper(catName, parent, desc)           \
+  XBT_PUBLIC(void) _XBT_LOGV_CTOR(catName)(void) _XBT_GNUC_CONSTRUCTOR(600); \
+  void _XBT_LOGV_CTOR(catName)(void)                                    \
+  {                                                                     \
+    XBT_LOG_EXTERNAL_CATEGORY(catName);                                 \
+    /* Note: _XBT_LOGV(parent) should be already declared here. */      \
+    XBT_LOG_CONNECT_PARENT(catName, parent);                            \
+    _xbt_log_cat_init(&_XBT_LOGV(catName), xbt_log_priority_uninitialized); \
+  }                                                                     \
+  XBT_EXPORT_NO_IMPORT(s_xbt_log_category_t) _XBT_LOGV(catName) = {     \
+    _XBT_LOG_PARENT_INITIALIZER(parent),                                \
+    NULL /* firstChild */,                                              \
+    NULL /* nextSibling */,                                             \
+    #catName,                                                           \
+    desc,                                                               \
+    0 /*initialized */,                                                 \
+    xbt_log_priority_uninitialized /* threshold */,                     \
+    1 /* isThreshInherited */,                                          \
+    NULL /* appender */,                                                \
+    NULL /* layout */,                                                  \
+    1 /* additivity */                                                  \
+  }
+
 /**
  * \ingroup XBT_log
  * \param catName name of new category
@@ -146,8 +168,8 @@ typedef enum {
  * Defines a new subcategory of the parent. 
  */
 #define XBT_LOG_NEW_SUBCATEGORY(catName, parent, desc)    \
-    extern s_xbt_log_category_t _XBT_LOGV(parent); \
-    XBT_LOG_NEW_SUBCATEGORY_helper(catName, parent, desc) \
+  XBT_LOG_EXTERNAL_CATEGORY(parent);                      \
+  XBT_LOG_NEW_SUBCATEGORY_helper(catName, parent, desc)   \
 
 /**
  * \ingroup XBT_log  
@@ -248,6 +270,7 @@ struct xbt_log_category_s {
   xbt_log_category_t firstChild;
   xbt_log_category_t nextSibling;
   const char *name;
+  const char *description;
   int initialized;
   int threshold;
   int isThreshInherited;
index 9ef7324..a77a7fe 100644 (file)
@@ -17,8 +17,8 @@
               __attribute__((__format__ (__scanf__, format_idx, arg_idx)))
 # define _XBT_GNUC_NORETURN __attribute__((__noreturn__))
 # define _XBT_GNUC_UNUSED  __attribute__((__unused__))
-# define _XBT_GNUC_CONSTRUCTOR __attribute__((__constructor__))
-# define _XBT_GNUC_DESTRUCTOR __attribute__((__destructor__))
+# define _XBT_GNUC_CONSTRUCTOR(prio) __attribute__((__constructor__ (prio)))
+# define _XBT_GNUC_DESTRUCTOR(prio) __attribute__((__destructor__ (prio)))
 # undef _XBT_NEED_INIT_PRAGMA
 
 #else                           /* !__GNUC__ */
@@ -26,8 +26,8 @@
 # define _XBT_GNUC_SCANF( format_idx, arg_idx )
 # define _XBT_GNUC_NORETURN
 # define _XBT_GNUC_UNUSED
-# define _XBT_GNUC_CONSTRUCTOR
-# define _XBT_GNUC_DESTRUCTOR
+# define _XBT_GNUC_CONSTRUCTOR(prio)
+# define _XBT_GNUC_DESTRUCTOR(prio)
 # define  _XBT_NEED_INIT_PRAGMA 1
 
 #endif                          /* !__GNUC__ */
diff --git a/src/bindings/bindings_global.c b/src/bindings/bindings_global.c
new file mode 100644 (file)
index 0000000..90d0d28
--- /dev/null
@@ -0,0 +1,8 @@
+/* Copyright (c) 2012 Da SimGrid Team. All rights reserved.                 */
+
+/* This program is free software; you can redistribute it and/or modify it
+ * under the terms of the license (GNU LGPL) which comes with this package. */
+
+#include <xbt/log.h>
+
+XBT_LOG_NEW_CATEGORY(bindings, "All bindings categories");
index 738b911..d19d7bb 100644 (file)
@@ -13,8 +13,7 @@
 #include "gras/Msg/msg_private.h"
 #include "gras/Transport/transport_interface.h"
 
-XBT_LOG_EXTERNAL_CATEGORY(gras_msg);
-XBT_LOG_DEFAULT_CATEGORY(gras_msg);
+XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(gras_msg);
 
 void gras_msg_recv(xbt_socket_t sock, gras_msg_t msg);
 
index 1841604..44ca9d5 100644 (file)
@@ -211,12 +211,8 @@ xbt_dict_t gras_os_host_properties(void)
  * (these functions are called by the stuff generated by gras_stub_generator)
  * **************************************************************************/
 
-XBT_LOG_EXTERNAL_CATEGORY(gras_trp);
-XBT_LOG_EXTERNAL_CATEGORY(gras_trp_sg);
-
 void gras_global_init(int *argc, char **argv)
 {
-  XBT_LOG_CONNECT(gras_trp_sg, gras_trp);
   SIMIX_global_init(argc, argv);
 }
 
index f94430d..9267a50 100644 (file)
@@ -26,7 +26,7 @@
 #include "portable.h"           /* hexa_*(); signalling stuff */
 
 XBT_LOG_NEW_DEFAULT_CATEGORY(gras,
-                             "All GRAS categories (cf. section \ref GRAS_API)");
+                             "All GRAS categories (cf. section \\ref GRAS_API)");
 static int gras_running_process = 0;
 #if defined(HAVE_SIGNAL) && defined(HAVE_SIGNAL_H)
 static void gras_sigusr_handler(int sig)
@@ -52,15 +52,6 @@ static void gras_sigint_handler(int sig)
 }
 #endif
 
-XBT_LOG_EXTERNAL_CATEGORY(gras_modules);
-XBT_LOG_EXTERNAL_CATEGORY(gras_msg);
-XBT_LOG_EXTERNAL_CATEGORY(gras_msg_read);
-XBT_LOG_EXTERNAL_CATEGORY(gras_msg_rpc);
-XBT_LOG_EXTERNAL_CATEGORY(gras_timer);
-XBT_LOG_EXTERNAL_CATEGORY(gras_virtu);
-XBT_LOG_EXTERNAL_CATEGORY(gras_virtu_emul);
-XBT_LOG_EXTERNAL_CATEGORY(gras_virtu_process);
-
 /**
  * @ingroup GRAS_API
  * \brief Initialize the gras mechanisms.
@@ -82,19 +73,6 @@ void gras_init(int *argc, char **argv)
    */
   if (gras_running_process == 0) {
     first = 1;
-    /* Connect our log channels: that must be done manually under windows */
-
-    XBT_LOG_CONNECT(gras_modules, gras);
-
-    XBT_LOG_CONNECT(gras_msg, gras);
-    XBT_LOG_CONNECT(gras_msg_read, gras_msg);
-    XBT_LOG_CONNECT(gras_msg_rpc, gras_msg);
-
-    XBT_LOG_CONNECT(gras_timer, gras);
-
-    XBT_LOG_CONNECT(gras_virtu, gras);
-    XBT_LOG_CONNECT(gras_virtu_emul, gras_virtu);
-    XBT_LOG_CONNECT(gras_virtu_process, gras_virtu);
 
     if (!getenv("GRAS_NO_WARN_EXPERIMENTAL"))
       XBT_WARN("GRAS is not well maintained anymore. We consider it to be experimental (and not stable anymore) since SimGrid 3.6. Sorry about it, please consider contributing to improve this situation");
index fd3ad94..2a75a5f 100644 (file)
 #include "xbt/sysdep.h"
 #include "simix/simix.h"
 
-XBT_LOG_EXTERNAL_CATEGORY(xbt);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_sync_rl);
-XBT_LOG_EXTERNAL_CATEGORY(gras_trp);
-XBT_LOG_EXTERNAL_CATEGORY(gras_trp_file);
-XBT_LOG_EXTERNAL_CATEGORY(gras_trp_tcp);
-
-/*void xbt_context_mod_init(void)
-{
-  XBT_LOG_CONNECT(xbt_sync_rl, xbt);
-  XBT_LOG_CONNECT(gras_trp_file, gras_trp);
-  XBT_LOG_CONNECT(gras_trp_tcp, gras_trp);
-}*/
-
-/*void xbt_context_mod_exit(void)
-{
-}*/
-
 void SIMIX_display_process_status(void)
 {
 }
index 5ebf9da..ba06c74 100644 (file)
@@ -59,6 +59,8 @@ void lmm_elem_set_value(lmm_system_t sys, lmm_constraint_t cnst,
 
 lmm_constraint_t lmm_get_cnst_from_var(lmm_system_t sys,
                                        lmm_variable_t var, int num);
+double lmm_get_cnst_weight_from_var(lmm_system_t sys, lmm_variable_t var,
+                                    int num);
 int lmm_get_number_of_cnst_from_var(lmm_system_t sys, lmm_variable_t var);
 lmm_variable_t lmm_get_var_from_cnst(lmm_system_t sys,
                                      lmm_constraint_t cnst,
index fd6c9bc..e5c51c6 100644 (file)
@@ -120,8 +120,6 @@ void jedule_sd_cleanup() {
 
 void jedule_sd_init() {
 
-       XBT_LOG_CONNECT(jed_sd, jedule);
-
        jedule_init_output();
 }
 
index 6ea9268..9190600 100644 (file)
@@ -13,7 +13,7 @@
 #include "xbt/fifo.h"
 #include "mc_private.h"
 
-
+XBT_LOG_NEW_CATEGORY(mc, "All MC categories");
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_global, mc,
                                 "Logging specific to MC (global)");
 
index c305f4e..127a8db 100644 (file)
@@ -12,6 +12,7 @@
 #include "xbt/virtu.h"
 #include "xbt/ex.h"             /* ex_backtrace_display */
 
+XBT_LOG_NEW_CATEGORY(msg, "All MSG categories");
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_kernel, msg,
                                 "Logging specific to MSG (kernel)");
 
@@ -27,12 +28,6 @@ void MSG_global_init_args(int *argc, char **argv)
   MSG_global_init(argc, argv);
 }
 
-
-XBT_LOG_EXTERNAL_CATEGORY(msg_gos);
-XBT_LOG_EXTERNAL_CATEGORY(msg_kernel);
-XBT_LOG_EXTERNAL_CATEGORY(msg_mailbox);
-XBT_LOG_EXTERNAL_CATEGORY(msg_process);
-
 /** \ingroup msg_simulation
  * \brief Initialize some MSG internal data.
  */
@@ -44,12 +39,6 @@ void MSG_global_init(int *argc, char **argv)
 
   xbt_getpid = MSG_process_self_PID;
   if (!msg_global) {
-    /* Connect our log channels: that must be done manually under windows */
-    XBT_LOG_CONNECT(msg_gos, msg);
-    XBT_LOG_CONNECT(msg_kernel, msg);
-    XBT_LOG_CONNECT(msg_mailbox, msg);
-    XBT_LOG_CONNECT(msg_process, msg);
-
     SIMIX_global_init(argc, argv);
 
     msg_global = xbt_new0(s_MSG_Global_t, 1);
index 2340ac0..45e9dd4 100644 (file)
@@ -920,7 +920,7 @@ const char *MSG_task_get_category (m_task_t task)
 }
 
 #ifdef MSG_USE_DEPRECATED
-/** \ingroup msg_gos_functions
+/** \ingroup msg_deprecated_functions
  *
  * \brief Return the last value returned by a MSG function (except
  * MSG_get_errno...).
@@ -930,7 +930,7 @@ MSG_error_t MSG_get_errno(void)
   return PROCESS_GET_ERRNO();
 }
 
-/** \ingroup msg_gos_functions
+/** \ingroup msg_deprecated_functions
  * \brief Put a task on a channel of an host and waits for the end of the
  * transmission.
  *
@@ -961,7 +961,7 @@ MSG_error_t MSG_task_put(m_task_t task, m_host_t dest, m_channel_t channel)
   return MSG_task_put_with_timeout(task, dest, channel, -1.0);
 }
 
-/** \ingroup msg_gos_functions
+/** \ingroup msg_deprecated_functions
  * \brief Does exactly the same as MSG_task_put but with a bounded transmition
  * rate.
  *
@@ -976,7 +976,9 @@ MSG_task_put_bounded(m_task_t task, m_host_t dest, m_channel_t channel,
   return MSG_task_put(task, dest, channel);
 }
 
-/** \ingroup msg_gos_functions \brief Put a task on a channel of an
+/** \ingroup msg_deprecated_functions
+ *
+ * \brief Put a task on a channel of an
  * host (with a timeout on the waiting of the destination host) and
  * waits for the end of the transmission.
  *
@@ -1019,7 +1021,7 @@ MSG_task_put_with_timeout(m_task_t task, m_host_t dest,
                                    (dest, channel), task, timeout);
 }
 
-/** \ingroup msg_gos_functions
+/** \ingroup msg_deprecated_functions
  * \brief Test whether there is a pending communication on a channel, and who sent it.
  *
  * It takes one parameter.
@@ -1046,7 +1048,7 @@ int MSG_task_probe_from(m_channel_t channel)
   return MSG_process_get_PID(task->simdata->sender);
 }
 
-/** \ingroup msg_gos_functions
+/** \ingroup msg_deprecated_functions
  * \brief Test whether there is a pending communication on a channel.
  *
  * It takes one parameter.
@@ -1067,7 +1069,7 @@ int MSG_task_Iprobe(m_channel_t channel)
                             (MSG_host_self(), channel));
 }
 
-/** \ingroup msg_gos_functions
+/** \ingroup msg_deprecated_functions
 
  * \brief Return the number of tasks waiting to be received on a \a
  channel and sent by \a host.
@@ -1094,7 +1096,7 @@ int MSG_task_probe_from_host(int channel, m_host_t host)
 
 }
 
-/** \ingroup msg_gos_functions
+/** \ingroup msg_deprecated_functions
  * \brief Listen on \a channel and waits for receiving a task from \a host.
  *
  * It takes three parameters.
@@ -1115,7 +1117,7 @@ MSG_task_get_from_host(m_task_t * task, m_channel_t channel, m_host_t host)
   return MSG_task_get_ext(task, channel, -1, host);
 }
 
-/** \ingroup msg_gos_functions
+/** \ingroup msg_deprecated_functions
  * \brief Listen on a channel and wait for receiving a task.
  *
  * It takes two parameters.
@@ -1134,7 +1136,7 @@ MSG_error_t MSG_task_get(m_task_t * task, m_channel_t channel)
   return MSG_task_get_with_timeout(task, channel, -1);
 }
 
-/** \ingroup msg_gos_functions
+/** \ingroup msg_deprecated_functions
  * \brief Listen on a channel and wait for receiving a task with a timeout.
  *
  * It takes three parameters.
index 8f11105..31ad28e 100644 (file)
@@ -30,10 +30,6 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(sd_kernel, sd,
 
 SD_global_t sd_global = NULL;
 
-XBT_LOG_EXTERNAL_CATEGORY(sd_kernel);
-XBT_LOG_EXTERNAL_CATEGORY(sd_task);
-XBT_LOG_EXTERNAL_CATEGORY(sd_workstation);
-
 /**
  * \brief Initialises SD internal data
  *
@@ -54,12 +50,6 @@ void SD_init(int *argc, char **argv)
 
   xbt_assert(sd_global == NULL, "SD_init() already called");
 
-  /* Connect our log channels: that must be done manually under windows */
-  XBT_LOG_CONNECT(sd_kernel, sd);
-  XBT_LOG_CONNECT(sd_task, sd);
-  XBT_LOG_CONNECT(sd_workstation, sd);
-
-
   sd_global = xbt_new(s_SD_global_t, 1);
   sd_global->workstation_list = NULL;
   sd_global->link_list = NULL;
index 913abb2..2c3b8d7 100644 (file)
 #include "xbt/ex.h"             /* ex_backtrace_display */
 #include "mc/mc.h"
 
-XBT_LOG_EXTERNAL_CATEGORY(simix);
-XBT_LOG_EXTERNAL_CATEGORY(simix_action);
-XBT_LOG_EXTERNAL_CATEGORY(simix_deployment);
-XBT_LOG_EXTERNAL_CATEGORY(simix_environment);
-XBT_LOG_EXTERNAL_CATEGORY(simix_host);
-XBT_LOG_EXTERNAL_CATEGORY(simix_process);
-XBT_LOG_EXTERNAL_CATEGORY(simix_synchro);
-XBT_LOG_EXTERNAL_CATEGORY(simix_context);
+XBT_LOG_NEW_CATEGORY(simix, "All SIMIX categories");
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_kernel, simix,
                                 "Logging specific to SIMIX (kernel)");
 
@@ -66,16 +59,6 @@ void SIMIX_global_init(int *argc, char **argv)
   s_smx_process_t proc;
 
   if (!simix_global) {
-    /* Connect our log channels: that must be done manually under windows */
-    XBT_LOG_CONNECT(simix_action, simix);
-    XBT_LOG_CONNECT(simix_deployment, simix);
-    XBT_LOG_CONNECT(simix_environment, simix);
-    XBT_LOG_CONNECT(simix_host, simix);
-    XBT_LOG_CONNECT(simix_kernel, simix);
-    XBT_LOG_CONNECT(simix_process, simix);
-    XBT_LOG_CONNECT(simix_synchro, simix);
-    XBT_LOG_CONNECT(simix_context, simix);
-
     simix_global = xbt_new0(s_smx_global_t, 1);
 
     simix_global->process_to_run = xbt_dynar_new(sizeof(smx_process_t), NULL);
@@ -334,33 +317,33 @@ void SIMIX_display_process_status(void)
       const char* action_description = "unknown";
       switch (process->waiting_action->type) {
 
-       case SIMIX_ACTION_EXECUTE:
-         action_description = "execution";
-         break;
+      case SIMIX_ACTION_EXECUTE:
+        action_description = "execution";
+        break;
 
-       case SIMIX_ACTION_PARALLEL_EXECUTE:
-         action_description = "parallel execution";
-         break;
+      case SIMIX_ACTION_PARALLEL_EXECUTE:
+        action_description = "parallel execution";
+        break;
 
-       case SIMIX_ACTION_COMMUNICATE:
-         action_description = "communication";
-         break;
+      case SIMIX_ACTION_COMMUNICATE:
+        action_description = "communication";
+        break;
 
-       case SIMIX_ACTION_SLEEP:
-         action_description = "sleeping";
-         break;
+      case SIMIX_ACTION_SLEEP:
+        action_description = "sleeping";
+        break;
 
-       case SIMIX_ACTION_SYNCHRO:
-         action_description = "synchronization";
-         break;
+      case SIMIX_ACTION_SYNCHRO:
+        action_description = "synchronization";
+        break;
 
-       case SIMIX_ACTION_IO:
-         action_description = "I/O";
-         break;
+      case SIMIX_ACTION_IO:
+        action_description = "I/O";
+        break;
       }
       XBT_INFO("Process %lu (%s@%s): waiting for %s action %p (%s) in state %d to finish",
           process->pid, process->name, process->smx_host->name,
-         action_description, process->waiting_action,
+          action_description, process->waiting_action,
           process->waiting_action->name, (int)process->waiting_action->state);
     }
     else {
index e897b2e..d27f40c 100644 (file)
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_base, smpi,
                                 "Logging specific to SMPI (base)");
-XBT_LOG_EXTERNAL_CATEGORY(smpi_base);
-XBT_LOG_EXTERNAL_CATEGORY(smpi_bench);
-XBT_LOG_EXTERNAL_CATEGORY(smpi_kernel);
-XBT_LOG_EXTERNAL_CATEGORY(smpi_mpi);
-XBT_LOG_EXTERNAL_CATEGORY(smpi_mpi_dt);
-XBT_LOG_EXTERNAL_CATEGORY(smpi_coll);
-XBT_LOG_EXTERNAL_CATEGORY(smpi_receiver);
-XBT_LOG_EXTERNAL_CATEGORY(smpi_sender);
-XBT_LOG_EXTERNAL_CATEGORY(smpi_util);
 
 static int match_recv(void* a, void* b) {
    MPI_Request ref = (MPI_Request)a;
index 69b94b8..2b8c68d 100644 (file)
@@ -251,6 +251,18 @@ int MAIN__(void)
     return 0;
   }
 
+  /* Connect log categories.  See xbt/log.c */
+  XBT_LOG_CONNECT(smpi);
+  XBT_LOG_CONNECT(smpi_base);
+  XBT_LOG_CONNECT(smpi_bench);
+  XBT_LOG_CONNECT(smpi_coll);
+  XBT_LOG_CONNECT(smpi_comm);
+  XBT_LOG_CONNECT(smpi_group);
+  XBT_LOG_CONNECT(smpi_kernel);
+  XBT_LOG_CONNECT(smpi_mpi);
+  XBT_LOG_CONNECT(smpi_mpi_dt);
+  XBT_LOG_CONNECT(smpi_pmpi);
+
 #ifdef HAVE_TRACING
   TRACE_global_init(&xargc, xargv);
 #endif
index 9f42545..349093c 100644 (file)
@@ -320,6 +320,16 @@ XBT_INLINE lmm_constraint_t lmm_get_cnst_from_var(lmm_system_t sys,
     return NULL;
 }
 
+XBT_INLINE double lmm_get_cnst_weight_from_var(lmm_system_t sys,
+                                                         lmm_variable_t var,
+                                                         int num)
+{
+  if (num < var->cnsts_number)
+    return (var->cnsts[num].value);
+  else
+    return 0.0;
+}
+
 XBT_INLINE int lmm_get_number_of_cnst_from_var(lmm_system_t sys,
                                                lmm_variable_t var)
 {
index 5afe01f..c9e0a70 100644 (file)
@@ -538,7 +538,10 @@ static void net_update_actions_state_full(double now, double delta)
         link_CM02_t link = lmm_constraint_id(constraint);
         TRACE_surf_link_set_utilization(link->lmm_resource.generic_resource.name,
                                         ((surf_action_t)action)->category,
-                                        lmm_variable_getvalue(GENERIC_LMM_ACTION(action).variable),
+                                        (lmm_variable_getvalue(GENERIC_LMM_ACTION(action).variable)*
+                                        lmm_get_cnst_weight_from_var(network_maxmin_system,
+                                            GENERIC_LMM_ACTION(action).variable,
+                                            i)),
                                         now - delta,
                                         delta);
       }
@@ -599,7 +602,10 @@ static void net_update_actions_state_lazy(double now, double delta)
         link_CM02_t link = lmm_constraint_id(constraint);
         TRACE_surf_link_set_utilization(link->lmm_resource.generic_resource.name,
                                         ((surf_action_t)action)->category,
-                                        lmm_variable_getvalue(GENERIC_LMM_ACTION(action).variable),
+                                        (lmm_variable_getvalue(GENERIC_LMM_ACTION(action).variable)*
+                                            lmm_get_cnst_weight_from_var(network_maxmin_system,
+                                                GENERIC_LMM_ACTION(action).variable,
+                                                i)),
                                         GENERIC_LMM_ACTION(action).last_update,
                                         now - GENERIC_LMM_ACTION(action).last_update);
       }
index 6289642..d201b5d 100644 (file)
@@ -1,8 +1,8 @@
 <!-- Small DTD for SURF based tools. -->
-<!ELEMENT platform ((config|random)*,(include|cluster|peer|AS|trace|trace_connect)*,(include|process)*)>
+<!ELEMENT platform ((config|random)*,(include|cluster|peer|AS|trace|trace_connect)*,(process)*)>
 <!ATTLIST platform version CDATA "0.0">
 
-<!ELEMENT include EMPTY>
+<!ELEMENT include (include|cluster|peer|AS|trace|trace_connect)*>
 <!ATTLIST include file CDATA #REQUIRED>
 
 <!ELEMENT trace (#PCDATA)>
index fca8b80..c736ac6 100644 (file)
@@ -412,7 +412,7 @@ struct yy_trans_info
        flex_int32_t yy_verify;
        flex_int32_t yy_nxt;
        };
-static yyconst flex_int16_t yy_accept[2695] =
+static yyconst flex_int16_t yy_accept[2702] =
     {   0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
@@ -438,269 +438,270 @@ static yyconst flex_int16_t yy_accept[2695] =
 
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-      460,  458,   15,   10,   10,   15,   15,  438,   10,  438,
-        5,    6,    5,    8,    9,    8,  454,  446,  447,  455,
-      452,  455,  453,  457,  446,  447,  457,  458,   22,   10,
-       22,   22,   22,   20,   22,   26,   10,   26,   26,  458,
-       26,  458,  458,   26,   33,   10,   33,   33,   33,   31,
-       33,   37,   10,   37,   48,   10,   48,   48,   48,   46,
-       48,   48,   48,  455,  454,   78,   10,   78,   78,   78,
-       76,   78,   78,   78,   78,   78,   82,   10,   82,  458,
-
-       82,  101,   10,  101,  101,  101,   99,  101,  101,  101,
-      105,   10,  105,  114,   10,  114,  114,  114,  112,  114,
-      114,  118,   10,  118,  118,  458,  118,  118,  458,  458,
-      118,  458,  118,  458,  118,  129,   10,  129,  129,  129,
-      127,  129,  129,  129,  133,   10,  133,  133,  142,   10,
-      142,  142,  142,  140,  142,  142,  146,   10,  146,  146,
-      155,   10,  155,  155,  155,  153,  155,  155,  159,   10,
-      159,  168,   10,  168,  168,  168,  166,  168,  168,  172,
-       10,  172,  195,   10,  195,  195,  195,  193,  195,  195,
-      195,  195,  195,  199,   10,  199,  458,  199,  240,   10,
-
-      240,  240,  240,  238,  240,  240,  240,  240,  240,  240,
-      240,  240,  244,   10,  244,  265,   10,  265,  265,  265,
-      263,  265,  265,  265,  265,  265,  265,  265,  269,   10,
-      269,  278,   10,  278,  278,  278,  276,  278,  278,  282,
-       10,  282,  309,   10,  309,  309,  309,  307,  309,  309,
-      309,  309,  313,   10,  313,  313,  326,   10,  326,  326,
-      326,  324,  326,  326,  330,   10,  330,  458,  330,  347,
-       10,  347,  347,  347,  345,  347,  347,  347,  351,   10,
-      351,  351,  364,   10,  364,  364,  364,  362,  364,  364,
-      368,   10,  368,  381,   10,  381,  381,  381,  379,  381,
-
-      381,  381,  385,   10,  385,  385,  398,   10,  398,  398,
-      398,  396,  398,  398,  398,  398,  402,   10,  402,  458,
-      402,  409,   10,  409,  409,  409,  407,  409,  413,   10,
-      413,  420,   10,  420,  420,  420,  418,  420,  424,   10,
-      424,  424,  433,   10,  433,  433,  433,  431,  433,  433,
-      437,   10,  437,   10,    0,    2,    2,    0,    4,    7,
-      449,  448,    0,    0,    0,    0,    0,    0,    0,   21,
-       23,   23,    0,    0,    0,    0,    0,    0,    0,    0,
+        0,    0,    0,    0,    0,    0,  460,  458,   15,   10,
+       10,   15,   15,  438,   10,  438,    5,    6,    5,    8,
+        9,    8,  454,  446,  447,  455,  452,  455,  453,  457,
+      446,  447,  457,  458,   22,   10,   22,   22,   22,   20,
+       22,   26,   10,   26,   26,  458,   26,  458,  458,   26,
+       33,   10,   33,   33,   33,   31,   33,   37,   10,   37,
+       37,   48,   10,   48,   48,   48,   46,   48,   48,   48,
+      455,  454,   78,   10,   78,   78,   78,   76,   78,   78,
+
+       78,   78,   78,   82,   10,   82,  458,   82,  101,   10,
+      101,  101,  101,   99,  101,  101,  101,  105,   10,  105,
+      114,   10,  114,  114,  114,  112,  114,  114,  118,   10,
+      118,  118,  458,  118,  118,  458,  458,  118,  458,  118,
+      458,  118,  129,   10,  129,  129,  129,  127,  129,  129,
+      129,  133,   10,  133,  133,  142,   10,  142,  142,  142,
+      140,  142,  142,  146,   10,  146,  146,  155,   10,  155,
+      155,  155,  153,  155,  155,  159,   10,  159,  168,   10,
+      168,  168,  168,  166,  168,  168,  172,   10,  172,  195,
+       10,  195,  195,  195,  193,  195,  195,  195,  195,  195,
+
+      199,   10,  199,  458,  199,  240,   10,  240,  240,  240,
+      238,  240,  240,  240,  240,  240,  240,  240,  240,  244,
+       10,  244,  265,   10,  265,  265,  265,  263,  265,  265,
+      265,  265,  265,  265,  265,  269,   10,  269,  278,   10,
+      278,  278,  278,  276,  278,  278,  282,   10,  282,  309,
+       10,  309,  309,  309,  307,  309,  309,  309,  309,  313,
+       10,  313,  313,  326,   10,  326,  326,  326,  324,  326,
+      326,  330,   10,  330,  458,  330,  347,   10,  347,  347,
+      347,  345,  347,  347,  347,  351,   10,  351,  351,  364,
+       10,  364,  364,  364,  362,  364,  364,  368,   10,  368,
+
+      381,   10,  381,  381,  381,  379,  381,  381,  381,  385,
+       10,  385,  385,  398,   10,  398,  398,  398,  396,  398,
+      398,  398,  398,  402,   10,  402,  458,  402,  409,   10,
+      409,  409,  409,  407,  409,  413,   10,  413,  420,   10,
+      420,  420,  420,  418,  420,  424,   10,  424,  424,  433,
+       10,  433,  433,  433,  431,  433,  433,  437,   10,  437,
+       10,    0,    2,    2,    0,    4,    7,  449,  448,    0,
+        0,    0,    0,    0,    0,    0,   21,   23,   23,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-        0,    0,    0,    0,    0,   32,   34,   34,    0,   47,
-
-       49,   49,   49,   49,    0,    0,    0,   77,   79,   79,
-       79,   79,   79,   79,   79,   79,   79,    0,    0,  100,
-      102,  102,  102,  102,    0,  113,  115,  115,  115,    0,
-        0,    0,    0,    0,    0,    0,    0,    0,    0,  128,
-      130,  130,  130,  130,    0,  141,  143,  143,  143,    0,
-      154,  156,  156,  156,    0,  167,  169,  169,  169,    0,
-      194,  196,  196,  196,  196,  196,  196,    0,    0,  239,
-      241,  241,  241,  241,  241,  241,  241,  241,  241,  241,
-      241,  241,  241,  241,    0,  264,  266,  266,  266,  266,
-      266,  266,  266,  266,    0,  277,  279,  279,  279,    0,
-
-      308,  310,  310,  310,  310,  310,  310,    0,  325,  327,
-      327,  327,  327,    0,    0,  346,  348,  348,  348,  348,
-      348,    0,  363,  365,  365,  365,    0,  380,  382,  382,
-      382,  382,    0,  397,  399,  399,  399,  399,  399,    0,
-        0,  408,  410,  410,    0,  419,  421,  421,    0,  432,
-      434,  434,  434,    0,    0,    0,    0,    0,    3,    0,
-        0,    0,    0,    0,    0,    0,  456,    0,   23,    0,
-        0,  107,    0,    0,    0,    0,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-      106,    0,    0,    0,    0,    0,   34,    0,    0,   49,
-
-        0,    0,   49,    0,    0,    0,  451,   79,    0,    0,
-       79,   79,   79,   79,   79,   79,    0,    0,    0,  102,
-      102,  102,    0,    0,    0,    0,  115,    0,    0,  107,
-        0,    0,    0,    0,    0,  106,    0,    0,  130,    0,
-        0,  130,    0,    0,    0,    0,  143,    0,    0,    0,
-        0,  156,    0,    0,  169,  169,    0,    0,  196,  196,
-      196,    0,    0,  196,  196,    0,    0,    0,    0,  241,
-      241,    0,    0,  241,    0,    0,  241,  241,  241,  241,
-      241,  241,  241,  241,    0,    0,  266,  266,  266,    0,
-        0,  266,  266,  266,    0,    0,  279,    0,    0,    0,
-
-        0,  310,    0,    0,  310,  310,  310,    0,    0,  327,
-      327,  327,    0,    0,    0,  348,  348,  348,  348,    0,
-        0,  365,    0,    0,    0,    0,  382,  382,  382,    0,
-        0,  399,  399,  399,  399,    0,    0,    0,  410,    0,
-        0,    0,    0,    0,    0,    0,    0,  434,    0,    0,
-        0,   14,    1,    0,    0,  444,    0,    0,    0,  441,
-      440,    0,    0,   23,    0,    0,   25,    0,  107,    0,
+
+        0,    0,   32,   34,   34,    0,   47,   49,   49,   49,
+       49,    0,    0,    0,   77,   79,   79,   79,   79,   79,
+       79,   79,   79,   79,    0,    0,  100,  102,  102,  102,
+      102,    0,  113,  115,  115,  115,    0,    0,    0,    0,
+        0,    0,    0,    0,    0,    0,  128,  130,  130,  130,
+      130,    0,  141,  143,  143,  143,    0,  154,  156,  156,
+      156,    0,  167,  169,  169,  169,    0,  194,  196,  196,
+      196,  196,  196,  196,    0,    0,  239,  241,  241,  241,
+      241,  241,  241,  241,  241,  241,  241,  241,  241,  241,
+      241,    0,  264,  266,  266,  266,  266,  266,  266,  266,
+
+      266,    0,  277,  279,  279,  279,    0,  308,  310,  310,
+      310,  310,  310,  310,    0,  325,  327,  327,  327,  327,
+        0,    0,  346,  348,  348,  348,  348,  348,    0,  363,
+      365,  365,  365,    0,  380,  382,  382,  382,  382,    0,
+      397,  399,  399,  399,  399,  399,    0,    0,  408,  410,
+      410,    0,  419,  421,  421,    0,  432,  434,  434,  434,
+        0,    0,    0,    0,    0,    3,    0,    0,    0,    0,
+        0,    0,    0,  456,    0,   23,    0,    0,  107,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-        0,    0,    0,    0,    0,    0,    0,    0,  106,    0,
-        0,    0,    0,    0,   34,    0,    0,   36,    0,   49,
-
-        0,   41,   40,   49,    0,    0,    0,   51,    0,   79,
-        0,   55,   54,    0,    0,   79,    0,    0,   79,   79,
-       79,    0,    0,   81,    0,    0,  102,  102,  102,    0,
-        0,  104,    0,    0,  109,  108,  115,    0,    0,  117,
-        0,    0,    0,    0,    0,    0,    0,    0,    0,  130,
-        0,  122,  121,  130,    0,    0,  132,    0,    0,  137,
-      136,  143,    0,    0,  145,    0,    0,  150,  149,  156,
-        0,    0,  158,    0,  169,  169,    0,    0,  171,    0,
-      196,  196,  196,    0,  176,  175,  196,  196,    0,    0,
-      198,    0,    0,    0,  241,  241,  241,  241,    0,  215,
-
-      214,  241,    0,  203,  202,    0,    0,  241,  241,  241,
-      241,  241,  241,  241,    0,    0,  243,    0,  266,  266,
-      266,  266,    0,  248,  247,    0,    0,  266,  266,    0,
-        0,  268,    0,  279,    0,  273,  272,    0,    0,  281,
-        0,  310,    0,  286,  285,  310,  310,  310,    0,    0,
-      312,    0,    0,    0,    0,    0,  327,    0,    0,  329,
-        0,    0,    0,    0,  348,  348,    0,    0,  348,    0,
-        0,  350,    0,  365,    0,  355,  354,    0,    0,  367,
-        0,    0,    0,  382,  382,    0,    0,    0,    0,  384,
-        0,  399,  399,  399,  399,    0,    0,  401,    0,    0,
-
-      410,    0,    0,  412,    0,    0,  417,  416,    0,    0,
-      423,    0,    0,  428,  427,  434,    0,    0,  436,    0,
-        0,    0,  445,  439,    0,    0,    0,   23,    0,    0,
-        0,    0,    0,    0,  173,    0,  283,    0,    0,  246,
-        0,    0,  425,    0,    0,    0,    0,    0,    0,    0,
-        0,  245,    0,    0,    0,    0,    0,    0,    0,   49,
-        0,    0,   79,    0,   59,   58,    0,    0,    0,   57,
-       56,   79,    0,    0,   79,    0,  426,  102,    0,    0,
-      102,    0,  115,    0,  116,    0,    0,  174,  284,    0,
-        0,    0,    0,  130,  130,    0,  143,    0,    0,    0,
-
-        0,    0,    0,  169,    0,  196,  196,    0,    0,  196,
-      196,    0,    0,    0,  241,  241,  241,  241,    0,    0,
-        0,  217,  216,  241,  241,  241,  241,  241,  241,  241,
-        0,  266,  266,  266,  266,    0,  256,  255,  266,  266,
-        0,  279,    0,  310,  310,  310,  310,    0,    0,  319,
-      318,    0,  317,  316,  327,    0,  283,    0,  336,  335,
-      348,  348,    0,  334,  333,  348,    0,  365,    0,    0,
-      374,  373,  382,  382,    0,  372,  371,    0,  399,    0,
-        0,  399,  399,    0,    0,  410,    0,    0,  434,    0,
-        0,    0,    0,   12,    0,  442,  443,    0,   23,    0,
-
-        0,    0,    0,    0,    0,  173,    0,  283,    0,  147,
-        0,  246,    0,    0,  425,    0,  314,    0,   39,    0,
-        0,    0,    0,  245,    0,   38,    0,   30,   29,    0,
-        0,   43,   42,   49,    0,    0,   79,    0,   61,   60,
-       79,    0,   65,   64,   79,    0,  426,  102,    0,    0,
-        0,    0,    0,    0,  115,    0,    0,  174,  284,  315,
-        0,  315,  314,  130,    0,    0,    0,  143,    0,    0,
-      152,  151,    0,    0,  165,  164,  169,    0,  196,  196,
-        0,  180,  179,    0,    0,    0,    0,  196,    0,  148,
-        0,  241,    0,    0,  241,  241,    0,  213,  212,    0,
-
-        0,  241,  241,  241,  241,  241,  241,    0,  266,    0,
-        0,  266,  266,    0,    0,  266,    0,  279,    0,  310,
-      310,  310,    0,    0,  310,    0,  327,    0,    0,  348,
-      348,  348,    0,  365,    0,  382,  382,    0,  399,    0,
-      389,  388,  399,  399,    0,    0,    0,    0,    0,    0,
-        0,    0,    0,    0,    0,    0,   11,    0,   23,    0,
-        0,    0,    0,    0,  415,    0,    0,  147,    0,    0,
-        0,   53,  314,  270,    0,   39,    0,  414,   52,    0,
-        0,    0,   38,    0,    0,   49,    0,    0,   79,   79,
-       79,    0,  102,    0,    0,    0,    0,    0,    0,    0,
-
-        0,    0,   96,   95,    0,  115,    0,    0,  315,  271,
-        0,  130,    0,  124,  123,    0,    0,    0,    0,    0,
-        0,    0,    0,  196,  196,    0,  178,  177,    0,    0,
-        0,  196,    0,  197,  148,    0,  241,    0,  225,  224,
-        0,    0,  241,    0,  211,  210,    0,    0,  241,  241,
-      241,  241,    0,    0,    0,  266,    0,  252,  251,    0,
-        0,  266,    0,  250,  249,  266,    0,  267,  279,    0,
-      310,  310,  310,    0,    0,    0,  310,    0,  311,  327,
-        0,    0,    0,    0,    0,    0,  348,    0,  365,    0,
-        0,    0,    0,    0,    0,  399,  399,  399,    0,    0,
-
-        0,  406,  405,    0,    0,    0,  430,  429,    0,  435,
-        0,    0,    0,    0,    0,    0,    0,  331,    0,    0,
-      201,  415,   28,    0,    0,    0,  387,   53,  270,  134,
-        0,  414,   52,  200,   27,  386,    0,    0,   49,    0,
-        0,   50,   79,    0,    0,   79,    0,    0,    0,    0,
+        0,    0,    0,    0,    0,    0,    0,  106,    0,    0,
+
+        0,    0,    0,   34,    0,    0,   49,    0,    0,   49,
+        0,    0,    0,  451,   79,    0,    0,   79,   79,   79,
+       79,   79,   79,    0,    0,    0,  102,  102,  102,    0,
+        0,    0,    0,  115,    0,    0,  107,    0,    0,    0,
+        0,    0,  106,    0,    0,  130,    0,    0,  130,    0,
+        0,    0,    0,  143,    0,    0,    0,    0,  156,    0,
+        0,  169,  169,    0,    0,  196,  196,  196,    0,    0,
+      196,  196,    0,    0,    0,    0,  241,  241,    0,    0,
+      241,    0,    0,  241,  241,  241,  241,  241,  241,  241,
+      241,    0,    0,  266,  266,  266,    0,    0,  266,  266,
+
+      266,    0,    0,  279,    0,    0,    0,    0,  310,    0,
+        0,  310,  310,  310,    0,    0,  327,  327,  327,    0,
+        0,    0,  348,  348,  348,  348,    0,    0,  365,    0,
+        0,    0,    0,  382,  382,  382,    0,    0,  399,  399,
+      399,  399,    0,    0,    0,  410,    0,    0,    0,    0,
+        0,    0,    0,    0,  434,    0,    0,    0,   14,    1,
+        0,    0,  444,    0,    0,    0,  441,  440,    0,    0,
+       23,    0,    0,   25,    0,  107,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-        0,    0,  332,    0,  271,  135,    0,    0,    0,    0,
-      139,  138,    0,    0,  157,    0,  163,  162,    0,  196,
-      196,    0,    0,  196,    0,  241,    0,  227,  226,  241,
-        0,  205,  204,    0,    0,  241,  241,  241,    0,  207,
-
-      206,    0,  266,    0,  254,  253,  266,  266,  279,    0,
-      310,    0,    0,  310,  310,    0,    0,  310,  327,    0,
-      328,    0,    0,  340,  339,    0,  338,  337,  348,    0,
-      365,    0,    0,  378,  377,    0,  376,  375,    0,  399,
-      399,  399,    0,    0,    0,    0,    0,    0,    0,   17,
-        0,   19,   18,    0,  331,  403,    0,  201,   28,  352,
-      160,   16,  387,  134,    0,    0,  200,   27,  386,    0,
-        0,   49,  450,   79,    0,   67,   66,   79,    0,   80,
-        0,   98,   97,    0,    0,    0,    0,    0,    0,    0,
-        0,    0,    0,    0,    0,  111,  110,  332,    0,  135,
-
-        0,    0,  126,  125,    0,    0,    0,  196,  196,    0,
-        0,    0,    0,  196,  161,  241,  241,    0,  209,  208,
-      241,  241,  241,    0,  266,  266,  266,  279,    0,  280,
-      310,    0,  292,  291,  310,  310,    0,    0,    0,    0,
-      310,  327,  353,  348,    0,  365,    0,    0,    0,    0,
-      399,  399,    0,  404,    0,    0,  422,    0,    0,    0,
-       17,    0,  403,    0,  352,  160,   16,    0,    0,    0,
-        0,   35,   49,    0,    0,   79,    0,    0,    0,    0,
+        0,    0,    0,    0,    0,  106,    0,    0,    0,    0,
+
+        0,   34,    0,    0,   36,    0,   49,    0,   41,   40,
+       49,    0,    0,    0,   51,    0,   79,    0,   55,   54,
+        0,    0,   79,    0,    0,   79,   79,   79,    0,    0,
+       81,    0,    0,  102,  102,  102,    0,    0,  104,    0,
+        0,  109,  108,  115,    0,    0,  117,    0,    0,    0,
+        0,    0,    0,    0,    0,    0,  130,    0,  122,  121,
+      130,    0,    0,  132,    0,    0,  137,  136,  143,    0,
+        0,  145,    0,    0,  150,  149,  156,    0,    0,  158,
+        0,  169,  169,    0,    0,  171,    0,  196,  196,  196,
+        0,  176,  175,  196,  196,    0,    0,  198,    0,    0,
+
+        0,  241,  241,  241,  241,    0,  215,  214,  241,    0,
+      203,  202,    0,    0,  241,  241,  241,  241,  241,  241,
+      241,    0,    0,  243,    0,  266,  266,  266,  266,    0,
+      248,  247,    0,    0,  266,  266,    0,    0,  268,    0,
+      279,    0,  273,  272,    0,    0,  281,    0,  310,    0,
+      286,  285,  310,  310,  310,    0,    0,  312,    0,    0,
+        0,    0,    0,  327,    0,    0,  329,    0,    0,    0,
+        0,  348,  348,    0,    0,  348,    0,    0,  350,    0,
+      365,    0,  355,  354,    0,    0,  367,    0,    0,    0,
+      382,  382,    0,    0,    0,    0,  384,    0,  399,  399,
+
+      399,  399,    0,    0,  401,    0,    0,  410,    0,    0,
+      412,    0,    0,  417,  416,    0,    0,  423,    0,    0,
+      428,  427,  434,    0,    0,  436,    0,    0,    0,  445,
+      439,    0,    0,    0,   23,    0,    0,    0,    0,    0,
+        0,  173,    0,  283,    0,    0,  246,    0,    0,  425,
+        0,    0,    0,    0,    0,    0,    0,    0,  245,    0,
+        0,    0,    0,    0,    0,    0,   49,    0,    0,   79,
+        0,   59,   58,    0,    0,    0,   57,   56,   79,    0,
+        0,   79,    0,  426,  102,    0,    0,  102,    0,  115,
+        0,  116,    0,    0,  174,  284,    0,    0,    0,    0,
+
+      130,  130,    0,  143,    0,    0,    0,    0,    0,    0,
+      169,    0,  196,  196,    0,    0,  196,  196,    0,    0,
+        0,  241,  241,  241,  241,    0,    0,    0,  217,  216,
+      241,  241,  241,  241,  241,  241,  241,    0,  266,  266,
+      266,  266,    0,  256,  255,  266,  266,    0,  279,    0,
+      310,  310,  310,  310,    0,    0,  319,  318,    0,  317,
+      316,  327,    0,  283,    0,  336,  335,  348,  348,    0,
+      334,  333,  348,    0,  365,    0,    0,  374,  373,  382,
+      382,    0,  372,  371,    0,  399,    0,    0,  399,  399,
+        0,    0,  410,    0,    0,  434,    0,    0,    0,    0,
+
+       12,    0,  442,  443,    0,   23,    0,    0,    0,    0,
+        0,    0,  173,    0,  283,    0,  147,    0,  246,    0,
+        0,  425,    0,  314,    0,   39,    0,    0,    0,    0,
+      245,    0,   38,    0,   30,   29,    0,    0,   43,   42,
+       49,    0,    0,   79,    0,   61,   60,   79,    0,   65,
+       64,   79,    0,  426,  102,    0,    0,    0,    0,    0,
+        0,  115,    0,    0,  174,  284,  315,    0,  315,  314,
+      130,    0,    0,    0,  143,    0,    0,  152,  151,    0,
+        0,  165,  164,  169,    0,  196,  196,    0,  180,  179,
+        0,    0,    0,    0,  196,    0,  148,    0,  241,    0,
+
+        0,  241,  241,    0,  213,  212,    0,    0,  241,  241,
+      241,  241,  241,  241,    0,  266,    0,    0,  266,  266,
+        0,    0,  266,    0,  279,    0,  310,  310,  310,    0,
+        0,  310,    0,  327,    0,    0,  348,  348,  348,    0,
+      365,    0,  382,  382,    0,  399,    0,  389,  388,  399,
+      399,    0,    0,    0,    0,    0,    0,    0,    0,    0,
+        0,    0,    0,   11,    0,   23,    0,    0,    0,    0,
+        0,  415,    0,    0,  147,    0,    0,    0,   53,  314,
+      270,    0,   39,    0,  414,   52,    0,    0,    0,   38,
+        0,    0,   49,    0,    0,   79,   79,   79,    0,  102,
+
+        0,    0,    0,    0,    0,    0,    0,    0,    0,   96,
+       95,    0,  115,    0,    0,  315,  271,    0,  130,    0,
+      124,  123,    0,    0,    0,    0,    0,    0,    0,    0,
+      196,  196,    0,  178,  177,    0,    0,    0,  196,    0,
+      197,  148,    0,  241,    0,  225,  224,    0,    0,  241,
+        0,  211,  210,    0,    0,  241,  241,  241,  241,    0,
+        0,    0,  266,    0,  252,  251,    0,    0,  266,    0,
+      250,  249,  266,    0,  267,  279,    0,  310,  310,  310,
+        0,    0,    0,  310,    0,  311,  327,    0,    0,    0,
+        0,    0,    0,  348,    0,  365,    0,    0,    0,    0,
+
+        0,    0,  399,  399,  399,    0,    0,    0,  406,  405,
+        0,    0,    0,  430,  429,    0,  435,    0,    0,    0,
+        0,    0,    0,    0,  331,    0,    0,  201,  415,   28,
+        0,    0,    0,  387,   53,  270,  134,    0,  414,   52,
+      200,   27,  386,    0,    0,   49,    0,    0,   50,   79,
+        0,    0,   79,    0,    0,    0,    0,    0,    0,    0,
+        0,    0,    0,    0,    0,    0,    0,    0,    0,  332,
+        0,  271,  135,    0,    0,    0,    0,  139,  138,    0,
+        0,  157,    0,  163,  162,    0,  196,  196,    0,    0,
+      196,    0,  241,    0,  227,  226,  241,    0,  205,  204,
+
+        0,    0,  241,  241,  241,    0,  207,  206,    0,  266,
+        0,  254,  253,  266,  266,  279,    0,  310,    0,    0,
+      310,  310,    0,    0,  310,  327,    0,  328,    0,    0,
+      340,  339,    0,  338,  337,  348,    0,  365,    0,    0,
+      378,  377,    0,  376,  375,    0,  399,  399,  399,    0,
+        0,    0,    0,    0,    0,    0,   17,    0,   19,   18,
+        0,  331,  403,    0,  201,   28,  352,  160,   16,  387,
+      134,    0,    0,  200,   27,  386,    0,    0,   49,  450,
+       79,    0,   67,   66,   79,    0,   80,    0,   98,   97,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-        0,  144,    0,  196,  196,    0,  186,    0,  185,  196,
-
-      161,  241,  241,    0,    0,  241,  241,    0,  242,  266,
-      266,  266,  279,    0,    0,  310,  310,  310,    0,  296,
-        0,  295,  310,  327,  353,  348,    0,  349,    0,    0,
-        0,    0,    0,  391,  390,    0,    0,  399,    0,  400,
-      404,    0,    0,    0,    0,    0,   24,    0,    0,    0,
-        0,   49,    0,    0,    0,   79,    0,    0,    0,    0,
+
+        0,    0,  111,  110,  332,    0,  135,    0,    0,  126,
+      125,    0,    0,    0,  196,  196,    0,    0,    0,    0,
+      196,  161,  241,  241,    0,  209,  208,  241,  241,  241,
+        0,  266,  266,  266,  279,    0,  280,  310,    0,  292,
+      291,  310,  310,    0,    0,    0,    0,  310,  327,  353,
+      348,    0,  365,    0,    0,    0,    0,  399,  399,    0,
+      404,    0,    0,  422,    0,    0,    0,   17,    0,  403,
+        0,  352,  160,   16,    0,    0,    0,    0,   35,   49,
+        0,    0,   79,    0,    0,    0,    0,    0,    0,    0,
+        0,    0,    0,    0,    0,    0,    0,    0,  144,    0,
+
+      196,  196,    0,  186,    0,  185,  196,  161,  241,  241,
+        0,    0,  241,  241,    0,  242,  266,  266,  266,  279,
+        0,    0,  310,  310,  310,    0,  296,    0,  295,  310,
+      327,  353,  348,    0,  349,    0,    0,    0,    0,    0,
+      391,  390,    0,    0,  399,    0,  400,  404,    0,    0,
+        0,    0,    0,   24,    0,    0,    0,    0,   49,    0,
+        0,    0,   79,    0,    0,    0,    0,    0,    0,    0,
+        0,    0,    0,    0,    0,    0,    0,    0,  170,  196,
+      196,  188,  187,    0,    0,  241,  241,    0,  237,  236,
+      241,    0,    0,  266,  266,    0,    0,  279,    0,  288,
+
+      287,  310,  310,  310,  298,  297,    0,    0,  327,  348,
+        0,    0,    0,    0,  366,    0,    0,  395,  394,    0,
+        0,    0,  411,    0,    0,    0,  369,    0,    0,    0,
+        0,    0,    0,    0,    0,    0,    0,    0,   79,    0,
+        0,    0,    0,   88,    0,    0,    0,    0,   87,    0,
+      370,    0,    0,  196,    0,    0,    0,  190,  189,  241,
+      241,  241,    0,  235,  234,  266,    0,    0,    0,  262,
+      261,    0,    0,  310,  310,  310,    0,  300,  299,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-        0,  170,  196,  196,  188,  187,    0,    0,  241,  241,
-        0,  237,  236,  241,    0,    0,  266,  266,    0,    0,
-      279,    0,  288,  287,  310,  310,  310,  298,  297,    0,
+        0,  393,  392,    0,    0,    0,  369,  119,    0,    0,
 
-        0,  327,  348,    0,    0,    0,    0,  366,    0,    0,
-      395,  394,    0,    0,    0,  411,    0,    0,    0,  369,
+        0,   45,   44,    0,    0,    0,    0,    0,    0,    0,
+        0,   79,    0,    0,    0,    0,    0,    0,    0,    0,
+        0,  370,  120,    0,    0,    0,  196,    0,  192,  191,
+      241,  241,  241,  266,    0,  258,  257,    0,  275,  274,
+      310,    0,    0,  310,    0,    0,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-        0,   79,    0,    0,    0,    0,   88,    0,    0,    0,
-        0,   87,    0,  370,    0,    0,  196,    0,    0,    0,
-      190,  189,  241,  241,  241,    0,  235,  234,  266,    0,
-        0,    0,  262,  261,    0,    0,  310,  310,  310,    0,
-      300,  299,    0,    0,    0,    0,    0,    0,    0,    0,
-        0,    0,    0,    0,  393,  392,    0,    0,    0,  369,
-      119,    0,    0,    0,   45,   44,    0,    0,    0,    0,
-
-        0,    0,    0,    0,   79,    0,    0,    0,    0,    0,
-        0,    0,    0,    0,  370,  120,    0,    0,    0,  196,
-        0,  192,  191,  241,  241,  241,  266,    0,  258,  257,
-        0,  275,  274,  310,    0,    0,  310,    0,    0,    0,
+        0,  119,   84,   83,    0,    0,    0,    0,    0,    0,
+        0,    0,    0,    0,    0,    0,   94,    0,    0,    0,
+       93,    0,    0,  120,    0,    0,  182,  181,  196,  241,
+      241,  241,  266,  310,    0,  294,  293,  310,    0,    0,
+
+        0,    0,    0,    0,    0,    0,    0,    0,  357,    0,
+        0,  356,    0,  383,    0,    0,    0,    0,    0,    0,
+       84,   83,    0,    0,    0,    0,    0,    0,    0,    0,
+        0,   63,   62,    0,    0,    0,    0,    0,    0,    0,
+        0,  131,  196,  241,  241,    0,    0,  266,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-        0,    0,    0,    0,  119,   84,   83,    0,    0,    0,
-        0,    0,    0,    0,    0,    0,    0,    0,    0,   94,
-        0,    0,    0,   93,    0,    0,  120,    0,    0,  182,
-      181,  196,  241,  241,  241,  266,  310,    0,  294,  293,
-      310,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-
-        0,  357,    0,    0,  356,    0,  383,    0,    0,    0,
-        0,    0,    0,   84,   83,    0,    0,    0,    0,    0,
-        0,    0,    0,    0,   63,   62,    0,    0,    0,    0,
-        0,    0,    0,    0,  131,  196,  241,  241,    0,    0,
-      266,    0,    0,    0,    0,    0,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-        0,    0,    0,    0,   75,   71,    0,    0,   74,   70,
-        0,   92,    0,    0,   91,    0,    0,    0,  103,  196,
-      241,  241,    0,    0,    0,  266,    0,  290,  289,    0,
-        0,    0,  323,    0,  322,    0,  344,    0,  343,    0,
-
-      359,  361,  358,  360,    0,    0,    0,   12,    0,   12,
-        0,    0,    0,    0,    0,   86,   90,   85,   89,  196,
-      241,  241,    0,    0,    0,    0,  266,    0,    0,    0,
-        0,  321,  320,  342,  341,    0,    0,    0,    0,    0,
+        0,   75,   71,    0,    0,   74,   70,    0,   92,    0,
+        0,   91,    0,    0,    0,  103,  196,  241,  241,    0,
+        0,    0,  266,    0,  290,  289,    0,    0,    0,  323,
+
+        0,  322,    0,  344,    0,  343,    0,  359,  361,  358,
+      360,    0,    0,    0,   12,    0,   12,    0,    0,    0,
+        0,    0,   86,   90,   85,   89,  196,  241,  241,    0,
+        0,    0,    0,  266,    0,    0,    0,    0,  321,  320,
+      342,  341,    0,    0,    0,    0,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-        0,    0,    0,    0,    0,    0,   69,    0,   68,    0,
-        0,  184,  183,    0,  233,  232,    0,    0,    0,    0,
-        0,    0,    0,    0,    0,    0,  260,  259,    0,    0,
-        0,    0,    0,    0,    0,   11,    0,    0,    0,    0,
+        0,    0,    0,   69,    0,   68,    0,    0,  184,  183,
+        0,  233,  232,    0,    0,    0,    0,    0,    0,    0,
+        0,    0,    0,  260,  259,    0,    0,    0,    0,    0,
 
+        0,    0,   11,    0,    0,    0,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-        0,    0,    0,    0,    0,   73,   72,    0,    0,    0,
-        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
+        0,    0,   73,   72,    0,    0,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-        0,    0,    0,    0,    0,    0,    0,  219,    0,    0,
-      218,    0,    0,  302,    0,    0,  301,    0,    0,    0,
-        0,    0,  223,    0,  222,    0,  304,    0,  303,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-        0,  229,    0,  228,    0,    0,    0,    0,    0,    0,
+        0,    0,    0,    0,  219,    0,    0,  218,    0,    0,
+      302,    0,    0,  301,    0,    0,    0,    0,    0,  223,
+        0,  222,    0,  304,    0,  303,    0,    0,    0,    0,
+        0,    0,    0,    0,    0,    0,    0,    0,  229,    0,
 
-      231,  230,  221,  220,  306,  305,    0,    0,    0,    0,
+      228,    0,    0,    0,    0,    0,    0,  231,  230,  221,
+      220,  306,  305,    0,    0,    0,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
@@ -708,9 +709,9 @@ static yyconst flex_int16_t yy_accept[2695] =
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
         0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
-        0,    0,   13,    0
+        0,    0,    0,    0,    0,    0,    0,    0,    0,   13,
 
+        0
     } ;
 
 static yyconst flex_int32_t yy_ec[256] =
@@ -757,2520 +758,2530 @@ static yyconst flex_int32_t yy_meta[73] =
         5,    5
     } ;
 
-static yyconst flex_int16_t yy_base[3070] =
+static yyconst flex_int16_t yy_base[3077] =
     {   0,
         0,    0,    0,    3,    6,    9,   12,   29,   16,   19,
        14,   17,   33,   36,   49,   55,   45,   61,   66,   72,
       108,  177,   75,   78,   83,  128,  131,  134,  138,  141,
       158,  197,  200,  203,  207,  210,  227,  230,  233,  236,
-      239,  256,  274,  328,  294,  297,  382,  445,  305,  351,
-      508,  574,  300,  354,  358,  361,  402,  405,  408,  412,
-      640,  707,  415,  465,  774,  839,  468,  471,  475,  478,
-      528,  531,  534,  538,  541,  594,  597,  600,  604,  607,
-      660,  663,  666,  670,  673,  727,  730,  733,  737,  740,
-      794,  797,  800,  804,  807,  859,  904,  964,  862,  865,
-
-      869,  872,  924,  927,  930,  934, 1024, 1091,  984,  987,
-      990,  994, 1044, 1047, 1050, 1054, 1158, 1219, 1057, 1111,
-     1280, 1347, 1114, 1117, 1414, 1480, 1121, 1124, 1178, 1181,
-     1184, 1188, 1191, 1239, 1546,    0, 1242, 1245, 1618,    0,
-     1249, 1252, 1690, 1747, 1300, 1303, 1804, 1870, 1306, 1310,
-     1313, 1367, 1370, 1373, 1377, 1380, 1936, 2002, 1434, 1437,
-     1440, 1444, 1500, 1503, 1506, 1510, 2068, 2134, 1710, 1713,
-     1716, 1720, 1767, 1770, 1773, 1777, 2200, 2257, 1824, 1827,
-     2314, 2380, 1830, 1834, 1837, 1890, 1893, 1896, 1900, 1903,
-     2446, 2512, 1956, 1959, 1962, 1966, 1969, 2022, 2025, 2028,
-
-     2578, 2647, 2032, 2035, 2716, 2773, 2088, 2091, 2094, 2098,
-     2101, 2154, 2157, 2160, 2830, 2899, 2164, 2167,    0,    0,
-     7450, 9619, 9619,   95,  100,   29,   41, 9619,  103,   51,
-     9619, 9619, 7439, 9619, 9619, 7428, 9619, 7441, 7441,  498,
-     9619, 9619, 9619, 9619, 7439, 7435, 7390,  145, 9619,  161,
-     7416,    0,  146, 9619, 7380, 9619,  166, 2964,   88,  204,
-      205,  254, 7420,    3, 9619,  169, 7411,    0,  153, 9619,
-     7369, 9619,  260,  419, 9619,  322, 7405,    0,  244, 9619,
-     7367, 7369, 7367,  420, 7372, 9619,  364, 7394,    0,  248,
-     9619, 7360, 7360,  257, 7360,  360, 9619,  440,   31, 7396,
-
-     7344, 9619,  567, 7382,    0,  306, 9619, 7342, 7343, 7332,
-     9619,  624,  482, 9619,  633, 7376,    0,  416, 9619, 7343,
-     7328, 9619,  692, 2172, 2176,  285,   35, 7367,  240,  135,
-      740, 2185,   59, 7376,  152, 9619,  697, 7365,    0,  417,
-     9619, 7322, 7331, 7316, 9619,  700, 7357,  181, 9619,  764,
-     7348,    0,  479, 9619, 7315, 7290, 9619,  767, 7349,  210,
-     9619,  824, 7340,    0,  480, 9619, 7303, 7305, 9619,  830,
-      483, 9619,  833, 7333,    0,  485, 9619, 7299, 7275, 9619,
-      889,  546, 9619,  895, 7326,    0,  543, 9619, 7272, 7278,
-     7287, 7272, 7266, 9619,  898,  310,  464,  527, 9619,  937,
-
-     7312,    0,  545, 9619, 7258,  303, 7264, 7273, 7271,  185,
-      568,  615, 9619,  954,  611, 9619,  997, 7299,    0,  684,
-     9619, 7249, 7243, 7250, 7259, 7257, 7243, 7237, 9619, 1014,
-      685, 9619, 1074, 7279,    0,  742, 9619, 7236, 7245, 9619,
-     1080,  752, 9619, 1083, 7272,    0,  751, 9619, 7242, 7238,
-     7236,  505, 9619, 1086, 7272,  593, 9619, 1141, 7263,    0,
-      808, 9619, 7212,  306, 9619, 1147,  950, 7265, 7217, 9619,
-     1150, 7251,    0,  809, 9619, 7204, 7199,  620, 9619, 1153,
-     7252,  621, 9619, 1208, 7243,    0,  873, 9619, 7205, 7205,
-     9619, 1214,  942, 9619, 1269, 7236,    0,  874, 9619, 7189,
-
-     7180, 7184, 9619, 1275, 7236,  811, 9619, 1330, 7223,    0,
-      938, 9619, 7174, 7179, 7179, 7168, 9619, 1333,  449,  991,
-      826, 9619, 1336, 7214,    0,  939, 9619, 7180, 9619, 1340,
-     1002, 9619, 1397, 7208,    0,  999, 9619, 7175, 9619, 1400,
-     7210,  872, 9619, 1403, 7201,    0, 1001, 9619, 7168, 7166,
-     9619, 1407, 1445, 1465,  713, 7143, 9619, 7203, 6738, 9619,
-     9619, 9619, 1459,  317, 6690, 6688, 6686, 6733, 6693, 9619,
-        0, 6686, 6687, 6710, 6682, 6674,  687, 6682, 6675, 6678,
-      887,   30, 1017, 6666, 6660,  757, 1018, 6684, 1071, 6661,
-     1081, 6655, 1138, 1148, 1209, 9619,    0, 6656, 6657, 9619,
-
-        0, 6653, 1513, 6641, 1009, 6637, 6680, 9619,    0, 6637,
-     1723, 6626, 6646, 6626, 6634, 6631, 6631, 6616, 1411, 9619,
-        0, 6623, 6613, 6620, 6601, 9619,    0, 1780, 6598, 6639,
-     6617, 6583, 6591, 6591, 1471, 6575, 6602, 1473, 1474, 9619,
-        0, 6578, 2221, 6572, 6557, 9619,    0, 2230, 6558, 6554,
-     9619,    0, 2277, 6552, 6551, 9619,    0, 6539, 6531, 6533,
-     9619,    0, 6531, 1196, 2280, 6509, 6528, 6516, 1007, 9619,
-        0, 6522, 6521, 2283, 6499, 2286, 6496, 6491, 6499, 6499,
-     6479, 6486, 6485, 6473, 6475, 9619,    0, 6472, 6469, 6453,
-     2289, 6447, 6442, 6458, 6442, 9619,    0, 6442, 2334, 6437,
-
-     9619,    0, 6427, 2337, 6402, 6419, 6417, 6406, 9619,    0,
-     6396, 6407, 6397, 6390, 6389, 9619,    0, 6378, 6395, 6389,
-     6369, 6396, 9619,    0, 6352, 2340, 6356, 9619,    0, 6343,
-     6358, 6348, 6348, 9619,    0, 6335, 6316, 6322, 6330, 6315,
-     6311, 9619,    0, 6316, 6324, 9619,    0, 2343, 6309, 9619,
-        0, 2346, 6300, 6294, 6322, 6331, 1111, 6279, 9619, 1525,
-        0, 6259, 6259, 6301, 6298, 6251, 9619, 6262, 6244, 2400,
-     2403, 1799, 6253, 6231, 6225, 6230, 6219, 6232, 6217, 6209,
-     6200, 6213, 6210, 6196, 6195, 6182, 6186, 6194, 6179, 6170,
-     1854, 6162, 6177, 6174, 6145, 6154, 6145, 2408, 2411, 6137,
-
-     2414, 1922, 6132, 6155, 2466, 2471, 9619, 6125, 2475, 1987,
-     2478, 6107, 2486, 6110, 6105, 6108, 2481, 2545, 6084, 6085,
-     6091, 6084, 2535, 2540, 2548, 2053, 6061, 2598, 2606, 1865,
-     6062, 6058, 6052, 6044, 6048, 1930, 6037, 6036, 6035, 2609,
-     2122, 6044, 2612, 2617, 2627, 2368, 6043, 2667, 2671, 2676,
-     2434, 6041, 2679, 2686, 6034, 6033, 2694, 2737, 6027, 5997,
-     6007, 2740, 2632, 6005, 5990, 2747, 2750, 5987, 5974, 5982,
-     1475, 2794, 2698, 5985, 2797, 2706, 2802, 5983, 5977, 5973,
-     5961, 5958, 5955, 5966, 2805, 2862, 5952,  557, 5943, 2850,
-     2762, 2853, 5953, 5938, 2858, 2871, 5938, 2877, 2820, 2923,
-
-     2927, 5950, 2930, 2886, 5947, 5923, 5920, 2933, 2937, 2948,
-     2956, 2959, 2962, 2970, 5924, 2977, 2989, 2997, 3003, 3008,
-     3031, 5924, 3034, 3040, 3054, 3057, 3062, 3065, 3069, 3076,
-     3083, 5925, 5907, 5914, 5906, 3087, 3091, 5911, 5897, 3095,
-     3098, 3102, 3120, 3130, 3133, 3106, 3136, 5891, 3144, 3155,
-     5936, 9619, 9619, 1299, 5886, 9619, 5926, 5925, 5874, 9619,
-     9619, 5871, 5870, 5878, 3158, 3163, 9619, 3166, 1741, 5865,
-     5858, 5870, 5852, 5858, 5843, 5846, 5846, 5841, 5835, 5831,
-     5824, 1327, 5827, 5809, 5809, 5814, 5793, 5794, 1995, 5769,
-     5775, 5767, 1670, 5773, 3169, 3177, 3187, 9619, 3190, 3197,
-
-     3200, 9619, 9619, 3209, 5797, 3215, 3219, 9619, 3223, 5752,
-     3227, 9619, 9619, 3242, 3245, 3254, 3260, 3272, 5765, 3263,
-     5762, 3266, 3281, 9619, 3285, 1727, 5747, 3288, 5744, 3291,
-     3294, 9619, 3300, 3306, 9619, 9619, 5738, 3314, 3319, 9619,
-     3322, 5729, 5740, 5712, 5719, 5709, 5703, 5699, 5694, 5707,
-     3326, 9619, 9619, 5699, 3334, 3341, 9619, 3348, 3353, 9619,
-     9619, 5720, 3361, 3367, 9619, 3370, 3373, 9619, 9619, 3381,
-     3389, 3392, 9619, 3395, 3399, 3403, 3417, 3421, 9619, 3424,
-     5689, 5695, 3427, 3436, 9619, 9619, 5677, 5688, 3432, 3445,
-     9619, 3451, 5678, 5676, 5669, 5647, 5661, 5653, 3455, 9619,
-
-     9619, 3464, 3470, 9619, 9619, 3478, 3483, 5642, 5640, 5640,
-     5633, 5628, 5619, 5610, 3491, 3496, 9619, 3499, 5607, 5596,
-     5588, 5602, 3503, 9619, 9619, 3511, 3518, 5588, 5583, 3529,
-     3532, 9619, 3535, 5582, 3538, 9619, 9619, 3554, 3557, 9619,
-     3560, 5561, 3566, 9619, 9619, 5568, 5548, 5545, 3579, 3582,
-     9619, 3587, 3590, 3594, 3602, 3608, 5538, 3616, 3620, 9619,
-     3623, 5532, 3627, 3635, 5516, 5513, 3630, 3648, 5520, 3656,
-     3659, 9619, 3662, 5521, 3665, 9619, 9619, 3681, 3684, 9619,
-     3690, 3693, 3696, 5500, 5497, 3704, 3711, 3722, 3726, 9619,
-     3729, 5481, 3733, 5499, 5478, 3736, 3741, 9619, 3751, 5472,
-
-     5479, 3755, 3760, 9619, 3763, 3770, 9619, 9619, 3766, 3785,
-     9619, 3791, 3794, 9619, 9619, 5478, 3804, 3812, 9619, 3817,
-     1305, 3823, 9619, 9619, 5503, 5501, 5460, 5447, 3826, 5439,
-     5441, 5433, 5393, 5394, 2061, 5382, 2188, 5372, 5372, 2251,
-     5375, 5375, 2308, 5358, 5366, 5368, 5363, 5357, 5350, 5343,
-     5341, 2504, 5354, 5353, 3831, 3836, 3845, 3851, 3854, 5352,
-     5360, 3864, 5326, 3869, 9619, 9619, 3878, 3883, 3892, 9619,
-     9619, 5325, 3903, 3907, 5315, 3915, 2507, 5298, 3921, 3924,
-     3934, 3939, 5296, 3942, 9619, 5284, 5285, 2559, 2569, 5296,
-     5291, 5286, 5284, 5275, 3945, 3948, 5282, 3952, 3967, 3971,
-
-     3979, 3985, 3989, 5274, 3998, 5272, 5263, 4003, 4006, 4017,
-     4022, 4025, 5251, 5252, 5266, 4028, 5239, 5255, 4031, 4040,
-     4049, 9619, 9619, 4035, 5228, 5249, 5231, 5223, 5232, 5207,
-     4059, 5228, 4062, 5199, 5197, 4065, 9619, 9619, 4074, 5204,
-     4080, 5194, 4083, 5153, 5152, 5136, 4086, 4093, 4105, 9619,
-     9619, 4113, 9619, 9619, 5124, 4124, 3000, 4127, 9619, 9619,
-     5123, 5122, 4137, 9619, 9619, 5105, 4145, 5102, 4150, 4153,
-     9619, 9619, 5101, 5067, 4165, 9619, 9619, 4173, 5056, 4176,
-     4179, 5045, 5058, 4194, 5034, 4197, 4200, 4207, 4215, 4221,
-      593, 5071, 4226, 9619, 5052, 9619, 9619, 5008, 4992, 4229,
-
-     4936, 4931, 4901, 4875, 4856, 2572, 4857, 2640, 4857, 2743,
-     4810, 2881, 4735, 4673, 4233, 4594, 4236, 4593, 4240, 4573,
-     4563, 4515, 4459, 4248, 4389, 4251, 4254, 9619, 9619, 4262,
-     4267, 9619, 9619, 4382, 4299, 4283, 4271, 4287, 9619, 9619,
-     4253, 4302, 9619, 9619,   79, 4311, 4314,  108, 4317, 1763,
-     2084, 4325, 4331, 4339,  165,  240,  250, 4343, 4346, 4349,
-      295, 4352, 4358,  314, 4361, 4365, 4373, 4379, 4382, 4385,
-     9619, 9619, 4393, 4397, 9619, 9619, 4405, 4408,  384,  374,
-     4423, 9619, 9619, 4416, 4434, 4442, 4445,  443, 4454, 4460,
-      458,  510, 4463, 4466, 4474,  559, 4477, 9619, 9619, 4485,
-
-     4488, 4496,  620,  702,  697,  705, 4499, 4503,  711, 4506,
-     4510, 4518,  756, 4524, 4527,  770, 4536,  794, 4542,  829,
-      810,  833, 4545, 4548,  849, 4556,  855, 4563,  895, 4569,
-     4575, 4578, 4582,  923, 4587, 4596, 4601, 4606,  933, 4615,
-     9619, 9619, 1006,  997, 4609, 1021, 4628, 4635, 4649, 4653,
-     4656, 4661, 4674, 1309, 1302, 1121, 9619, 1042, 4677, 4680,
-     1069, 1075, 1151, 1133, 4683, 1150, 1141, 4686, 1159, 1170,
-     1184, 4689, 4695, 4699, 1206, 4702, 1213, 4709, 4712, 1204,
-     1222, 1230, 4715, 1260, 4718, 1269, 1308, 4721, 1324, 4724,
-     1330, 4727, 4730, 1367, 1356, 1423, 1360, 1375, 1376, 1429,
-
-     1377, 4742, 9619, 9619, 4733, 4752, 1377, 1411, 4755, 4758,
-     1401, 4761, 4770, 9619, 9619, 4764, 4786, 4789, 4797, 4800,
-     4804, 4807, 4822, 1399, 1426, 4825, 9619, 9619, 4834, 1442,
-     1443, 1439, 4842, 9619, 4845, 1456, 1462, 4851, 9619, 9619,
-     4861, 4864, 1487, 4872, 9619, 9619, 4880, 4883, 4891, 1488,
-     1658, 1672, 4894, 4898, 4912, 1673, 4915, 9619, 9619, 4923,
-     4927, 1683, 4935, 9619, 9619, 1678, 4943, 9619, 1690, 4946,
-     1673, 4949, 1698, 4952, 1727, 1751, 1732, 4967, 9619, 1740,
-     4970, 1753, 4973, 4976, 4991, 4996, 1778, 5004, 1781, 5010,
-     5013, 5016, 5024, 5031, 5042, 1783, 1786, 1790, 5045, 1788,
-
-     5048, 9619, 9619, 5056, 5064, 5071, 9619, 9619, 5079, 9619,
-     1833, 2079, 1845, 1800, 5083, 5086, 5094, 5101, 1795, 1804,
-     5113, 5118, 5121, 1825, 1848, 1849, 5124, 5127, 5130, 5133,
-     1850, 5136, 5139, 5142, 5145, 5148, 1851, 5151, 1858, 1876,
-     5154, 9619, 1858, 5158, 5161, 1886, 5176, 5180, 5183, 1917,
-     1928, 1935, 1941, 1935, 1944, 1942, 1945, 1951, 1949, 5191,
-     5198, 5203, 5211, 1932, 5216, 5219, 5222, 5225, 5233, 5241,
-     9619, 9619, 5236, 5255, 9619, 5259, 9619, 9619, 5267, 1941,
-     1934, 2006, 2017, 1959, 1989, 1986, 5270, 9619, 9619, 1986,
-     5279, 9619, 9619, 5288, 5291, 1999, 1995, 2001, 5299, 9619,
-
-     9619, 5307, 2002, 5310, 9619, 9619, 1999, 2008, 2017, 5321,
-     2052, 5326, 5329, 2056, 2048, 2138, 2152, 2059, 2071, 5340,
-     9619, 2066, 5344, 9619, 9619, 5352, 9619, 9619, 2078, 5360,
-     2071, 5363, 5367, 9619, 9619, 5375, 9619, 9619, 5383, 5386,
-     5389, 5392, 5395, 2066, 5398, 5420, 5423, 2154, 2130, 5429,
-     5432, 9619, 9619, 5442, 5445, 5451, 2108, 5454, 5461, 5464,
-     5467, 5470, 5473, 5476, 2110, 2122, 5479, 5482, 5485, 2132,
-     5488, 2128, 9619, 5491, 5494, 9619, 9619, 5502, 5509, 9619,
-     5513, 9619, 9619, 2174, 2187, 2203, 2198, 2209, 2220, 2208,
-     2230, 2241, 2268, 5521, 5524, 9619, 9619, 5532, 2227, 5535,
-
-     2230, 5540, 9619, 9619, 5548, 5551, 5554, 2241, 2247, 2274,
-     2300, 2280, 2304, 2277, 5557, 2294, 2297, 5561, 9619, 9619,
-     5573, 2292, 2302, 5577, 2300, 2305, 2310, 2311, 5582, 9619,
-     5585, 5597, 9619, 9619, 2310, 2306, 2346, 2369, 2349, 2369,
-     2326, 2347, 5591, 2359, 5606, 5609, 5612, 5615, 5618, 5621,
-     5636, 5639, 5642, 5645, 5648, 5661, 9619, 5667, 2389, 2414,
-     5657, 5676, 5672, 2352, 5680, 5686, 5691, 2349, 2361, 2363,
-     5696, 9619, 2353, 5699, 5702, 5710, 2386, 2382, 2404, 2394,
-     2406, 2402, 2428, 2452, 2447, 2458, 5717, 2431, 2427, 5720,
-     5723, 9619, 5729, 2436, 2462, 2528, 9619, 2526, 9619, 5732,
-
-     5742, 2473, 2493, 5750, 5753, 2486, 5761, 5768, 9619, 2479,
-     2487, 5771, 2488, 5779, 5790, 2502, 2498, 2505, 2563, 9619,
-     2568, 9619, 5782, 2544, 5800, 2545, 5803, 9619, 5806, 5809,
-     5817, 5824, 5827, 9619, 9619, 5836, 5839, 5847, 5850, 9619,
-     5854, 5857, 2613, 2619, 2643, 5860, 9619, 2553, 2544, 2569,
-     2570, 5865, 5869, 2833, 3116, 5879, 2597, 2618, 2653, 2663,
-     2680, 2662, 2681, 2687, 2691, 2723, 5883, 2702, 2693, 5886,
-     5891, 9619, 2686, 5897, 9619, 9619, 5905, 5911, 2688, 2698,
-     5919, 9619, 9619, 2712, 5927, 5930, 2700, 5945, 5948, 5951,
-     5959, 5966, 9619, 9619, 2732, 2742, 2745, 9619, 9619, 5977,
-
-     5980, 5988, 5991, 5995, 2903, 3173, 6009, 9619, 6012, 6015,
-     9619, 9619, 6023, 6031, 6041, 9619, 2797, 2798, 2922, 6044,
-     2757, 2760, 2763, 6047, 6050, 2777, 2791, 2949, 2790, 2827,
-     3004, 6061, 2842, 2828, 2841, 2851, 9619, 2869, 2855, 2853,
-     2873, 9619, 6065, 6068, 2869, 6071, 6079, 6074, 6086, 6097,
-     9619, 9619, 2875, 2886, 2903, 6105, 9619, 9619, 2907, 6113,
-     6117, 6127, 9619, 9619, 6135, 6138, 2911, 6146, 2926, 6149,
-     9619, 9619, 6157, 6160, 6168, 6171, 2951, 2952, 2958, 2961,
-     2962, 2972, 6179, 6182, 9619, 9619, 3025, 2997, 6190, 6193,
-     6198, 2951, 2958, 6202, 9619, 9619, 3018, 3012, 3015, 3026,
-
-     3040, 3040, 3041, 3054, 6210, 3043, 3090, 3107, 3094, 3079,
-     3098, 3118, 3106, 6213, 6216, 6219, 6222, 6232, 6235, 3076,
-     6243, 9619, 9619, 3089, 3085, 3077, 3098, 6251, 9619, 9619,
-     6259, 9619, 9619, 3121, 6267, 6270, 3104, 6278, 3142, 3189,
-     6286, 3197, 3205, 3139, 3149, 3179, 3153, 3170, 3228, 6294,
-     3279, 6297, 6300, 6303, 6322, 6325, 6328, 3203, 3226, 3228,
-     3216, 3224, 3234, 3252, 3241, 6331, 6334, 3271, 3276, 9619,
-     3283, 3290, 3297, 9619, 3301, 6342, 6345, 6349, 6352, 9619,
-     9619, 3283, 3284, 3290, 6361, 3291, 6364, 6368, 9619, 9619,
-     6382, 3317, 3332, 3324, 3340, 3331, 3352, 3344, 3360, 3353,
-
-     3363, 9619, 3369, 3382, 9619, 6385, 9619, 3394, 6388, 6391,
-     6410, 6430, 6477, 6400, 6418, 3386, 3407, 3410, 3377, 3418,
-     3441, 3442, 3420, 6450, 9619, 9619, 3456, 3436, 3437, 3466,
-     3444, 3445, 6421, 6424, 9619, 3425, 3429, 3439, 6468, 6458,
-     3437, 6471, 6497, 6489, 6507, 3498, 3469, 3501, 3479, 3517,
-     3486, 3517, 3489, 3523, 3537, 3536, 3537, 3530, 6516, 3545,
-     3567, 6536, 6583, 3534, 9619, 9619, 3515, 3540, 9619, 9619,
-     3528, 9619, 3565, 3567, 9619, 3569, 3570, 6526, 9619, 3548,
-     3555, 3541, 6556, 3608, 3650, 3562, 6564, 9619, 9619, 6572,
-     3651, 3682, 9619, 3610, 9619, 3633, 9619, 3639, 9619, 3644,
-
-     9619, 9619, 9619, 9619, 3721, 3650, 3652, 3649, 3702, 3666,
-     6529, 3665, 3655, 3688, 3690, 9619, 9619, 9619, 9619, 6594,
-     6603, 6606, 3760, 3689, 3763, 3690, 6612, 3768, 3705, 3769,
-     3718, 9619, 9619, 9619, 9619, 6615, 3742, 3729, 3751, 6624,
-     3771, 3756, 3775, 3777, 6630, 6634, 6643, 6648, 6656, 6661,
-     3762, 3779, 3795, 3782, 3790, 3809, 6669, 6676, 3796, 3808,
-     3829, 3819, 3828, 3840, 6687, 3844, 9619, 3835, 9619, 3840,
-     6690, 9619, 9619, 6699, 9619, 9619, 6707, 3849, 3863, 3840,
-     3850, 3853, 3862, 3867, 3865, 6715, 9619, 9619, 3871, 3879,
-     3876, 3883, 3888, 3891, 3912, 9619, 3925, 3925, 3917, 3929,
-
-     3938, 3932, 3933, 3940, 3940, 3946, 3953, 3953, 3954, 3960,
-     3968, 3966, 3972, 3977, 4036, 9619, 9619, 3971, 3992, 3976,
-     4001, 4011, 4016, 4034, 4035, 4032, 4055, 4054, 4053, 4073,
-     4062, 4060, 4077, 4084, 4069, 4072, 4075, 4080, 4094, 4084,
-     4117, 4106, 4098, 4128, 4112, 4105, 4152, 4134, 4124, 4154,
-     4146, 4134, 4147, 4154, 4160, 4181, 4156, 9619, 4181, 4159,
-     9619, 4188, 4172, 9619, 4197, 4179, 9619, 4228, 4176, 4190,
-     4184, 4201, 9619, 4221, 9619, 4233, 9619, 4241, 9619, 4246,
-     6725, 4248, 4269, 4251, 4269, 4236, 4237, 4248, 4250, 6728,
-     4291, 9619, 4289, 9619, 4294, 4293, 4301, 4300, 4302, 4359,
-
-     9619, 9619, 9619, 9619, 9619, 9619, 4290, 4305, 4385, 4465,
-     4358, 4370, 4350, 4414, 4312, 4430, 4522, 4541, 4451, 4475,
-     4384, 4396, 4464, 4515, 4567, 4572, 4549, 4581, 4439, 4576,
-     4554, 4573, 4625, 4629, 4720, 4730, 4614, 4641, 4646, 4732,
-     4749, 4757, 4763, 4766, 4654, 4762, 4819, 4821, 4776, 4815,
-     4830, 4859, 4838, 4841, 4831, 4902, 4622, 4885, 5018, 5044,
-     4758, 4836, 4892, 4923, 4543, 4857, 4915, 4920, 4903, 4944,
-     4963, 4971, 4984, 5001, 4976, 5168, 5022, 5043, 5049, 5058,
-     5155, 5235, 5156, 5178, 4942, 4969, 5196, 5212, 5087, 5240,
-     6736, 6739, 9619, 9619, 6759, 6768, 6777, 6786, 6795, 6804,
-
-     6813, 6822, 6831, 6840, 6849, 6858, 6867, 6876, 6885, 6894,
-     6903, 6912, 6921, 6930, 6939, 6948, 6957, 6966, 6975, 6984,
-     6993, 7002, 7011, 7020, 7029, 7038, 7047, 7056, 7065, 7074,
-     7083, 7092, 7101, 7110, 7119, 7128, 7137, 7146, 7155, 7164,
-     7173, 7182, 7191, 7200, 7207, 7214, 7221, 7228, 7235, 7242,
-     7249, 7256, 7263, 7270, 7277, 7284, 7291, 7298, 7305, 7312,
-     7319, 7326, 7333, 7340, 7347, 7354, 7361, 7370, 7377, 7382,
-     7389, 7394, 7401, 7406, 7413, 7418, 7425, 7430, 7437, 7442,
-     7449, 7454, 7461, 7466, 7473, 7478, 7485, 7490, 7497, 7502,
-     7509, 7514, 7521, 7526, 7533, 7538, 7545, 7550, 7557, 7562,
-
-     7569, 7574, 7581, 7586, 7593, 7598, 7605, 7610, 7617, 7622,
-     7629, 7634, 7641, 7646, 7655, 7661, 7668, 7676, 7683, 7691,
-     7698, 7706, 7713, 7721, 7728, 7736, 7743, 7751, 7758, 7766,
-     7773, 7781, 7788, 7796, 7803, 7811, 7818, 7826, 7833, 7841,
-     7848, 7856, 7863, 7871, 7878, 7886, 7894, 7902, 7910, 7918,
-     7925, 7933, 7941, 7949, 7956, 7964, 7971, 7979, 7987, 7994,
-     8002, 8011, 8017, 8024, 8032, 8040, 8048, 8056, 8064, 8071,
-     8079, 8086, 8094, 8101, 8109, 8116, 8124, 8131, 8139, 8147,
-     8155, 8163, 8171, 8178, 8186, 8193, 8201, 8208, 8216, 8223,
-     8231, 8238, 8246, 8253, 8261, 8268, 8276, 8283, 8291, 8298,
-
-     8306, 8313, 8321, 8328, 8336, 8344, 8351, 8359, 8368, 8377,
-     8384, 8392, 8400, 8407, 8415, 8422, 8430, 8437, 8445, 8452,
-     8459, 8467, 8474, 8482, 8490, 8497, 8505, 8512, 8520, 8527,
-     8535, 8542, 8550, 8557, 8565, 8572, 8580, 8587, 8595, 8602,
-     8610, 8617, 8625, 8632, 8640, 8647, 8655, 8663, 8671, 8679,
-     8687, 8695, 8704, 8713, 8720, 8728, 8736, 8743, 8751, 8758,
-     8766, 8773, 8781, 8788, 8795, 8803, 8811, 8819, 8827, 8835,
-     8843, 8850, 8858, 8865, 8873, 8880, 8888, 8895, 8903, 8910,
-     8918, 8925, 8933, 8941, 8949, 8956, 8964, 8972, 8980, 8987,
-     8995, 9003, 9011, 9019, 9028, 9037, 9045, 9053, 9061, 9068,
-
-     9076, 9083, 9091, 9099, 9107, 9115, 9123, 9131, 9139, 9147,
-     9155, 9162, 9169, 9177, 9184, 9191, 9199, 9206, 9213, 9221,
-     9228, 9236, 9243, 9251, 9259, 9266, 9274, 9282, 9290, 9299,
-     9308, 9316, 9324, 9331, 9338, 9346, 9354, 9362, 9370, 9378,
-     9385, 9392, 9400, 9407, 9414, 9422, 9429, 9436, 9443, 9451,
-     9458, 9466, 9474, 9482, 9490, 9498, 9506, 9515, 9524, 9532,
-     9540, 9547, 9555, 9564, 9573, 9582, 9591, 9600, 9609
+      239,  256,  274,  328,  294,  297,  300,  304,  307,  348,
+      351,  354,  382,  445,  359,  414,  508,  574,  405,  408,
+      412,  417,  465,  468,  471,  475,  640,  707,  478,  528,
+      774,  839,  531,  534,  538,  541,  594,  597,  600,  604,
+      607,  660,  663,  666,  670,  673,  727,  730,  733,  737,
+      740,  794,  797,  800,  804,  807,  859,  862,  865,  869,
+
+      872,  889,  907,  967,  927,  930,  933,  937,  987,  990,
+      993,  997, 1027, 1094, 1047, 1050, 1053, 1057, 1060, 1114,
+     1117, 1120, 1161, 1222, 1124, 1127, 1283, 1350, 1181, 1184,
+     1417, 1483, 1187, 1191, 1194, 1242, 1245, 1248, 1252, 1255,
+     1549,    0, 1303, 1306, 1621,    0, 1309, 1313, 1693, 1750,
+     1316, 1370, 1807, 1873, 1373, 1376, 1380, 1383, 1437, 1440,
+     1443, 1447, 1939, 2005, 1503, 1506, 1509, 1513, 1713, 1716,
+     1719, 1723, 2071, 2137, 1770, 1773, 1776, 1780, 1827, 1830,
+     1833, 1837, 2203, 2260, 1840, 1893, 2317, 2383, 1896, 1899,
+     1903, 1906, 1959, 1962, 1965, 1969, 2449, 2515, 1972, 2025,
+
+     2028, 2031, 2035, 2038, 2091, 2094, 2581, 2650, 2097, 2101,
+     2719, 2776, 2104, 2157, 2160, 2163, 2167, 2170, 2223, 2226,
+     2833, 2902, 2229, 2233,    0,    0, 7420, 9692, 9692,   95,
+      100,   29,   41, 9692,  103,   51, 9692, 9692, 7409, 9692,
+     9692, 7394, 9692, 7409, 7409,  498, 9692, 9692, 9692, 9692,
+     7403, 7403, 7358,  145, 9692,  161, 7380,    0,  146, 9692,
+     7346, 9692,  166, 2967,   88,  204,  205,  254, 7386, 7330,
+     9692,  169, 7372,    0,  153, 9692, 7334, 9692,  260, 7374,
+       31, 9692,  357, 7365,    0,  244, 9692, 7327, 7327, 7325,
+      359, 7330, 9692,  438, 7352,    0,  248, 9692, 7318, 7318,
+
+      441, 7316,  260, 9692,  567,  112,  181,  210, 9692,  624,
+     7344,    0,  360, 9692, 7304, 7301, 7292, 9692,  633,  422,
+     9692,  692, 7336,    0,  479, 9692, 7299, 7288, 9692,  697,
+     2226, 2234,   29,   35, 7327,   16,  135,  348, 2230,  207,
+     7332,  185, 9692,  700, 7323,    0,  480, 9692, 7280, 7285,
+     7274, 9692,  759,  361,  413, 9692,  764, 7315,    0,  482,
+     9692, 7278, 7257, 9692,  767,  425,  432, 9692,  824, 7308,
+        0,  543, 9692, 7271, 7273, 9692,  830,  546, 9692,  833,
+     7301,    0,  545, 9692, 7267, 7243, 9692,  895,  611, 9692,
+      898, 7294,    0,  609, 9692, 7240, 7246, 7255, 7240, 7234,
+
+     9692,  940,  818, 7288,  263, 9692,  957, 7275,    0,  612,
+     9692, 7225,  177, 7231, 7236, 7238,  314,  630,  615, 9692,
+     1000,  685, 9692, 1017, 7266,    0,  684, 9692, 6762, 6760,
+     6766, 6775, 6777, 6763, 6757, 9692, 1077,  752, 9692, 1083,
+     6803,    0,  751, 9692, 6760, 6768, 9692, 1086,  944, 9692,
+     1089, 6799,    0,  808, 9692, 6768, 6757, 6759,    4, 9692,
+     1144,  512,  527, 9692, 1150, 6786,    0,  874, 9692, 6732,
+      366, 9692, 1153, 1013, 6784, 6736, 9692, 1156, 6773,    0,
+      884, 9692, 6722, 6717,  432, 9692, 1211, 6773,  626, 9692,
+     1217, 6759,    0,  941, 9692, 6720, 6721, 9692, 1272,  945,
+
+     9692, 1278, 6751,    0,  942, 9692, 6704, 6698, 6695, 9692,
+     1333, 6747,  811, 9692, 1336, 6737,    0, 1001, 9692, 6688,
+     6692, 6692, 6680, 9692, 1339, 1204, 6730,  556, 9692, 1343,
+     6721,    0, 1002, 9692, 6690, 9692, 1400, 1005, 9692, 1403,
+     6714,    0, 1061, 9692, 6677, 9692, 1406,  356,  843, 9692,
+     1410, 6708,    0, 1062, 9692, 6674, 6672, 9692, 1450, 1455,
+     1467,  713, 6644, 9692, 6704, 6692, 9692, 9692, 9692, 1464,
+      686, 6630, 6629, 6626, 6673, 6626, 9692,    0, 6619, 6609,
+     6628, 6601, 6581,  688, 6590, 6589, 6588,  822, 1084, 1155,
+     6577, 6577,  755, 1215, 6598,  757, 6575, 1461, 6569,  950,
+
+     1480, 1483, 9692,    0, 6566, 6567, 9692,    0, 6561, 1726,
+     6543, 1268, 6540, 6580, 9692,    0, 6538, 1783, 6523, 6541,
+     6527, 6535, 6532, 6528, 6513, 1683, 9692,    0, 6524, 6514,
+     6512, 6475, 9692,    0, 2296, 6473, 6517, 6499, 6464, 6469,
+     6473, 1410, 6461, 6480, 1413, 1476, 9692,    0, 6457, 2337,
+     6464, 6447, 9692,    0, 2340, 6439, 6425, 9692,    0, 2343,
+     6430, 6428, 9692,    0, 6423, 6416, 6412, 9692,    0, 6422,
+     1071, 2346, 6399, 6406, 6398, 1144, 9692,    0, 6403, 6403,
+     2349, 6384, 2403, 6381, 6376, 6380, 6380, 6362, 6366, 6365,
+     6358, 6344, 9692,    0, 6345, 6343, 6326, 2406, 6319, 6314,
+
+     6334, 6318, 9692,    0, 6305, 2409, 6301, 9692,    0, 6303,
+     2412, 6291, 6307, 6302, 6291, 9692,    0, 6273, 6288, 6272,
+     6266, 6272, 9692,    0, 6256, 6273, 6265, 6253, 6282, 9692,
+        0, 6238, 2415, 6242, 9692,    0, 6233, 6232, 6225, 6221,
+     9692,    0, 6202, 6196, 6193, 6202, 6178, 6175, 9692,    0,
+     6171, 6180, 9692,    0, 2469, 6168, 9692,    0, 2472, 6159,
+     6153, 6188, 6191, 1114, 6138, 9692, 1846,    0, 6134, 6124,
+     6168, 6166, 6116, 9692, 6128, 6109, 2477, 2480, 1802, 6115,
+     6106, 6099, 6099, 6093, 6106, 6074, 6065, 6064, 6077, 6079,
+     6052, 6051, 6043, 6047, 6055, 6042, 6040, 1866, 6028, 6044,
+
+     6040, 6020, 6032, 6026, 2490, 2543, 6025, 2483, 1990, 6019,
+     6051, 2538, 2546, 9692, 6020, 2549, 2056, 2553, 6000, 2603,
+     6003, 6006, 6002, 2606, 2617, 5987, 5987, 5994, 5993, 2610,
+     2613, 2621, 2125, 5972, 2670, 2673, 1923, 5975, 5966, 5968,
+     5950, 5954, 1932, 5947, 5945, 5944, 2679, 2191, 5957, 2682,
+     2685, 2697, 2307, 5955, 2739, 2742, 2745, 2371, 5947, 2751,
+     2754, 5946, 5939, 2797, 2800, 5934, 5920, 5930, 2808, 2437,
+     5925, 5910, 2804, 2811, 5907, 5903, 5912, 1478, 2853, 2632,
+     5911, 2856, 2640, 2859, 5899, 5895, 5890, 5871, 5855, 5852,
+     5854, 2865, 2879, 5850, 1082, 5840, 2922, 2704, 2925, 5844,
+
+     5828, 2930, 2933, 5825, 2943, 2766, 2953, 2963, 5837, 2966,
+     2885, 5834, 5808, 5803, 2972, 2978, 2991, 3000, 3003, 3009,
+     3034, 5807, 3037, 3040, 3043, 3047, 3065, 3069, 5811, 3072,
+     3075, 3084, 3091, 3095, 3098, 3116, 3119, 3122, 5811, 5785,
+     5791, 5784, 3125, 3134, 5786, 5771, 3129, 3149, 3153, 3156,
+     3164, 3171, 3174, 3177, 5766, 3185, 3193, 5813, 9692, 9692,
+     1241, 5772, 9692, 5806, 5804, 5754, 9692, 9692, 5748, 5747,
+     5755, 3198, 3204, 9692, 3207, 1998, 5749, 5733, 5741, 5717,
+     5728, 5713, 5711, 5706, 5698, 5696, 5680, 5673,  831, 5687,
+     5663, 5664, 5676, 5672, 5657, 2064, 5641, 5645, 5637, 1007,
+
+     5627, 3213, 3217, 3226, 9692, 3232, 3236, 3239, 9692, 9692,
+     3247, 5646, 3257, 3260, 9692, 3265, 5599, 3269, 9692, 9692,
+     3284, 3287, 3296, 3302, 3314, 5612, 3308, 5603, 3322, 3326,
+     9692, 3329, 1330, 5598, 3332, 5593, 3335, 3341, 9692, 3350,
+     3354, 9692, 9692, 5588, 3362, 3365, 9692, 3369, 5577, 5586,
+     5554, 5562, 5551, 5548, 5538, 5537, 5540, 3372, 9692, 9692,
+     5532, 3384, 3389, 9692, 3392, 3399, 9692, 9692, 5557, 3411,
+     3414, 9692, 3417, 3420, 9692, 9692, 3436, 3439, 3442, 9692,
+     3445, 3448, 3454, 3466, 3472, 9692, 3478, 5523, 5528, 3485,
+     3491, 9692, 9692, 5509, 5519, 3499, 3503, 9692, 3506, 5472,
+
+     5462, 5464, 5442, 5461, 5446, 3512, 9692, 9692, 3525, 3528,
+     9692, 9692, 3536, 3544, 5436, 5436, 5441, 5437, 5432, 5434,
+     5428, 3539, 3554, 9692, 3558, 5424, 5421, 5412, 5427, 3561,
+     9692, 9692, 3573, 3577, 5412, 5402, 3585, 3591, 9692, 3594,
+     5396, 3597, 9692, 9692, 3605, 3613, 9692, 3616, 5377, 3625,
+     9692, 9692, 5380, 5375, 5377, 3619, 3638, 9692, 3641, 3646,
+     3650, 3660, 3664, 5372, 3672, 3678, 9692, 3683, 5366, 3686,
+     3691, 5356, 5348, 3704, 3707, 5359, 3715, 3718, 9692, 3722,
+     5359, 3725, 9692, 9692, 3737, 3741, 9692, 3744, 3750, 3756,
+     5343, 5342, 3764, 3768, 3776, 3782, 9692, 3786, 5332, 3789,
+
+     5346, 5326, 3795, 3807, 9692, 3810, 5323, 5337, 3814, 3817,
+     9692, 3820, 3829, 9692, 9692, 3839, 3842, 9692, 3848, 3851,
+     9692, 9692, 5335, 3861, 3867, 9692, 3874,  304, 3880, 9692,
+     9692, 5362, 5360, 5318, 5309, 3886, 5301, 5297, 5287, 5284,
+     5293, 2250, 5271, 2255, 5270, 5268, 2509, 5274, 5274, 2572,
+     5263, 5271, 5273, 5268, 5262, 5244, 5238, 5235, 2575, 5236,
+     5230, 3889, 3893, 3901, 3908, 3911, 5229, 5254, 3920, 5222,
+     3926, 9692, 9692, 3935, 3939, 3953, 9692, 9692, 5221, 3947,
+     3961, 5211, 3970, 2826, 5202, 3973, 3976, 3984, 3991, 5200,
+     3994, 9692, 5181, 5182, 2893, 3997, 5193, 5196, 5189, 5188,
+
+     5178, 4002, 4005, 5139, 4013, 4016, 4025, 4034, 4037, 4044,
+     5134, 4055, 5136, 5126, 4058, 4062, 4070, 4077, 4080, 5113,
+     5114, 5125, 4083, 5106, 5118, 4088, 4095, 4106, 9692, 9692,
+     4116, 5095, 5115, 5087, 5090, 5097, 5072, 4119, 5093, 4124,
+     5070, 5079, 4127, 9692, 9692, 4138, 5081, 4142, 5071, 4146,
+     5069, 5063, 5051, 4149, 4152, 4161, 9692, 9692, 4171, 9692,
+     9692, 5042, 4156, 4179, 4184, 9692, 9692, 5029, 5043, 4192,
+     9692, 9692, 5015, 4200, 5009, 4212, 4215, 9692, 9692, 5007,
+     5013, 4227, 9692, 9692, 4235, 5005, 4238, 4241, 4994, 5011,
+     4249, 4997, 4256, 4261, 4269, 4264, 4274, 1303, 5036, 4283,
+
+     9692, 5034, 9692, 9692, 4973, 4935, 4288, 4914, 4925, 4866,
+     4835, 4815, 2997, 4760, 4293, 4688, 4302, 4685, 4307, 4647,
+     4629, 4310, 4619, 4313, 4560, 4316, 4542, 4530, 4531, 4390,
+     4322, 4337, 4328, 4337, 9692, 9692, 4331, 4351, 9692, 9692,
+     4328, 4288, 4345, 4260, 4364, 9692, 9692, 4262, 4377, 9692,
+     9692, 4165, 4385, 4359, 4144, 4388, 1766, 2087, 4398, 4404,
+     4412,   28,   22,   82, 4416, 4419, 4422,  165, 4425, 4431,
+      223, 4434, 4437, 4446, 4452, 4455, 4458, 9692, 9692, 4466,
+     4470, 9692, 9692, 4478, 4481,  264,  255, 4496, 9692, 9692,
+     4489, 4507, 4515, 4518,  324, 4527, 4533,  355,  383, 4536,
+
+     4539, 4547,  441, 4550, 9692, 9692, 4558, 4561, 4569,  448,
+      512,  506,  559, 4572, 4576,  574, 4579, 4583, 4591,  595,
+     4597, 4600,  626, 4609,  691, 4615,  707,  718,  750, 4618,
+     4621,  770, 4629,  773, 4636,  852, 4642, 4648, 4651, 4655,
+      866, 4660, 4669, 4674, 4679,  876, 4688, 9692, 9692,  895,
+      916, 4682,  945, 4701, 4708, 4722, 4726, 4729, 4734, 4747,
+     1312, 1049, 1218, 9692,  951, 4750, 4753,  990, 1016, 1087,
+     1112, 4756, 1139, 1133, 4759, 1146, 1138, 1145, 4762, 4768,
+     4772, 1209, 4775, 1221, 4782, 4785, 1234, 1269, 1259, 4788,
+     1275, 4791, 1277, 1311, 4794, 1304, 4797, 1332, 4800, 4803,
+
+     1368, 1356, 1426, 1359, 1377, 1364, 1451, 1379, 4815, 9692,
+     9692, 4806, 4825, 1363, 1395, 4828, 4831, 1404, 4834, 4843,
+     9692, 9692, 4837, 4859, 4862, 4870, 4873, 4877, 4880, 4895,
+     1425, 1450, 4898, 9692, 9692, 4907, 1482, 1483, 1465, 4915,
+     9692, 4918, 1468, 1484, 4924, 9692, 9692, 4934, 4937, 1486,
+     4945, 9692, 9692, 4953, 4956, 4964, 1490, 1661, 1667, 4967,
+     4971, 4985, 1675, 4988, 9692, 9692, 4996, 5000, 1684, 5008,
+     9692, 9692, 1678, 5016, 9692, 1689, 5019, 1676, 5022, 1698,
+     5025, 1711, 1713, 1709, 5040, 9692, 1724, 5043, 1723, 5046,
+     5049, 5064, 5069, 1735, 5077, 1731, 5083, 5086, 5089, 5097,
+
+     5104, 5115, 1739, 1763, 1781, 5118, 1785, 5121, 9692, 9692,
+     5129, 5137, 5144, 9692, 9692, 5152, 9692, 1830, 2082, 1851,
+     1787, 5156, 5159, 5167, 5174, 1782, 1790, 5186, 5191, 5194,
+     1801, 1812, 1812, 5197, 5200, 5203, 5206, 1827, 5209, 5212,
+     5215, 5218, 5221, 1842, 5224, 1855, 1867, 5227, 9692, 1850,
+     5231, 5234, 1869, 5249, 5253, 5256, 1887, 1889, 1889, 1898,
+     1894, 1903, 1916, 1930, 1943, 1936, 5264, 5271, 5276, 5284,
+     1919, 5289, 5292, 5295, 5298, 5306, 5314, 9692, 9692, 5309,
+     5328, 9692, 5332, 9692, 9692, 5340, 1923, 1917, 1968, 2009,
+     1930, 1945, 1945, 5343, 9692, 9692, 1960, 5352, 9692, 9692,
+
+     5361, 5364, 1993, 1984, 1989, 5372, 9692, 9692, 5380, 1991,
+     5383, 9692, 9692, 1987, 1996, 1994, 5394, 2007, 5399, 5402,
+     2010, 2006, 2086, 2141, 2011, 2036, 5413, 9692, 2050, 5417,
+     9692, 9692, 5425, 9692, 9692, 2063, 5433, 2064, 5436, 5440,
+     9692, 9692, 5448, 9692, 9692, 5456, 5459, 5462, 5465, 5468,
+     2063, 5471, 5493, 5496, 2115, 2116, 5502, 5505, 9692, 9692,
+     5515, 5518, 5524, 2064, 5527, 5534, 5537, 5540, 5543, 5546,
+     5549, 2086, 2118, 5552, 5555, 5558, 2119, 5561, 2119, 9692,
+     5564, 5567, 9692, 9692, 5575, 5582, 9692, 5586, 9692, 9692,
+     2162, 2150, 2165, 2164, 2172, 2174, 2161, 2176, 2187, 2208,
+
+     5594, 5597, 9692, 9692, 5605, 2171, 5608, 2173, 5613, 9692,
+     9692, 5621, 5624, 5627, 2186, 2192, 2256, 2282, 2263, 2284,
+     2241, 5630, 2245, 2249, 5634, 9692, 9692, 5646, 2243, 2255,
+     5650, 2257, 2280, 2301, 2302, 5655, 9692, 5658, 5670, 9692,
+     9692, 2300, 2296, 2333, 2355, 2339, 2358, 2317, 2322, 5664,
+     2327, 5679, 5682, 5685, 5688, 5691, 5694, 5709, 5712, 5715,
+     5718, 5721, 5734, 9692, 5740, 2413, 2379, 5730, 5749, 5745,
+     2311, 5753, 5759, 5764, 2307, 2320, 2321, 5769, 9692, 2348,
+     5772, 5775, 5783, 2378, 2375, 2389, 2378, 2389, 2389, 2389,
+     2407, 2396, 2407, 5790, 2380, 2376, 5793, 5796, 9692, 5802,
+
+     2410, 2412, 2483, 9692, 2481, 9692, 5805, 5815, 2431, 2451,
+     5823, 5826, 2442, 5834, 5841, 9692, 2437, 2440, 5844, 2442,
+     5852, 5863, 2455, 2455, 2472, 2531, 9692, 2529, 9692, 5855,
+     2484, 5873, 2485, 5876, 9692, 5879, 5882, 5890, 5897, 5900,
+     9692, 9692, 5909, 5912, 5920, 5923, 9692, 5927, 5930, 2544,
+     2540, 2689, 5933, 9692, 2501, 2496, 2512, 2514, 5938, 5942,
+     2679, 2725, 5952, 2540, 2558, 2594, 2607, 2625, 2602, 2617,
+     2621, 2625, 2639, 5956, 2626, 2617, 5959, 5964, 9692, 2619,
+     5970, 9692, 9692, 5978, 5984, 2620, 2631, 5992, 9692, 9692,
+     2638, 6000, 6003, 2631, 6018, 6021, 6024, 6032, 6039, 9692,
+
+     9692, 2654, 2662, 2661, 9692, 9692, 6050, 6053, 6061, 6064,
+     6068, 2851, 2917, 6082, 9692, 6085, 6088, 9692, 9692, 6096,
+     6104, 6114, 9692, 2772, 2857, 2878, 6117, 2682, 2710, 2716,
+     6120, 6123, 2735, 2762, 2783, 2781, 2789, 2849, 6134, 2801,
+     2790, 2804, 2822, 9692, 2840, 2828, 2829, 2851, 9692, 6138,
+     6141, 2847, 6144, 6152, 6147, 6159, 6170, 9692, 9692, 2853,
+     2868, 2880, 6178, 9692, 9692, 2892, 6186, 6190, 6200, 9692,
+     9692, 6208, 6211, 2884, 6219, 2900, 6222, 9692, 9692, 6230,
+     6233, 6241, 6244, 2918, 2924, 2924, 2927, 2928, 2940, 6252,
+     6255, 9692, 9692, 2964, 3000, 6263, 6266, 6271, 2911, 2920,
+
+     6275, 9692, 9692, 2968, 2956, 2961, 2969, 2986, 2974, 2979,
+     2987, 6283, 2981, 3006, 3042, 3030, 3013, 3035, 3049, 3038,
+     6286, 6289, 6292, 6295, 6305, 6308, 3007, 6316, 9692, 9692,
+     3010, 3006, 2998, 3026, 6324, 9692, 9692, 6332, 9692, 9692,
+     3029, 6340, 6343, 3011, 6351, 3068, 3070, 6359, 3095, 3099,
+     3047, 3074, 3104, 3069, 3081, 3132, 6367, 3150, 6370, 6373,
+     6376, 6395, 6398, 6401, 3108, 3120, 3122, 3122, 3128, 3145,
+     3157, 3146, 6404, 6407, 3161, 3162, 9692, 3168, 3174, 3182,
+     9692, 3192, 6415, 6418, 6422, 6425, 9692, 9692, 3166, 3168,
+     3169, 6434, 3174, 6437, 6441, 9692, 9692, 6455, 3208, 3221,
+
+     3217, 3228, 3221, 3239, 3234, 3248, 3241, 3253, 9692, 3246,
+     3256, 9692, 6458, 9692, 3288, 6461, 6464, 6483, 6503, 6550,
+     6473, 6491, 3259, 3286, 3288, 3255, 3272, 3292, 3293, 3267,
+     6523, 9692, 9692, 3307, 3286, 3289, 3331, 3308, 3314, 6494,
+     6497, 9692, 3289, 3300, 3311, 6541, 6531, 3318, 6544, 6570,
+     6562, 6580, 3373, 3341, 3374, 3345, 3391, 3359, 3391, 3367,
+     3401, 3404, 3402, 3416, 3407, 6589, 3457, 3444, 6609, 6656,
+     3414, 9692, 9692, 3392, 3418, 9692, 9692, 3395, 9692, 3429,
+     3430, 9692, 3451, 3452, 6599, 9692, 3413, 3418, 3406, 6629,
+     3472, 3485, 3430, 6637, 9692, 9692, 6645, 3527, 3546, 9692,
+
+     3479, 9692, 3481, 9692, 3485, 9692, 3487, 9692, 9692, 9692,
+     9692, 3531, 3516, 3548, 3511, 3562, 3511, 6602, 3510, 3507,
+     3520, 3523, 9692, 9692, 9692, 9692, 6667, 6676, 6679, 3591,
+     3523, 3616, 3555, 6685, 3650, 3561, 3655, 3573, 9692, 9692,
+     9692, 9692, 6688, 3598, 3589, 3603, 6697, 3618, 3608, 3626,
+     3615, 6703, 6707, 6716, 6721, 6729, 6734, 3606, 3618, 3633,
+     3620, 3636, 3649, 6742, 6749, 3638, 3650, 3677, 3661, 3671,
+     3690, 6760, 3694, 9692, 3681, 9692, 3696, 6763, 9692, 9692,
+     6772, 9692, 9692, 6780, 3710, 3736, 3695, 3700, 3698, 3713,
+     3722, 3718, 6788, 9692, 9692, 3736, 3743, 3743, 3745, 3761,
+
+     3757, 3780, 9692, 3795, 3794, 3782, 3778, 3804, 3799, 3799,
+     3811, 3813, 3817, 3823, 3830, 3828, 3836, 3840, 3837, 3848,
+     3848, 3859, 9692, 9692, 3840, 3863, 3846, 3885, 3879, 3877,
+     3894, 3888, 3885, 3906, 3896, 3893, 3919, 3909, 3906, 3927,
+     3941, 3921, 3930, 3932, 3945, 3958, 3952, 3985, 3976, 3973,
+     4003, 3987, 3986, 4018, 4000, 3993, 4023, 4023, 4014, 4025,
+     4022, 4029, 4057, 4034, 9692, 4060, 4043, 9692, 4082, 4060,
+     9692, 4085, 4070, 9692, 4104, 4068, 4081, 4074, 4088, 9692,
+     4088, 9692, 4090, 9692, 4106, 9692, 4108, 6798, 4111, 4155,
+     4143, 4162, 4134, 4135, 4140, 4145, 6801, 4185, 9692, 4183,
+
+     9692, 4193, 4191, 4199, 4197, 4192, 4205, 9692, 9692, 9692,
+     9692, 9692, 9692, 4189, 4215, 4226, 4234, 4259, 4282, 4206,
+     4355, 4268, 4287, 4338, 4357, 4208, 4278, 4336, 4339, 4352,
+     4384, 4354, 4375, 4458, 4492, 4431, 4432, 4411, 4425, 4483,
+     4495, 4587, 4614, 4594, 4606, 4506, 4585, 4654, 4676, 4645,
+     4646, 4505, 4588, 4687, 4695, 4487, 4512, 4188, 4707, 4760,
+     4793, 4724, 4828, 4362, 4698, 4702, 4831, 4667, 4849, 4830,
+     4847, 4616, 4894, 4318, 4839, 4867, 4874, 4903, 4922, 4836,
+     4909, 4914, 4930, 4888, 4956, 4803, 4932, 4996, 5091, 4941,
+     4981, 4965, 5010, 4988, 5017, 4508, 5095, 6809, 6812, 9692,
+
+     9692, 6832, 6841, 6850, 6859, 6868, 6877, 6886, 6895, 6904,
+     6913, 6922, 6931, 6940, 6949, 6958, 6967, 6976, 6985, 6994,
+     7003, 7012, 7021, 7030, 7039, 7048, 7057, 7066, 7075, 7084,
+     7093, 7102, 7111, 7120, 7129, 7138, 7147, 7156, 7165, 7174,
+     7183, 7192, 7201, 7210, 7219, 7228, 7237, 7246, 7255, 7264,
+     7273, 7280, 7287, 7294, 7301, 7308, 7315, 7322, 7329, 7336,
+     7343, 7350, 7357, 7364, 7371, 7378, 7385, 7392, 7399, 7406,
+     7413, 7420, 7427, 7434, 7443, 7450, 7455, 7462, 7467, 7474,
+     7479, 7486, 7491, 7498, 7503, 7510, 7515, 7522, 7527, 7534,
+     7539, 7546, 7551, 7558, 7563, 7570, 7575, 7582, 7587, 7594,
+
+     7599, 7606, 7611, 7618, 7623, 7630, 7635, 7642, 7647, 7654,
+     7659, 7666, 7671, 7678, 7683, 7690, 7695, 7702, 7707, 7714,
+     7719, 7728, 7734, 7741, 7749, 7756, 7764, 7771, 7779, 7786,
+     7794, 7801, 7809, 7816, 7824, 7831, 7839, 7846, 7854, 7861,
+     7869, 7876, 7884, 7891, 7899, 7906, 7914, 7921, 7929, 7936,
+     7944, 7951, 7959, 7967, 7975, 7983, 7991, 7998, 8006, 8014,
+     8022, 8029, 8037, 8044, 8052, 8060, 8067, 8075, 8084, 8090,
+     8097, 8105, 8113, 8121, 8129, 8137, 8144, 8152, 8159, 8167,
+     8174, 8182, 8189, 8197, 8204, 8212, 8220, 8228, 8236, 8244,
+     8251, 8259, 8266, 8274, 8281, 8289, 8296, 8304, 8311, 8319,
+
+     8326, 8334, 8341, 8349, 8356, 8364, 8371, 8379, 8386, 8394,
+     8401, 8409, 8417, 8424, 8432, 8441, 8450, 8457, 8465, 8473,
+     8480, 8488, 8495, 8503, 8510, 8518, 8525, 8532, 8540, 8547,
+     8555, 8563, 8570, 8578, 8585, 8593, 8600, 8608, 8615, 8623,
+     8630, 8638, 8645, 8653, 8660, 8668, 8675, 8683, 8690, 8698,
+     8705, 8713, 8720, 8728, 8736, 8744, 8752, 8760, 8768, 8777,
+     8786, 8793, 8801, 8809, 8816, 8824, 8831, 8839, 8846, 8854,
+     8861, 8868, 8876, 8884, 8892, 8900, 8908, 8916, 8923, 8931,
+     8938, 8946, 8953, 8961, 8968, 8976, 8983, 8991, 8998, 9006,
+     9014, 9022, 9029, 9037, 9045, 9053, 9060, 9068, 9076, 9084,
+
+     9092, 9101, 9110, 9118, 9126, 9134, 9141, 9149, 9156, 9164,
+     9172, 9180, 9188, 9196, 9204, 9212, 9220, 9228, 9235, 9242,
+     9250, 9257, 9264, 9272, 9279, 9286, 9294, 9301, 9309, 9316,
+     9324, 9332, 9339, 9347, 9355, 9363, 9372, 9381, 9389, 9397,
+     9404, 9411, 9419, 9427, 9435, 9443, 9451, 9458, 9465, 9473,
+     9480, 9487, 9495, 9502, 9509, 9516, 9524, 9531, 9539, 9547,
+     9555, 9563, 9571, 9579, 9588, 9597, 9605, 9613, 9620, 9628,
+     9637, 9646, 9655, 9664, 9673, 9682
     } ;
 
-static yyconst flex_int16_t yy_def[3070] =
+static yyconst flex_int16_t yy_def[3077] =
     {   0,
-     2695, 2695, 2696, 2696, 2696, 2696, 2697, 2697, 2698, 2698,
-     2699, 2699, 2700, 2700, 2700, 2700, 2701, 2701, 2695, 2695,
-     2702, 2702, 2703, 2703, 2703, 2703, 2695, 2695, 2703, 2703,
-     2703, 2703, 2695, 2695, 2703, 2703, 2695, 2695, 2703, 2703,
-     2703, 2703, 2704, 2704, 2705, 2705, 2706, 2706, 2700, 2700,
-     2707, 2707, 2708, 2708, 2695, 2695, 2708, 2708, 2708, 2708,
-     2709, 2709, 2710, 2710, 2711, 2711, 2712, 2712, 2712, 2712,
-     2695, 2695, 2712, 2712, 2712, 2712, 2695, 2695, 2712, 2712,
-     2695, 2695, 2712, 2712, 2712, 2712, 2695, 2695, 2712, 2712,
-     2695, 2695, 2712, 2712, 2712, 2712, 2713, 2713, 2714, 2714,
-
-     2695, 2695, 2714, 2714, 2714, 2714, 2715, 2715, 2716, 2716,
-     2695, 2695, 2716, 2716, 2716, 2716, 2717, 2717, 2718, 2718,
-     2719, 2719, 2720, 2720, 2721, 2721, 2722, 2722, 2695, 2695,
-     2722, 2722, 2722, 2722, 2694,  135, 2723, 2723, 2694,  139,
-     2724, 2724, 2725, 2725, 2726, 2726, 2727, 2727, 2728, 2728,
-     2695, 2695, 2728, 2728, 2728, 2728, 2729, 2729, 2730, 2730,
-     2695, 2695, 2730, 2730, 2730, 2730, 2731, 2731, 2732, 2732,
-     2695, 2695, 2732, 2732, 2732, 2732, 2733, 2733, 2734, 2734,
-     2735, 2735, 2736, 2736, 2695, 2695, 2736, 2736, 2736, 2736,
-     2737, 2737, 2738, 2738, 2695, 2695, 2738, 2738, 2738, 2738,
-
-     2739, 2739, 2740, 2740, 2741, 2741, 2742, 2742, 2695, 2695,
-     2742, 2742, 2742, 2742, 2743, 2743, 2744, 2744, 2695, 2695,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2745, 2694, 2694, 2745, 2694, 2694, 2694,  258,  258,
-      258,  258,  261,  261, 2694, 2694, 2694, 2746, 2694, 2694,
-     2746, 2694, 2694, 2694, 2694, 2694, 2694, 2747, 2694, 2694,
-     2747, 2747, 2747, 2694, 2694, 2694, 2694, 2694, 2748, 2694,
-     2694, 2748, 2748, 2748, 2748, 2748, 2694, 2694,  261,  299,
-
-      299, 2694, 2694, 2694, 2749, 2694, 2694, 2749, 2749, 2749,
-     2694, 2694, 2694, 2694, 2694, 2694, 2750, 2694, 2694, 2750,
-     2750, 2694, 2694,  262,  299,  262,  324,  325,  325,  325,
-      325,  331,  332,  331,  331, 2694, 2694, 2694, 2751, 2694,
-     2694, 2751, 2751, 2751, 2694, 2694,  299,  299, 2694, 2694,
-     2694, 2752, 2694, 2694, 2752, 2752, 2694, 2694,  299,  299,
-     2694, 2694, 2694, 2753, 2694, 2694, 2753, 2753, 2694, 2694,
-     2694, 2694, 2694, 2694, 2754, 2694, 2694, 2754, 2754, 2694,
-     2694, 2694, 2694, 2694, 2694, 2755, 2694, 2694, 2755, 2755,
-     2755, 2755, 2755, 2694, 2694,  299,  299,  299, 2694, 2694,
-
-     2694, 2756, 2694, 2694, 2756, 2756, 2756, 2756, 2756, 2756,
-     2756, 2756, 2694, 2694, 2694, 2694, 2694, 2694, 2757, 2694,
-     2694, 2757, 2757, 2757, 2757, 2757, 2757, 2757, 2694, 2694,
-     2694, 2694, 2694, 2694, 2758, 2694, 2694, 2758, 2758, 2694,
-     2694, 2694, 2694, 2694, 2694, 2759, 2694, 2694, 2759, 2759,
-     2759, 2759, 2694, 2694,  299,  299, 2694, 2694, 2694, 2760,
-     2694, 2694, 2760, 2760, 2694, 2694,  299,  467,  467, 2694,
-     2694, 2694, 2761, 2694, 2694, 2761, 2761, 2761, 2694, 2694,
-      467,  467, 2694, 2694, 2694, 2762, 2694, 2694, 2762, 2762,
-     2694, 2694, 2694, 2694, 2694, 2694, 2763, 2694, 2694, 2763,
-
-     2763, 2763, 2694, 2694,  467,  467, 2694, 2694, 2694, 2764,
-     2694, 2694, 2764, 2764, 2764, 2764, 2694, 2694,  299,  299,
-      299, 2694, 2694, 2694, 2765, 2694, 2694, 2765, 2694, 2694,
-     2694, 2694, 2694, 2694, 2766, 2694, 2694, 2766, 2694, 2694,
-      299,  299, 2694, 2694, 2694, 2767, 2694, 2694, 2767, 2767,
-     2694, 2694, 2694, 2694, 2768, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2769, 2769, 2770, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2771, 2771, 2772, 2694,
-
-     2773, 2773, 2773, 2773, 2694, 2774, 2694, 2694, 2775, 2775,
-     2775, 2775, 2775, 2775, 2775, 2775, 2775, 2776, 2694, 2694,
-     2777, 2777, 2777, 2777, 2778, 2694, 2779, 2779, 2779, 2780,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2781, 2781, 2781, 2781, 2782, 2694, 2783, 2783, 2783, 2784,
-     2694, 2785, 2785, 2785, 2786, 2694, 2787, 2787, 2787, 2788,
-     2694, 2789, 2789, 2789, 2789, 2789, 2789, 2790, 2694, 2694,
-     2791, 2791, 2791, 2791, 2791, 2791, 2791, 2791, 2791, 2791,
-     2791, 2791, 2791, 2791, 2792, 2694, 2793, 2793, 2793, 2793,
-     2793, 2793, 2793, 2793, 2794, 2694, 2795, 2795, 2795, 2796,
-
-     2694, 2797, 2797, 2797, 2797, 2797, 2797, 2798, 2694, 2799,
-     2799, 2799, 2799, 2800, 2694, 2694, 2801, 2801, 2801, 2801,
-     2801, 2802, 2694, 2803, 2803, 2803, 2804, 2694, 2805, 2805,
-     2805, 2805, 2806, 2694, 2807, 2807, 2807, 2807, 2807, 2808,
-     2694, 2694, 2809, 2809, 2810, 2694, 2811, 2811, 2812, 2694,
-     2813, 2813, 2813, 2814, 2815, 2694, 2815, 2694, 2694, 2694,
-     2816, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2817, 2818,
-     2818, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2819, 2820, 2820, 2821,
-
-     2694, 2694, 2821, 2694, 2822, 2822, 2694, 2823, 2694, 2694,
-     2823, 2823, 2823, 2823, 2823, 2823, 2824, 2824, 2694, 2825,
-     2825, 2825, 2826, 2826, 2694, 2694, 2827, 2828, 2828, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2829, 2694,
-     2694, 2829, 2830, 2830, 2694, 2694, 2831, 2832, 2832, 2694,
-     2694, 2833, 2834, 2834, 2835, 2835, 2836, 2836, 2837, 2837,
-     2837, 2694, 2694, 2837, 2837, 2838, 2838, 2694, 2694, 2839,
-     2839, 2694, 2694, 2839, 2694, 2694, 2839, 2839, 2839, 2839,
-     2839, 2839, 2839, 2839, 2840, 2840, 2841, 2841, 2841, 2694,
-     2694, 2841, 2841, 2841, 2842, 2842, 2843, 2694, 2694, 2844,
-
-     2844, 2845, 2694, 2694, 2845, 2845, 2845, 2846, 2846, 2847,
-     2847, 2847, 2848, 2848, 2694, 2849, 2849, 2849, 2849, 2850,
-     2850, 2851, 2694, 2694, 2852, 2852, 2853, 2853, 2853, 2854,
-     2854, 2855, 2855, 2855, 2855, 2856, 2856, 2694, 2857, 2858,
-     2858, 2694, 2694, 2859, 2859, 2694, 2694, 2860, 2861, 2861,
-     2862, 2694, 2694, 2862, 2694, 2694, 2863, 2694, 2694, 2694,
-     2694, 2694, 2694, 2864, 2694, 2865, 2694, 2865, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2866, 2694, 2867, 2694, 2867, 2868,
-
-     2694, 2694, 2694, 2868, 2694, 2694, 2869, 2694, 2869, 2870,
-     2694, 2694, 2694, 2694, 2694, 2870, 2694, 2694, 2870, 2870,
-     2870, 2694, 2871, 2694, 2871, 2694, 2872, 2872, 2872, 2694,
-     2873, 2694, 2873, 2694, 2694, 2694, 2874, 2694, 2875, 2694,
-     2875, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2876,
-     2694, 2694, 2694, 2876, 2694, 2877, 2694, 2877, 2694, 2694,
-     2694, 2878, 2694, 2879, 2694, 2879, 2694, 2694, 2694, 2880,
-     2694, 2881, 2694, 2881, 2882, 2882, 2694, 2883, 2694, 2883,
-     2884, 2884, 2884, 2694, 2694, 2694, 2884, 2884, 2694, 2885,
-     2694, 2885, 2694, 2694, 2886, 2886, 2886, 2886, 2694, 2694,
-
-     2694, 2886, 2694, 2694, 2694, 2694, 2694, 2886, 2886, 2886,
-     2886, 2886, 2886, 2886, 2694, 2887, 2694, 2887, 2888, 2888,
-     2888, 2888, 2694, 2694, 2694, 2694, 2694, 2888, 2888, 2694,
-     2889, 2694, 2889, 2890, 2694, 2694, 2694, 2694, 2891, 2694,
-     2891, 2892, 2694, 2694, 2694, 2892, 2892, 2892, 2694, 2893,
-     2694, 2893, 2694, 2694, 2694, 2694, 2894, 2694, 2895, 2694,
-     2895, 2694, 2694, 2694, 2896, 2896, 2694, 2694, 2896, 2694,
-     2897, 2694, 2897, 2898, 2694, 2694, 2694, 2694, 2899, 2694,
-     2899, 2694, 2694, 2900, 2900, 2694, 2694, 2694, 2901, 2694,
-     2901, 2902, 2902, 2902, 2902, 2694, 2903, 2694, 2903, 2694,
-
-     2904, 2694, 2905, 2694, 2905, 2694, 2694, 2694, 2694, 2906,
-     2694, 2906, 2694, 2694, 2694, 2907, 2694, 2908, 2694, 2908,
-     2909, 2910, 2694, 2694, 2694, 2694, 2694, 2911, 2912, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2913, 2694, 2694, 2914,
-     2694, 2915, 2916, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2916, 2694, 2694, 2916, 2917, 2694, 2918, 2694, 2694,
-     2918, 2919, 2920, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2921, 2921, 2922, 2923, 2924, 2694, 2694,
-
-     2925, 2694, 2694, 2926, 2927, 2928, 2928, 2694, 2694, 2928,
-     2928, 2929, 2694, 2694, 2930, 2930, 2930, 2930, 2694, 2694,
-     2694, 2694, 2694, 2930, 2930, 2930, 2930, 2930, 2930, 2930,
-     2931, 2932, 2932, 2932, 2932, 2694, 2694, 2694, 2932, 2932,
-     2933, 2934, 2935, 2936, 2936, 2936, 2936, 2937, 2694, 2694,
-     2694, 2694, 2694, 2694, 2938, 2939, 2694, 2694, 2694, 2694,
-     2940, 2940, 2694, 2694, 2694, 2940, 2941, 2942, 2943, 2694,
-     2694, 2694, 2944, 2944, 2694, 2694, 2694, 2945, 2946, 2694,
-     2694, 2946, 2946, 2947, 2694, 2948, 2949, 2950, 2951, 2952,
-     2953, 2954, 2954, 2694, 2954, 2694, 2694, 2694, 2955, 2956,
-
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2957,
-     2694, 2694, 2694, 2958, 2694, 2959, 2960, 2694, 2694, 2694,
-     2960, 2694, 2694, 2694, 2960, 2961, 2694, 2962, 2694, 2694,
-     2694, 2694, 2694, 2963, 2964, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2965, 2694, 2694, 2966, 2967, 2968, 2694,
-     2694, 2694, 2969, 2694, 2694, 2694, 2970, 2971, 2972, 2972,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2972, 2973, 2694,
-     2694, 2974, 2694, 2694, 2974, 2974, 2694, 2694, 2694, 2694,
-
-     2694, 2974, 2974, 2974, 2974, 2974, 2974, 2975, 2976, 2694,
-     2694, 2976, 2976, 2694, 2694, 2976, 2977, 2978, 2979, 2980,
-     2980, 2980, 2694, 2694, 2980, 2981, 2982, 2983, 2694, 2984,
-     2984, 2984, 2985, 2986, 2987, 2988, 2988, 2989, 2990, 2694,
-     2694, 2694, 2990, 2990, 2991, 2694, 2694, 2694, 2992, 2993,
-     2694, 2694, 2994, 2995, 2996, 2996, 2694, 2694, 2997, 2998,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2999, 3000, 2694, 3001, 3002, 3002,
-     3002, 3003, 3004, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-
-     2694, 2694, 2694, 2694, 3005, 3006, 2694, 2694, 2694, 2694,
-     2694, 3007, 2694, 2694, 2694, 3008, 2694, 2694, 3009, 3010,
-     2694, 2694, 3011, 3012, 3012, 2694, 2694, 2694, 2694, 2694,
-     2694, 3012, 2694, 2694, 2694, 2694, 3013, 2694, 2694, 2694,
-     2694, 2694, 3013, 2694, 2694, 2694, 2694, 2694, 3013, 3013,
-     3013, 3013, 2694, 2694, 3014, 3015, 2694, 2694, 2694, 2694,
-     2694, 3015, 2694, 2694, 2694, 3015, 2694, 2694, 3016, 3017,
-     3018, 3018, 3018, 2694, 2694, 2694, 3018, 2694, 2694, 3019,
-     3020, 2694, 2694, 2694, 2694, 2694, 3021, 3022, 3023, 3024,
-     2694, 2694, 2694, 2694, 3025, 3026, 3026, 3026, 3027, 2694,
-
-     2694, 2694, 2694, 3028, 3029, 2694, 2694, 2694, 2694, 2694,
-     3030, 3031, 3031, 2694, 2694, 2694, 3032, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 3033, 3034, 2694,
-     2694, 2694, 3035, 2694, 2694, 3035, 3036, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 3037,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 3038, 2694,
-     2694, 2694, 3039, 2694, 2694, 2694, 2694, 2694, 3040, 3041,
-     3041, 2694, 2694, 3041, 2694, 3042, 2694, 2694, 2694, 3042,
-     2694, 2694, 2694, 2694, 2694, 3042, 3042, 3042, 2694, 2694,
-
-     2694, 3043, 3044, 2694, 2694, 2694, 3044, 3044, 3045, 3046,
-     3047, 2694, 2694, 3047, 3047, 2694, 2694, 3047, 3048, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 3049, 3050,
-     3051, 3052, 2694, 2694, 2694, 2694, 2694, 2694, 3053, 3054,
-     3054, 3054, 3055, 2694, 3056, 3057, 3058, 3059, 3059, 2694,
-     2694, 2694, 2694, 3060, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     3061, 3062, 2694, 3063, 2694, 2694, 2694, 3063, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 3037, 2694, 2694, 2694, 2694, 2694, 2694,
-
-     2694, 2694, 2694, 2694, 3038, 3039, 3040, 3041, 3041, 2694,
-     2694, 2694, 2694, 3041, 2694, 3042, 3042, 2694, 2694, 2694,
-     3042, 3042, 3042, 3043, 3044, 3044, 3044, 3045, 2694, 2694,
-     3047, 2694, 2694, 2694, 3047, 3047, 2694, 2694, 2694, 2694,
-     3047, 3048, 2694, 3049, 3050, 3051, 3052, 3053, 2694, 2694,
-     3054, 3054, 3055, 2694, 3056, 2694, 2694, 3058, 3059, 3059,
-     2694, 3060, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 3062, 2694, 2694, 3063, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 3037, 2694, 2694, 3038,
-     2694, 2694, 3040, 3041, 3041, 2694, 2694, 2694, 2694, 3041,
-
-     2694, 3042, 3042, 2694, 2694, 3042, 3042, 2694, 2694, 3044,
-     3044, 3044, 3045, 2694, 2694, 3047, 3047, 3047, 2694, 2694,
-     2694, 2694, 3047, 3048, 2694, 3049, 2694, 2694, 2694, 2694,
-     3052, 3053, 2694, 2694, 2694, 2694, 2694, 3054, 2694, 2694,
-     2694, 3056, 3058, 3059, 3059, 2694, 2694, 2694, 2694, 2694,
-     2694, 3062, 2694, 2694, 2694, 3063, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 3037, 2694, 2694, 3038,
-     2694, 2694, 3041, 3041, 2694, 2694, 2694, 2694, 3042, 3042,
-     2694, 2694, 2694, 3042, 2694, 2694, 3044, 3044, 2694, 2694,
-     3045, 2694, 2694, 2694, 3047, 3047, 3047, 2694, 2694, 2694,
-
-     2694, 3048, 3049, 2694, 2694, 2694, 2694, 2694, 3053, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 3058, 3059, 3059, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 3063, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 3037, 2694, 2694, 3038, 3041, 2694, 2694, 2694,
-     2694, 2694, 3042, 3042, 3042, 2694, 2694, 2694, 3044, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 3047, 3047, 3047, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 3053, 2694, 2694, 2694, 3058, 3059, 3059, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-
-     2694, 2694, 2694, 2694, 3063, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 3037, 2694, 2694, 3038, 2694, 2694, 3041,
-     2694, 2694, 2694, 3042, 3042, 3042, 3044, 2694, 2694, 2694,
-     2694, 2694, 2694, 3047, 2694, 2694, 3047, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 3053,
-     3058, 3059, 3059, 3059, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 3037, 2694, 3038, 2694, 2694,
-     2694, 3041, 3042, 3042, 3042, 3044, 3047, 2694, 2694, 2694,
-     3047, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 3058, 3059, 3059,
-     3059, 3064, 3065, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 3037, 2694, 2694, 3041, 3042, 3042, 2694, 2694,
-     3044, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 3058, 3059, 3066,
-     3067, 3064, 3065, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 3041,
-     3042, 3042, 2694, 2694, 2694, 3044, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-
-     2694, 2694, 2694, 2694, 3058, 3066, 3059, 3068, 3067, 3069,
-     3059, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 3041,
-     3042, 3042, 2694, 2694, 2694, 2694, 3044, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 3058, 3068, 2694, 3069, 3059,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 3058, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 3058, 2694, 2694, 2694, 2694, 2694,
-
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 3058, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 3058, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     3058, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 3058, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     3058, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 3058,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 3058, 3058,
-
-     2694, 2694, 2694, 2694, 2694, 2694, 3058, 3058, 3058, 3058,
-     3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058,
-     3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058,
-     3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058,
-     3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058,
-     3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058,
-     3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058,
-     3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058,
-     3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058, 3058,
-     3058, 3058, 2694,    0, 2694, 2694, 2694, 2694, 2694, 2694,
-
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694
+     2702, 2702, 2703, 2703, 2703, 2703, 2704, 2704, 2705, 2705,
+     2706, 2706, 2707, 2707, 2707, 2707, 2708, 2708, 2702, 2702,
+     2709, 2709, 2710, 2710, 2710, 2710, 2702, 2702, 2710, 2710,
+     2710, 2710, 2702, 2702, 2710, 2710, 2702, 2702, 2710, 2710,
+     2710, 2710, 2711, 2711, 2712, 2712, 2702, 2702, 2712, 2712,
+     2712, 2712, 2713, 2713, 2707, 2707, 2714, 2714, 2715, 2715,
+     2702, 2702, 2715, 2715, 2715, 2715, 2716, 2716, 2717, 2717,
+     2718, 2718, 2719, 2719, 2719, 2719, 2702, 2702, 2719, 2719,
+     2719, 2719, 2702, 2702, 2719, 2719, 2702, 2702, 2719, 2719,
+     2719, 2719, 2702, 2702, 2719, 2719, 2702, 2702, 2719, 2719,
+
+     2719, 2719, 2720, 2720, 2721, 2721, 2702, 2702, 2721, 2721,
+     2721, 2721, 2722, 2722, 2723, 2723, 2702, 2702, 2723, 2723,
+     2723, 2723, 2724, 2724, 2725, 2725, 2726, 2726, 2727, 2727,
+     2728, 2728, 2729, 2729, 2702, 2702, 2729, 2729, 2729, 2729,
+     2701,  141, 2730, 2730, 2701,  145, 2731, 2731, 2732, 2732,
+     2733, 2733, 2734, 2734, 2735, 2735, 2702, 2702, 2735, 2735,
+     2735, 2735, 2736, 2736, 2737, 2737, 2702, 2702, 2737, 2737,
+     2737, 2737, 2738, 2738, 2739, 2739, 2702, 2702, 2739, 2739,
+     2739, 2739, 2740, 2740, 2741, 2741, 2742, 2742, 2743, 2743,
+     2702, 2702, 2743, 2743, 2743, 2743, 2744, 2744, 2745, 2745,
+
+     2702, 2702, 2745, 2745, 2745, 2745, 2746, 2746, 2747, 2747,
+     2748, 2748, 2749, 2749, 2702, 2702, 2749, 2749, 2749, 2749,
+     2750, 2750, 2751, 2751, 2702, 2702, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2752, 2701, 2701,
+     2752, 2701, 2701, 2701,  264,  264,  266,  264,  267,  267,
+     2701, 2701, 2701, 2753, 2701, 2701, 2753, 2701, 2701,  268,
+      267, 2701, 2701, 2701, 2754, 2701, 2701, 2754, 2754, 2754,
+     2701, 2701, 2701, 2701, 2701, 2755, 2701, 2701, 2755, 2755,
+
+     2755, 2755, 2755, 2701, 2701,  267,  267,  267, 2701, 2701,
+     2701, 2756, 2701, 2701, 2756, 2756, 2756, 2701, 2701, 2701,
+     2701, 2701, 2701, 2757, 2701, 2701, 2757, 2757, 2701, 2701,
+      268,  267,  268,  331,  332,  332,  332,  332,  338,  339,
+      338,  338, 2701, 2701, 2701, 2758, 2701, 2701, 2758, 2758,
+     2758, 2701, 2701,  267,  267, 2701, 2701, 2701, 2759, 2701,
+     2701, 2759, 2759, 2701, 2701,  267,  267, 2701, 2701, 2701,
+     2760, 2701, 2701, 2760, 2760, 2701, 2701, 2701, 2701, 2701,
+     2701, 2761, 2701, 2701, 2761, 2761, 2701, 2701, 2701, 2701,
+     2701, 2701, 2762, 2701, 2701, 2762, 2762, 2762, 2762, 2762,
+
+     2701, 2701,  267,  403,  403, 2701, 2701, 2701, 2763, 2701,
+     2701, 2763, 2763, 2763, 2763, 2763, 2763, 2763, 2763, 2701,
+     2701, 2701, 2701, 2701, 2701, 2764, 2701, 2701, 2764, 2764,
+     2764, 2764, 2764, 2764, 2764, 2701, 2701, 2701, 2701, 2701,
+     2701, 2765, 2701, 2701, 2765, 2765, 2701, 2701, 2701, 2701,
+     2701, 2701, 2766, 2701, 2701, 2766, 2766, 2766, 2766, 2701,
+     2701,  403,  267, 2701, 2701, 2701, 2767, 2701, 2701, 2767,
+     2767, 2701, 2701,  267,  474,  474, 2701, 2701, 2701, 2768,
+     2701, 2701, 2768, 2768, 2768, 2701, 2701,  474,  474, 2701,
+     2701, 2701, 2769, 2701, 2701, 2769, 2769, 2701, 2701, 2701,
+
+     2701, 2701, 2701, 2770, 2701, 2701, 2770, 2770, 2770, 2701,
+     2701,  474,  474, 2701, 2701, 2701, 2771, 2701, 2701, 2771,
+     2771, 2771, 2771, 2701, 2701,  267,  526,  526, 2701, 2701,
+     2701, 2772, 2701, 2701, 2772, 2701, 2701, 2701, 2701, 2701,
+     2701, 2773, 2701, 2701, 2773, 2701, 2701,  526,  267, 2701,
+     2701, 2701, 2774, 2701, 2701, 2774, 2774, 2701, 2701, 2701,
+     2701, 2775, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2776, 2776, 2777,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+
+     2701, 2701, 2701, 2778, 2778, 2779, 2701, 2780, 2780, 2780,
+     2780, 2701, 2781, 2701, 2701, 2782, 2782, 2782, 2782, 2782,
+     2782, 2782, 2782, 2782, 2783, 2701, 2701, 2784, 2784, 2784,
+     2784, 2785, 2701, 2786, 2786, 2786, 2787, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2788, 2788, 2788,
+     2788, 2789, 2701, 2790, 2790, 2790, 2791, 2701, 2792, 2792,
+     2792, 2793, 2701, 2794, 2794, 2794, 2795, 2701, 2796, 2796,
+     2796, 2796, 2796, 2796, 2797, 2701, 2701, 2798, 2798, 2798,
+     2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798,
+     2798, 2799, 2701, 2800, 2800, 2800, 2800, 2800, 2800, 2800,
+
+     2800, 2801, 2701, 2802, 2802, 2802, 2803, 2701, 2804, 2804,
+     2804, 2804, 2804, 2804, 2805, 2701, 2806, 2806, 2806, 2806,
+     2807, 2701, 2701, 2808, 2808, 2808, 2808, 2808, 2809, 2701,
+     2810, 2810, 2810, 2811, 2701, 2812, 2812, 2812, 2812, 2813,
+     2701, 2814, 2814, 2814, 2814, 2814, 2815, 2701, 2701, 2816,
+     2816, 2817, 2701, 2818, 2818, 2819, 2701, 2820, 2820, 2820,
+     2821, 2822, 2701, 2822, 2701, 2701, 2701, 2823, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2824, 2825, 2825, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+
+     2701, 2701, 2701, 2826, 2827, 2827, 2828, 2701, 2701, 2828,
+     2701, 2829, 2829, 2701, 2830, 2701, 2701, 2830, 2830, 2830,
+     2830, 2830, 2830, 2831, 2831, 2701, 2832, 2832, 2832, 2833,
+     2833, 2701, 2701, 2834, 2835, 2835, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2836, 2701, 2701, 2836, 2837,
+     2837, 2701, 2701, 2838, 2839, 2839, 2701, 2701, 2840, 2841,
+     2841, 2842, 2842, 2843, 2843, 2844, 2844, 2844, 2701, 2701,
+     2844, 2844, 2845, 2845, 2701, 2701, 2846, 2846, 2701, 2701,
+     2846, 2701, 2701, 2846, 2846, 2846, 2846, 2846, 2846, 2846,
+     2846, 2847, 2847, 2848, 2848, 2848, 2701, 2701, 2848, 2848,
+
+     2848, 2849, 2849, 2850, 2701, 2701, 2851, 2851, 2852, 2701,
+     2701, 2852, 2852, 2852, 2853, 2853, 2854, 2854, 2854, 2855,
+     2855, 2701, 2856, 2856, 2856, 2856, 2857, 2857, 2858, 2701,
+     2701, 2859, 2859, 2860, 2860, 2860, 2861, 2861, 2862, 2862,
+     2862, 2862, 2863, 2863, 2701, 2864, 2865, 2865, 2701, 2701,
+     2866, 2866, 2701, 2701, 2867, 2868, 2868, 2869, 2701, 2701,
+     2869, 2701, 2701, 2870, 2701, 2701, 2701, 2701, 2701, 2701,
+     2871, 2701, 2872, 2701, 2872, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+
+     2701, 2873, 2701, 2874, 2701, 2874, 2875, 2701, 2701, 2701,
+     2875, 2701, 2701, 2876, 2701, 2876, 2877, 2701, 2701, 2701,
+     2701, 2701, 2877, 2701, 2701, 2877, 2877, 2877, 2701, 2878,
+     2701, 2878, 2701, 2879, 2879, 2879, 2701, 2880, 2701, 2880,
+     2701, 2701, 2701, 2881, 2701, 2882, 2701, 2882, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2883, 2701, 2701, 2701,
+     2883, 2701, 2884, 2701, 2884, 2701, 2701, 2701, 2885, 2701,
+     2886, 2701, 2886, 2701, 2701, 2701, 2887, 2701, 2888, 2701,
+     2888, 2889, 2889, 2701, 2890, 2701, 2890, 2891, 2891, 2891,
+     2701, 2701, 2701, 2891, 2891, 2701, 2892, 2701, 2892, 2701,
+
+     2701, 2893, 2893, 2893, 2893, 2701, 2701, 2701, 2893, 2701,
+     2701, 2701, 2701, 2701, 2893, 2893, 2893, 2893, 2893, 2893,
+     2893, 2701, 2894, 2701, 2894, 2895, 2895, 2895, 2895, 2701,
+     2701, 2701, 2701, 2701, 2895, 2895, 2701, 2896, 2701, 2896,
+     2897, 2701, 2701, 2701, 2701, 2898, 2701, 2898, 2899, 2701,
+     2701, 2701, 2899, 2899, 2899, 2701, 2900, 2701, 2900, 2701,
+     2701, 2701, 2701, 2901, 2701, 2902, 2701, 2902, 2701, 2701,
+     2701, 2903, 2903, 2701, 2701, 2903, 2701, 2904, 2701, 2904,
+     2905, 2701, 2701, 2701, 2701, 2906, 2701, 2906, 2701, 2701,
+     2907, 2907, 2701, 2701, 2701, 2908, 2701, 2908, 2909, 2909,
+
+     2909, 2909, 2701, 2910, 2701, 2910, 2701, 2911, 2701, 2912,
+     2701, 2912, 2701, 2701, 2701, 2701, 2913, 2701, 2913, 2701,
+     2701, 2701, 2914, 2701, 2915, 2701, 2915, 2916, 2917, 2701,
+     2701, 2701, 2701, 2701, 2918, 2919, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2920, 2701, 2701, 2921, 2701, 2922, 2923,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2923, 2701,
+     2701, 2923, 2924, 2701, 2925, 2701, 2701, 2925, 2926, 2927,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+
+     2928, 2928, 2929, 2930, 2931, 2701, 2701, 2932, 2701, 2701,
+     2933, 2934, 2935, 2935, 2701, 2701, 2935, 2935, 2936, 2701,
+     2701, 2937, 2937, 2937, 2937, 2701, 2701, 2701, 2701, 2701,
+     2937, 2937, 2937, 2937, 2937, 2937, 2937, 2938, 2939, 2939,
+     2939, 2939, 2701, 2701, 2701, 2939, 2939, 2940, 2941, 2942,
+     2943, 2943, 2943, 2943, 2944, 2701, 2701, 2701, 2701, 2701,
+     2701, 2945, 2946, 2701, 2701, 2701, 2701, 2947, 2947, 2701,
+     2701, 2701, 2947, 2948, 2949, 2950, 2701, 2701, 2701, 2951,
+     2951, 2701, 2701, 2701, 2952, 2953, 2701, 2701, 2953, 2953,
+     2954, 2701, 2955, 2956, 2957, 2958, 2959, 2960, 2961, 2961,
+
+     2701, 2961, 2701, 2701, 2701, 2962, 2963, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2964, 2701, 2701, 2701,
+     2965, 2701, 2966, 2967, 2701, 2701, 2701, 2967, 2701, 2701,
+     2701, 2967, 2968, 2701, 2969, 2701, 2701, 2701, 2701, 2701,
+     2970, 2971, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2972, 2701, 2701, 2973, 2974, 2975, 2701, 2701, 2701, 2976,
+     2701, 2701, 2701, 2977, 2978, 2979, 2979, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2979, 2980, 2701, 2701, 2981, 2701,
+
+     2701, 2981, 2981, 2701, 2701, 2701, 2701, 2701, 2981, 2981,
+     2981, 2981, 2981, 2981, 2982, 2983, 2701, 2701, 2983, 2983,
+     2701, 2701, 2983, 2984, 2985, 2986, 2987, 2987, 2987, 2701,
+     2701, 2987, 2988, 2989, 2990, 2701, 2991, 2991, 2991, 2992,
+     2993, 2994, 2995, 2995, 2996, 2997, 2701, 2701, 2701, 2997,
+     2997, 2998, 2701, 2701, 2701, 2999, 3000, 2701, 2701, 3001,
+     3002, 3003, 3003, 2701, 2701, 3004, 3005, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 3006, 3007, 2701, 3008, 3009, 3009, 3009, 3010, 3011,
+
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 3012, 3013, 2701, 2701, 2701, 2701, 2701, 3014, 2701,
+     2701, 2701, 3015, 2701, 2701, 3016, 3017, 2701, 2701, 3018,
+     3019, 3019, 2701, 2701, 2701, 2701, 2701, 2701, 3019, 2701,
+     2701, 2701, 2701, 3020, 2701, 2701, 2701, 2701, 2701, 3020,
+     2701, 2701, 2701, 2701, 2701, 3020, 3020, 3020, 3020, 2701,
+     2701, 3021, 3022, 2701, 2701, 2701, 2701, 2701, 3022, 2701,
+     2701, 2701, 3022, 2701, 2701, 3023, 3024, 3025, 3025, 3025,
+     2701, 2701, 2701, 3025, 2701, 2701, 3026, 3027, 2701, 2701,
+     2701, 2701, 2701, 3028, 3029, 3030, 3031, 2701, 2701, 2701,
+
+     2701, 3032, 3033, 3033, 3033, 3034, 2701, 2701, 2701, 2701,
+     3035, 3036, 2701, 2701, 2701, 2701, 2701, 3037, 3038, 3038,
+     2701, 2701, 2701, 3039, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 3040, 3041, 2701, 2701, 2701, 3042,
+     2701, 2701, 3042, 3043, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 3044, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 3045, 2701, 2701, 2701, 3046,
+     2701, 2701, 2701, 2701, 2701, 3047, 3048, 3048, 2701, 2701,
+     3048, 2701, 3049, 2701, 2701, 2701, 3049, 2701, 2701, 2701,
+
+     2701, 2701, 3049, 3049, 3049, 2701, 2701, 2701, 3050, 3051,
+     2701, 2701, 2701, 3051, 3051, 3052, 3053, 3054, 2701, 2701,
+     3054, 3054, 2701, 2701, 3054, 3055, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 3056, 3057, 3058, 3059, 2701,
+     2701, 2701, 2701, 2701, 2701, 3060, 3061, 3061, 3061, 3062,
+     2701, 3063, 3064, 3065, 3066, 3066, 2701, 2701, 2701, 2701,
+     3067, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 3068, 3069, 2701,
+     3070, 2701, 2701, 2701, 3070, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+
+     3044, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 3045, 3046, 3047, 3048, 3048, 2701, 2701, 2701, 2701,
+     3048, 2701, 3049, 3049, 2701, 2701, 2701, 3049, 3049, 3049,
+     3050, 3051, 3051, 3051, 3052, 2701, 2701, 3054, 2701, 2701,
+     2701, 3054, 3054, 2701, 2701, 2701, 2701, 3054, 3055, 2701,
+     3056, 3057, 3058, 3059, 3060, 2701, 2701, 3061, 3061, 3062,
+     2701, 3063, 2701, 2701, 3065, 3066, 3066, 2701, 3067, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 3069,
+     2701, 2701, 3070, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 3044, 2701, 2701, 3045, 2701, 2701, 3047,
+
+     3048, 3048, 2701, 2701, 2701, 2701, 3048, 2701, 3049, 3049,
+     2701, 2701, 3049, 3049, 2701, 2701, 3051, 3051, 3051, 3052,
+     2701, 2701, 3054, 3054, 3054, 2701, 2701, 2701, 2701, 3054,
+     3055, 2701, 3056, 2701, 2701, 2701, 2701, 3059, 3060, 2701,
+     2701, 2701, 2701, 2701, 3061, 2701, 2701, 2701, 3063, 3065,
+     3066, 3066, 2701, 2701, 2701, 2701, 2701, 2701, 3069, 2701,
+     2701, 2701, 3070, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 3044, 2701, 2701, 3045, 2701, 2701, 3048,
+     3048, 2701, 2701, 2701, 2701, 3049, 3049, 2701, 2701, 2701,
+     3049, 2701, 2701, 3051, 3051, 2701, 2701, 3052, 2701, 2701,
+
+     2701, 3054, 3054, 3054, 2701, 2701, 2701, 2701, 3055, 3056,
+     2701, 2701, 2701, 2701, 2701, 3060, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 3065, 3066, 3066, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 3070, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 3044,
+     2701, 2701, 3045, 3048, 2701, 2701, 2701, 2701, 2701, 3049,
+     3049, 3049, 2701, 2701, 2701, 3051, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 3054, 3054, 3054, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 3060,
+     2701, 2701, 2701, 3065, 3066, 3066, 2701, 2701, 2701, 2701,
+
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 3070, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     3044, 2701, 2701, 3045, 2701, 2701, 3048, 2701, 2701, 2701,
+     3049, 3049, 3049, 3051, 2701, 2701, 2701, 2701, 2701, 2701,
+     3054, 2701, 2701, 3054, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 3060, 3065, 3066, 3066,
+     3066, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 3044, 2701, 3045, 2701, 2701, 2701, 3048, 3049,
+     3049, 3049, 3051, 3054, 2701, 2701, 2701, 3054, 2701, 2701,
+
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 3065, 3066, 3066, 3066, 3071, 3072,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 3044,
+     2701, 2701, 3048, 3049, 3049, 2701, 2701, 3051, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 3065, 3066, 3073, 3074, 3071, 3072,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 3048, 3049, 3049, 2701,
+     2701, 2701, 3051, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 3065, 3073, 3066, 3075, 3074, 3076, 3066, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 3048, 3049, 3049, 2701,
+     2701, 2701, 2701, 3051, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 3065, 3075, 2701, 3076, 3066, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 3065, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+
+     2701, 3065, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 3065, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     3065, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 3065, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 3065, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 3065, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 3065, 2701, 2701, 2701,
+
+     2701, 2701, 2701, 2701, 2701, 3065, 3065, 2701, 2701, 2701,
+     2701, 2701, 2701, 3065, 3065, 3065, 3065, 3065, 3065, 3065,
+     3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065,
+     3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065,
+     3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065,
+     3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065,
+     3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065,
+     3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065,
+     3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065,
+     3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 2701,
+
+        0, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701
     } ;
 
-static yyconst flex_int16_t yy_nxt[9692] =
+static yyconst flex_int16_t yy_nxt[9765] =
     {   0,
-     2694,  224,  225,  224,  224,  225,  224,  224,  225,  224,
-      224,  225,  224,  229,  225,  229,  235,  226,  232,  235,
-      226,  232, 2694,  227, 2694,  233,  227, 2694,  233,  230,
-      229,  225,  229,  555,  236,  238,  239,  236,  238,  239,
-      240,  241,  618,  240,  241,  555,  230,  245,  246,  556,
-      242,  238,  239,  242,  243,  558,  240,  238,  239,  590,
-      243,  557,  240,  245,  246,  591,  242,  225,  225,  225,
-      630,  557,  242,  225,  225,  225,  257,  225,  257,  257,
-      225,  257,  782,  248,  257,  225,  257,  590,  783,  248,
-      578,  247,  258,  619,  784,  258,  554,  554,  554,  587,
-
-      259,  554,  554,  554,  554,  554,  554,  247,  249,  250,
-      225,  250,  249,  249,  249,  249,  249,  249,  249,  251,
-      249,  249,  249,  635,  249,  253,  249,  254,  249,  257,
-      225,  257,  225,  225,  225,  225,  225,  225,  586,  257,
-      225,  257,  257,  225,  257,  259, 2694, 1591,  260,  558,
-      558,  260,  587,  249,  249,  258,  588,  558,  258,  257,
-      225,  257,  554,  554,  554,  557,  557,  554,  554,  554,
-      554,  554,  554,  557, 1593,  261,  255,  249,  250,  225,
-      250,  249,  249,  249,  249,  249,  249,  249,  251,  249,
-      249,  249,  645,  249,  253,  249,  254,  249,  257,  225,
-
-      257,  225,  225,  225,  225,  225,  225,  569,  257,  225,
-      257,  257,  225,  257,  261, 2694,  587,  262,  592, 1606,
-      262,  650,  249,  249,  259,  588,  588,  259,  225,  225,
-      225,  225,  225,  225,  257,  225,  257,  257,  225,  257,
-      257,  225,  257,  591,  263,  255,  678,  263,  558,  679,
-      261, 2694,  558,  261,  589,  593,  264,  257,  225,  257,
-      590,  554,  554,  554,  557, 2694,  591,  594,  557,  587,
-      592,  592,  591,  264,  265,  266,  225,  266,  265,  265,
-      265,  265,  265,  265,  265,  267,  265,  265,  265,  576,
-      265,  269,  265,  270,  265,  273,  225,  273,  273,  225,
-
-      273,  298,  225,  298,  586,  612, 1607,  238,  239,  613,
-      558,  274,  240,  614,  274, 1608,  595,  299,  587,  265,
-      265,  668,  284,  554,  554,  554,  557,  271,  265,  266,
-      225,  266,  265,  265,  265,  265,  265,  265,  265,  267,
-      265,  265,  265,  634,  265,  269,  265,  270,  265, 1611,
-      636,  285,  673,  238,  239,  298,  225,  298,  240,  225,
-      225,  225,  225,  225,  225,  554,  554,  554,  284,  669,
-      712,  299,  674,  265,  265,  300,  762,  713,  300,  763,
-     1612,  271,  275,  276,  225,  276,  275,  275,  275,  275,
-      275,  275,  275,  277,  275,  275,  275,  285,  275,  279,
-
-      275,  280,  275,  298,  225,  298,  298,  225,  298,  298,
-      225,  298,  616,  298,  225,  298,  312,  225,  312,  299,
-      558,  558,  299,  558,  605,  301,  617,  275,  275,  301,
-      599,  606,  313, 1624, 1625,  281,  557,  557,  282,  557,
-      557,  554,  554,  554,  283,  275,  276,  225,  276,  275,
-      275,  275,  275,  275,  275,  275,  277,  275,  275,  275,
-      740,  275,  279,  275,  280,  275,  312,  225,  312,  323,
-      225,  323,  323,  225,  323, 2694,  323,  225,  323,  323,
-      225,  323,  313,  558,  558,  324,  558,  558,  324,  558,
-      275,  275,  325,  625,  655,  325, 1632,  741,  281,  557,
-
-      557,  282,  557,  557,  563,  557, 1636,  283,  286,  287,
-      225,  287,  286,  286,  286,  286,  286,  286,  286,  288,
-      286,  286,  286,  669,  286,  290,  286,  291,  286,  225,
-      225,  225,  225,  225,  225,  323,  225,  323,  668,  323,
-      225,  323,  323,  225,  323,  326,  564,  558,  326,  558,
-      558,  327,  565,  286,  286,  327,  566,  660,  328, 1637,
-      706,  567,  292,  557,  293,  557,  557,  294,  554,  554,
-      554,  707,  295,  296,  286,  287,  225,  287,  286,  286,
-      286,  286,  286,  286,  286,  288,  286,  286,  286,  591,
-      286,  290,  286,  291,  286,  323,  225,  323,  225,  225,
-
-      225,  225,  225,  225,  708,  323,  225,  323,  323,  225,
-      323,  328,  952, 1120,  329,  558,  680,  329, 1121,  286,
-      286,  325,  685, 1643,  325,  554,  554,  554,  292,  681,
-      293,  557,  722,  294,  554,  554,  554, 1554,  295,  296,
-      302,  303,  225,  303,  302,  302,  302,  302,  302,  302,
-      302,  304,  302,  302,  302,  591,  302,  306,  302,  307,
-      302,  225,  225,  225,  225,  225,  225,  323,  225,  323,
-      682,  323,  225,  323,  323,  225,  323,  330, 1649,  580,
-      330,  683,  684,  328,  720,  302,  302,  328,  558,  558,
-      331,  721,  308,  554,  554,  554,  695,  309,  554,  554,
-
-      554,  554,  554,  554,  557,  557,  310,  302,  303,  225,
-      303,  302,  302,  302,  302,  302,  302,  302,  304,  302,
-      302,  302,  756,  302,  306,  302,  307,  302,  323,  225,
-      323,  225,  225,  225,  225,  225,  225,  757,  323,  225,
-      323,  323,  225,  323,  331,  775,  558,  332,  776, 1650,
-      332, 1651,  302,  302,  333,  558,  558,  333, 1652,  308,
-     1656,  588,  557,  700,  309,  554,  554,  554,  554,  554,
-      554,  557,  557,  310,  314,  315,  225,  315,  314,  314,
-      314,  314,  314,  314,  314,  316,  314,  314,  314,  576,
-      314,  318,  314,  319,  314,  225,  225,  225,  225,  225,
-
-      225,  323,  225,  323,  638,  323,  225,  323,  323,  225,
-      323,  334,  558,  558,  334,  775, 1662,  331,  789,  314,
-      314,  331,  733, 1666,  335,  554,  554,  554,  557,  557,
-      320,  554,  554,  554,  554,  554,  554,  740,  321,  314,
-      315,  225,  315,  314,  314,  314,  314,  314,  314,  314,
-      316,  314,  314,  314, 1669,  314,  318,  314,  319,  314,
-      323,  225,  323,  346,  225,  346,  346,  225,  346,  580,
-      225,  225,  225,  225,  225,  225,  335,  558,  558,  347,
-     1671, 1672,  347,  749,  314,  314,  300, 1673,  591,  300,
-      554,  554,  554,  557,  557,  320,  554,  554,  554,  554,
-
-      554,  554, 1677,  321,  336,  337,  225,  337,  336,  336,
-      336,  336,  336,  336,  336,  338,  336,  336,  336, 1680,
-      336,  340,  336,  341,  336,  346,  225,  346,  346,  225,
-      346,  346,  225,  346,  591,  346,  225,  346,  554,  554,
-      554,  347,  558,  558,  347, 1682,  558,  348,  780,  336,
-      336,  348,  781,  727,  342,  554,  554,  554,  557,  557,
-      343,  714,  557,  344,  336,  337,  225,  337,  336,  336,
-      336,  336,  336,  336,  336,  338,  336,  336,  336, 1689,
-      336,  340,  336,  341,  336,  358,  225,  358,  358,  225,
-      358,  225,  225,  225, 1696,  225,  225,  225,  554,  554,
-
-      554,  359, 2694,  558,  359,  558,  558,  300,  715,  336,
-      336,  300,  591,  745,  342,  554,  554,  554,  756,  557,
-      343,  557,  557,  344,  349,  350,  225,  350,  349,  349,
-      349,  349,  349,  349,  349,  351,  349,  349,  349,  741,
-      349,  353,  349,  354,  349,  358,  225,  358,  358,  225,
-      358,  358,  225,  358,  804,  358,  225,  358,  370,  225,
-      370,  359, 1697, 1698,  359,  785,  790,  360,  868,  349,
-      349,  360,  869, 1700,  371,  554,  554,  554,  786,  786,
-      355,  554,  554,  554,  554,  554,  554,  554,  554,  554,
-      356,  349,  350,  225,  350,  349,  349,  349,  349,  349,
-
-      349,  349,  351,  349,  349,  349, 1714,  349,  353,  349,
-      354,  349,  370,  225,  370,  381,  225,  381,  381,  225,
-      381, 1718,  395,  225,  395,  395,  225,  395,  371,  792,
-      952,  382,  776,  794,  382, 1719,  349,  349,  396,  783,
-     1394,  396,  554,  554,  554,  795,  954,  355,  554,  554,
-      554,  554,  554,  554,  554,  554,  554,  356,  361,  362,
-      225,  362,  361,  361,  361,  361,  361,  361,  361,  363,
-      361,  361,  361, 1713,  361,  365,  361,  366,  361,  225,
-      225,  225,  225,  225,  225,  395,  225,  395, 1720,  395,
-      225,  395,  395,  225,  395,  397,  792, 1721,  397,  789,
-
-      794,  396, 1723,  361,  361,  396,  783, 1724,  398,  554,
-      554,  554,  784, 1725,  367,  554,  554,  554,  368,  361,
-      362,  225,  362,  361,  361,  361,  361,  361,  361,  361,
-      363,  361,  361,  361, 1726,  361,  365,  361,  366,  361,
-      395,  225,  395,  414,  225,  414,  414,  225,  414, 1727,
-      430,  225,  430,  430,  225,  430,  398,  860, 1730,  415,
-      861,  782,  415, 1731,  361,  361,  431,  783, 1734,  431,
-      554,  554,  554,  795, 1735,  367,  554,  554,  554,  368,
-      372,  373,  225,  373,  372,  372,  372,  372,  372,  372,
-      372,  374,  372,  372,  372, 1736,  372,  376,  372,  377,
-
-      372,  441,  225,  441,  441,  225,  441,  454,  225,  454,
-     1737,  454,  225,  454,  225,  225,  225,  442,  952, 1739,
-      442, 1394, 1221,  455,  952,  372,  372,  455,  952, 1740,
-      300,  554,  554,  554,  554,  554,  554,  554,  554,  554,
-      378,  554,  554,  554, 1391, 1711,  379,  372,  373,  225,
-      373,  372,  372,  372,  372,  372,  372,  372,  374,  372,
-      372,  372, 1712,  372,  376,  372,  377,  372,  225,  225,
-      225,  454,  225,  454,  454,  225,  454, 1242,  454,  225,
-      454,  454,  225,  454,  300, 1743, 1746,  455, 1750, 1243,
-      455, 1751,  372,  372,  456, 1754, 1755,  456,  554,  554,
-
-      554,  554,  554,  554,  554,  554,  554,  378,  554,  554,
-      554, 1756, 1759,  379,  383,  384,  225,  384,  383,  383,
-      383,  383,  383,  383,  383,  385,  383,  383,  383, 1763,
-      383,  387,  383,  388,  383,  466,  225,  466,  466,  225,
-      466,  225,  225,  225, 1752,  225,  225,  225, 1764,  558,
-     1757,  467, 1753, 1766,  467, 1780,  754,  468, 1758,  383,
-      383,  468,  389,  794,  390,  557,  554,  554,  554,  783,
-      391,  760,  760,  760, 1781,  819,  392, 1782, 1783,  393,
-      383,  384,  225,  384,  383,  383,  383,  383,  383,  383,
-      383,  385,  383,  383,  383, 1784,  383,  387,  383,  388,
-
-      383,  466,  225,  466,  466,  225,  466,  466,  225,  466,
-     1785,  466,  225,  466,  801,  801,  801,  467, 1786,  790,
-      467,  790,  790,  469, 1096,  383,  383,  469,  389,  761,
-      390,  802,  834, 1097,  837,  838,  391,  760,  760,  760,
-     1098,  956,  392, 1790, 1796,  393,  399,  400,  225,  400,
-      399,  399,  399,  399,  399,  399,  399,  401,  399,  399,
-      399,  402,  399,  403,  399,  404,  399,  402,  402,  402,
-      402,  402,  402,  402,  402,  402,  402,  402,  402,  402,
-      402,  402,  402,  402,  402,  402,  402,  402,  402,  402,
-      402,  399,  399,  402,  405,  406,  407,  402,  402,  402,
-
-      402,  402,  408,  402,  409,  402,  402,  402,  410,  402,
-      411,  412,  402,  402,  402,  402,  402,  402,  416,  417,
-      225,  417,  416,  416,  416,  416,  416,  416,  416,  418,
-      416,  416,  416,  419,  416,  420,  416,  421,  416,  419,
-      419,  419,  419,  419,  419,  419,  419,  419,  419,  419,
-      419,  419,  419,  419,  419,  419,  419,  419,  419,  419,
-      419,  419,  419,  416,  416,  419,  422,  423,  424,  419,
-      419,  419,  419,  419,  425,  419,  426,  419,  419,  419,
-      427,  419,  419,  428,  419,  419,  419,  419,  419,  419,
-      432,  433,  225,  433,  432,  432,  432,  432,  432,  432,
-
-      432,  434,  432,  432,  432, 1797,  432,  436,  432,  437,
-      432,  480,  225,  480,  480,  225,  480,  225,  225,  225,
-     1253,  225,  225,  225,  809,  809,  809,  481, 1798, 1803,
-      481, 1807, 1243,  468, 1808,  432,  432,  468, 1809, 1811,
-      438,  810,  969,  969,  969, 1815,  439,  432,  433,  225,
-      433,  432,  432,  432,  432,  432,  432,  432,  434,  432,
-      432,  432, 1816,  432,  436,  432,  437,  432,  480,  225,
-      480,  480,  225,  480,  480,  225,  480, 1253,  480,  225,
-      480,  825,  825,  825,  481, 1594, 1817,  481, 1818, 1277,
-      482, 1595,  432,  432,  482, 1596, 1819,  438,  826, 1597,
-
-      969,  969,  969,  439,  443,  444,  225,  444,  443,  443,
-      443,  443,  443,  443,  443,  445,  443,  443,  443, 1822,
-      443,  447,  443,  448,  443,  492,  225,  492,  492,  225,
-      492,  504,  225,  504, 1829,  504,  225,  504,  225,  225,
-      225,  493, 1831, 1840,  493, 1841, 1842,  505, 1844,  443,
-      443,  505,  952,  449,  468,  989,  989,  989, 1847, 1850,
-      450, 1856,  451,  970, 1394, 1857,  969,  969,  969,  452,
-      443,  444,  225,  444,  443,  443,  443,  443,  443,  443,
-      443,  445,  443,  443,  443, 1860,  443,  447,  443,  448,
-      443,  225,  225,  225,  504,  225,  504,  504,  225,  504,
-
-     1861,  504,  225,  504,  504,  225,  504,  468, 1862, 1849,
-      505, 1866, 1870,  505, 1872,  443,  443,  506,  970,  449,
-      506, 1873, 1874, 1001, 1001, 1001,  450, 1002,  451, 1042,
-     1003,  989,  989,  989, 1878,  452,  457,  458,  225,  458,
-      457,  457,  457,  457,  457,  457,  457,  459,  457,  457,
-      457, 1884,  457,  461,  457,  462,  457,  518,  225,  518,
-      518,  225,  518,  225,  225,  225, 1885,  225,  225,  225,
-      518,  225,  518,  519, 1886, 1887,  519, 1888, 1889,  520,
-     1890,  457,  457,  520, 1891, 1892,  519,  463, 1011, 1011,
-     1011, 1893, 1012, 1899, 1042, 1013,  989,  989,  989, 1908,
-
-     1909,  464,  457,  458,  225,  458,  457,  457,  457,  457,
-      457,  457,  457,  459,  457,  457,  457, 1914,  457,  461,
-      457,  462,  457,  518,  225,  518,  518,  225,  518,  518,
-      225,  518, 1910,  530,  225,  530,  530,  225,  530,  519,
-     1911, 1915,  521, 1912, 1916,  521, 1917,  457,  457,  531,
-     1921, 1913,  531,  463, 1034, 1034, 1034, 1922, 1035, 1923,
-     1925, 1036, 1406, 1406, 1406, 1926, 1927,  464,  470,  471,
-      225,  471,  470,  470,  470,  470,  470,  470,  470,  472,
-      470,  470,  470, 1928,  470,  474,  470,  475,  470,  540,
-      225,  540,  540,  225,  540,  225,  225,  225, 1394,  225,
-
-      225,  225,  540,  225,  540,  541, 1598, 1931,  541, 1935,
-     1936,  300, 1599,  470,  470,  300, 1600, 1941,  541,  476,
-     1601, 1942,  477, 1051, 1051, 1051, 1943, 1052, 1944, 1848,
-     1053, 1946, 1954,  478,  470,  471,  225,  471,  470,  470,
-      470,  470,  470,  470,  470,  472,  470,  470,  470, 1394,
-      470,  474,  470,  475,  470,  540,  225,  540,  540,  225,
-      540,  540,  225,  540, 1937,  552,  225,  552,  552,  225,
-      552,  541, 1938, 1394,  542, 1964, 1968,  542, 1939,  470,
-      470,  553, 1969,  630,  553,  476, 1940,  630,  477, 1408,
-     1408, 1408, 1970,  631, 1973, 1960, 2694,  637, 1977,  478,
-
-      483,  484,  225,  484,  483,  483,  483,  483,  483,  483,
-      483,  485,  483,  483,  483, 1959,  483,  487,  483,  488,
-      483,  632,  840,  840,  840,  632, 1978,  633, 1979, 1980,
-      634,  845,  845,  845, 1981, 1409,  635,  636,  591,  841,
-      633,  579,  585,  634, 1982,  483,  483, 1983,  846,  639,
-      636,  489, 1412, 1412, 1412, 1984,  490,  483,  484,  225,
-      484,  483,  483,  483,  483,  483,  483,  483,  485,  483,
-      483,  483, 1985,  483,  487,  483,  488,  483,  850,  850,
-      850,  862,  862,  862,  872,  872,  872,  875,  875,  875,
-      890,  890,  890, 1986, 1988,  851, 1989, 1994,  863, 1995,
-
-     1996,  873,  483,  483,  876, 1997, 1998,  891,  489, 1415,
-     1415, 1415, 1999,  490,  494,  495,  225,  495,  494,  494,
-      494,  494,  494,  494,  494,  496,  494,  494,  494, 2000,
-      494,  498,  494,  499,  494,  898,  898,  898,  903,  903,
-      903,  923,  923,  923,  942,  942,  942,  946,  946,  946,
-     2002, 2003,  899, 2006, 2007,  904, 2010, 2011,  924,  494,
-      494,  943, 2012, 2013,  947,  500, 2017, 2018,  501, 1059,
-     1059, 1059, 2019, 1060, 2020, 2021, 1061, 2022, 2023,  502,
-      494,  495,  225,  495,  494,  494,  494,  494,  494,  494,
-      494,  496,  494,  494,  494, 2024,  494,  498,  494,  499,
-
-      494,  965,  965,  965,  965,  965,  965, 2026, 1394,  996,
-      996,  996,  996,  996,  996,  801,  801,  801, 2048,  967,
-     2049, 2050,  967, 2051, 2052,  494,  494,  998, 2057, 2058,
-      998,  500,  802, 1394,  501, 1067, 1067, 1067, 2059, 1068,
-     2044, 2060, 1069, 2061, 2062,  502,  507,  508,  225,  508,
-      507,  507,  507,  507,  507,  507,  507,  509,  507,  507,
-      507,  968,  507,  511,  507,  512,  507, 1006, 1006, 1006,
-     2045,  999, 1006, 1006, 1006, 2063,  809,  809,  809, 1014,
-     1014, 1014, 1022, 1022, 1022, 1008, 2064, 1017, 1017, 1017,
-     1008,  507,  507,  810, 2065, 2066, 1015, 2068, 2069,  513,
-
-     1024,  514, 2073,  515, 1018, 1424, 1424, 1424, 1447, 1447,
-     1447,  516,  507,  508,  225,  508,  507,  507,  507,  507,
-      507,  507,  507,  509,  507,  507,  507, 2074,  507,  511,
-      507,  512,  507, 2075, 2076, 1009, 1030, 1030, 1030, 2079,
-     2080, 1030, 1030, 1030, 2084, 2087, 1022, 1022, 1022,  825,
-      825,  825, 2088, 2091, 1032, 2095, 2096,  507,  507, 1032,
-     1458, 1458, 1458, 2097, 1024,  513,  826,  514, 2098,  515,
-     1459, 1459, 1459, 1406, 1406, 1406, 2099,  516,  522,  523,
-      225,  523,  522,  522,  522,  522,  522,  522,  522,  524,
-      522,  522,  522, 1025,  522,  526,  522,  527,  522, 1038,
-
-     1038, 1038, 2102, 2103, 1033, 2120, 2121, 1038, 1038, 1038,
-      840,  840,  840, 1055, 1055, 1055, 1409, 1040, 1055, 1055,
-     1055, 2122, 2123,  522,  522, 1040, 2133,  841,  845,  845,
-      845, 1057,  952, 1084, 1084, 1084, 1057, 1085, 1394, 2134,
-     1086, 1408, 1408, 1408, 1041,  846,  528,  522,  523,  225,
-      523,  522,  522,  522,  522,  522,  522,  522,  524,  522,
-      522,  522, 1394,  522,  526,  522,  527,  522, 1063, 1063,
-     1063, 2117, 1063, 1063, 1063, 2118, 2135,  850,  850,  850,
-     1071, 1071, 1071, 1058, 2136, 2137, 1065, 1071, 1071, 1071,
-     1065, 2138,  522,  522,  851, 1077, 1077, 1077, 1073, 1099,
-
-     1099, 1099, 2139, 1100, 2119, 1073, 1101, 1103, 1103, 1103,
-     2140, 1104, 2141, 1079, 1105,  528,  532,  533,  225,  533,
-      532,  532,  532,  532,  532,  532,  532,  534,  532,  532,
-      532, 2142,  532,  536,  532,  537,  532, 1066, 1077, 1077,
-     1077,  862,  862,  862, 1568, 1568, 1568, 1074, 1089, 1089,
-     1089, 1089, 1089, 1089, 2144, 2145, 1079, 2147,  863, 2153,
-     2154,  532,  532, 1123, 1123, 1123, 1091, 1124, 2155, 1091,
-     1125, 2159,  538,  532,  533,  225,  533,  532,  532,  532,
-      532,  532,  532,  532,  534,  532,  532,  532, 2167,  532,
-      536,  532,  537,  532, 2168,  872,  872,  872,  875,  875,
-
-      875, 2169, 1080, 1106, 1106, 1106, 1115, 1115, 1115, 2191,
-     2192, 1092,  873, 2193, 2197,  876,  952, 1394,  532,  532,
-     1107, 1135, 1135, 1135, 1117, 1136, 2198, 2201, 1137,  538,
-      543,  544,  225,  544,  543,  543,  543,  543,  543,  543,
-      543,  545,  543,  543,  543, 2187,  543,  547,  543,  548,
-      543,  890,  890,  890, 1126, 1126, 1126, 2126, 2188, 1130,
-     1130, 1130, 2202, 1115, 1115, 1115, 2206, 2127,  891, 2207,
-     2128, 1127, 1130, 1130, 1130,  543,  543, 1132,  898,  898,
-      898, 1117, 1412, 1412, 1412, 2208,  549, 1143, 1143, 1143,
-     1132, 1144, 2209, 2210, 1145,  899, 2211, 2212,  550,  543,
-
-      544,  225,  544,  543,  543,  543,  543,  543,  543,  543,
-      545,  543,  543,  543, 2213,  543,  547,  543,  548,  543,
-     1118, 2216, 2224, 1133, 1138, 1138, 1138, 2177, 1138, 1138,
-     1138,  903,  903,  903, 1149, 1149, 1149, 2178, 1149, 1149,
-     1149, 1394, 1140, 2179,  543,  543, 1140, 2225,  904, 1153,
-     1153, 1153, 1151, 2226, 2227,  549, 1151, 1155, 1155, 1155,
-     2694, 2694, 2694, 1158, 1158, 1158, 1154,  550,  558, 2234,
-     2199, 1158, 1158, 1158, 1156,  573, 2237, 2694, 1163, 1163,
-     1163, 1160, 2189, 2200,  557,  574, 2244, 2245, 1141, 1160,
-     2694, 2694, 2694, 1152, 2246, 1164, 2247, 2248, 1167, 1167,
-
-     1167, 1408, 1408, 1408, 2694, 2694, 2694, 2694, 2249, 1170,
-     1170, 1170,  575,  576,  577, 1168, 1394, 2256, 1157,  578,
-      579, 2694,  580,  581, 2257, 2203,  582, 1172,  583,  584,
-      585, 1161, 1170, 1170, 1170,  923,  923,  923, 2204, 2258,
-     1165, 1175, 1175, 1175,  952, 1176, 2259, 1529, 1177, 2260,
-     1172, 2252,  924, 2261, 1166, 1178, 1178, 1178, 1178, 1178,
-     1178, 2262, 1169, 1182, 1182, 1182, 2694, 2694, 2694, 1173,
-     1186, 1186, 1186, 1180, 2263, 2264, 1180, 1188, 1188, 1188,
-     1183, 2265, 2268, 2694, 1188, 1188, 1188, 1187, 1196, 1196,
-     1196, 2251, 1196, 1196, 1196, 1190, 1202, 1202, 1202, 1202,
-
-     1202, 1202, 1190,  942,  942,  942, 1198,  946,  946,  946,
-     1198, 2269, 2270, 1181, 1204, 2271, 1184, 1204, 2272, 2273,
-      943, 1206, 1206, 1206,  947, 1207, 2274, 2275, 1208, 2282,
-     1185, 1209, 1209, 1209, 1209, 1209, 1209, 1213, 1213, 1213,
-     2129, 1214, 2283, 2284, 1215, 1217, 1217, 1217, 2285, 1211,
-     2130, 2286, 1211, 2131, 1191, 1199, 1217, 1217, 1217,  965,
-      965,  965, 1205, 1219,  965,  965,  965,  965,  965,  965,
-     1255, 1255, 1255, 2287, 1219, 2291, 2292,  967,  996,  996,
-      996, 2300,  967, 2301, 2302,  967, 2293, 1256,  996,  996,
-      996,  996,  996,  996, 1212, 2303,  998, 2180, 1258, 1258,
-
-     1258, 1001, 1001, 1001, 2304, 1002,  998, 2181, 1003,  998,
-     2694, 2694, 2694, 2182, 1229, 1259, 1006, 1006, 1006, 1220,
-     1006, 1006, 1006, 2294, 1006, 1006, 1006, 2694, 1011, 1011,
-     1011, 2296, 1012, 2295, 1008, 1013, 2305, 2316, 1008, 2298,
-     1257, 2297, 1008, 1014, 1014, 1014, 1264, 1264, 1264, 2299,
-     1265, 2317, 2318, 1266, 2319, 1267, 1267, 1267, 2320, 2321,
-     1015, 1017, 1017, 1017, 1273, 1273, 1273, 1022, 1022, 1022,
-     1260, 1262, 1268, 1269, 1269, 1269, 2322, 1270, 1018, 2323,
-     1271, 1274, 1022, 1022, 1022, 1024, 1022, 1022, 1022, 1279,
-     1279, 1279, 1030, 1030, 1030, 1030, 1030, 1030,  952, 2327,
-
-     1024, 1030, 1030, 1030, 1024, 2328, 1280, 1034, 1034, 1034,
-     1032, 1035, 2329, 1032, 1036, 1038, 1038, 1038, 2330, 1032,
-     1038, 1038, 1038, 1284, 1284, 1284, 2331, 1051, 1051, 1051,
-     2332, 1052, 2308, 1040, 1053, 1055, 1055, 1055, 1040, 2336,
-     2337, 1285, 1055, 1055, 1055, 1276, 2338, 2341, 1282, 1055,
-     1055, 1055, 2346, 1057, 1059, 1059, 1059, 2347, 1060, 2348,
-     1057, 1061, 1063, 1063, 1063, 2349, 2350, 1057, 1063, 1063,
-     1063, 1063, 1063, 1063, 1067, 1067, 1067, 2351, 1068, 2352,
-     1065, 1069, 1299, 1299, 1299, 2353, 1065, 2354, 2355, 1065,
-     1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1300,
-
-     1302, 1302, 1302, 2356, 2694, 2694, 2694, 2357, 1073, 1296,
-     2364, 1073, 2365,  952, 1073, 2366, 2367, 1303, 1077, 1077,
-     1077, 2694, 1077, 1077, 1077, 1077, 1077, 1077, 1308, 1308,
-     1308, 1298, 1304, 1089, 1089, 1089, 1079, 1084, 1084, 1084,
-     1079, 1085, 2368, 1079, 1086, 1309, 1089, 1089, 1089, 2369,
-     2370, 1091, 1089, 1089, 1089, 2358, 1099, 1099, 1099, 2371,
-     1100, 2372, 1301, 1101, 1091, 1319, 1319, 1319, 2373, 2374,
-     1091, 1103, 1103, 1103, 2375, 1104, 2376, 2377, 1105, 1106,
-     1106, 1106, 1320, 2380, 1321, 1321, 1321, 2381, 1322, 2382,
-     1305, 1323, 1115, 1115, 1115, 2386, 1107, 1115, 1115, 1115,
-
-     1115, 1115, 1115, 2393, 1123, 1123, 1123, 2394, 1124, 2395,
-     1117, 1125, 1126, 1126, 1126, 1117, 1312, 2396, 1117, 1336,
-     1336, 1336, 2397, 1337, 2398, 2399, 1338, 2400, 2401, 1127,
-     1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1135,
-     1135, 1135, 2402, 1136, 2403, 2404, 1137, 2412, 1132,  952,
-     2407, 1132, 2413, 2414, 1132, 1138, 1138, 1138, 1138, 1138,
-     1138, 1138, 1138, 1138, 2408, 2415, 1331, 1143, 1143, 1143,
-     2416, 1144, 2417, 1140, 1145, 2407, 1140, 2418, 2419, 1140,
-     1149, 1149, 1149, 1149, 1149, 1149, 2410, 1341, 1149, 1149,
-     1149, 1153, 1153, 1153, 2405, 1349, 1349, 1349, 1151, 1350,
-
-     2420, 1151, 1351, 1155, 1155, 1155, 1151, 2421, 1154, 1352,
-     1352, 1352, 2422, 1353, 2427, 2432, 1354, 1158, 1158, 1158,
-     1156, 1158, 1158, 1158, 1158, 1158, 1158, 1343, 1163, 1163,
-     1163, 1167, 1167, 1167, 2423, 1160, 1358, 1358, 1358, 1160,
-     1359, 2433, 1160, 1360, 2434, 1164, 2424, 1348, 1168, 1363,
-     1363, 1363, 2435, 1364, 2438, 2407, 1365, 1170, 1170, 1170,
-     1170, 1170, 1170, 1170, 1170, 1170, 1175, 1175, 1175, 2408,
-     1176, 1394, 1395, 1177, 2438, 1172, 2425, 2428, 1172, 2441,
-     2442, 1172, 1178, 1178, 1178, 1178, 1178, 1178, 2426, 2429,
-     1356, 1178, 1178, 1178, 1182, 1182, 1182, 1370, 1370, 1370,
-
-     1180, 1371, 2443, 1180, 1372, 1186, 1186, 1186, 2430, 1180,
-     2407, 1183, 1375, 1375, 1375, 2444, 1376, 2453, 2456, 1377,
-     2431, 2410, 1187, 1188, 1188, 1188, 1367, 1188, 1188, 1188,
-     1188, 1188, 1188, 2461, 1380, 1380, 1380, 1196, 1196, 1196,
-      952, 1190, 1196, 1196, 1196, 1190, 2464, 2438, 1190, 2466,
-     1369, 1381, 1196, 1196, 1196, 1198, 1202, 1202, 1202, 2438,
-     1198, 1202, 1202, 1202, 1202, 1202, 1202, 1209, 1209, 1209,
-     1198, 1206, 1206, 1206, 1204, 1207, 2467, 2468, 1208, 1204,
-     2436, 2451, 1204, 2469, 2454, 1211, 1209, 1209, 1209, 2459,
-     2462, 1378, 1209, 1209, 1209, 1213, 1213, 1213, 2470, 1214,
-
-     2452, 2480, 1215, 2455, 1211, 1217, 1217, 1217, 2460, 2463,
-     1211, 2481, 1384, 1217, 1217, 1217, 2482, 1387, 1217, 1217,
-     1217, 2483, 2484, 1219, 1393, 1393, 1393,  965,  965,  965,
-     2485, 1219, 1255, 1255, 1255, 2489, 1219, 1427, 1427, 1427,
-     2490, 1428, 1394, 1395, 1429,  967,  996,  996,  996, 1256,
-     2491, 1388, 1258, 1258, 1258, 1431, 1431, 1431, 2492, 1432,
-     2493, 2494, 1433, 2496,  998, 1006, 1006, 1006, 2497, 1259,
-     1264, 1264, 1264, 2498, 1265, 2499, 2503, 1266, 1390, 1267,
-     1267, 1267, 2504, 1008, 1438, 1438, 1438, 2500, 1439, 2501,
-     2505, 1440, 1400, 1269, 1269, 1269, 1268, 1270, 2506, 2507,
-
-     1271, 2502, 2508, 1430, 1273, 1273, 1273, 2509, 1442, 1442,
-     1442, 2510, 1443, 2511, 1436, 1444, 1022, 1022, 1022, 2512,
-     2513, 1274, 1279, 1279, 1279, 1449, 1449, 1449, 2514, 1450,
-     2516,  952, 1451, 2517, 1024, 1452, 1452, 1452, 2518, 1280,
-     1030, 1030, 1030, 1284, 1284, 1284, 1465, 1465, 1465, 1055,
-     1055, 1055, 1453, 1063, 1063, 1063, 2515, 2519, 1032, 2520,
-     2521, 1285, 2522, 1466, 2523, 2524, 1446, 1057, 1299, 1299,
-     1299, 1065, 1470, 1470, 1470, 2525, 1471, 2526, 2527, 1472,
-     1071, 1071, 1071, 2528, 2529, 1300, 1302, 1302, 1302, 1454,
-     1474, 1474, 1474, 2530, 1475, 2531, 2532, 1476, 1073, 1077,
-
-     1077, 1077, 2533, 1303, 1308, 1308, 1308, 1481, 1481, 1481,
-     2535, 1482, 1467, 2536, 1483, 2537, 1469, 1079, 1484, 1484,
-     1484, 1309, 2538, 1486, 1486, 1486, 1089, 1089, 1089, 1493,
-     1493, 1493, 1319, 1319, 1319, 1485, 1500, 1500, 1500, 1473,
-     1487, 1497, 1497, 1497, 1091, 1498, 1494, 2539, 1499, 1320,
-     1321, 1321, 1321, 1501, 1322,  952, 2540, 1323, 2541, 1478,
-     1115, 1115, 1115, 1510, 1510, 1510, 1336, 1336, 1336, 1488,
-     1337, 2542, 2543, 1338, 2534, 1514, 1514, 1514, 1117, 2544,
-     1511, 1130, 1130, 1130, 1138, 1138, 1138, 1523, 1523, 1523,
-     2545, 1489, 1515, 2546, 1149, 1149, 1149, 2547, 2548, 1132,
-
-     2549, 2550, 1140,  952, 1524, 2552, 1349, 1349, 1349, 2553,
-     1350, 2554, 1151, 1351, 1352, 1352, 1352, 2555, 1353, 2556,
-     2557, 1354, 2558, 2551, 1508, 1158, 1158, 1158, 1358, 1358,
-     1358, 2559, 1359, 1525, 2560, 1360, 2561, 2562, 1363, 1363,
-     1363, 2563, 1364, 1160, 1517, 1365, 1170, 1170, 1170, 1519,
-     1526, 1178, 1178, 1178, 1370, 1370, 1370, 2564, 1371, 2565,
-     2566, 1372, 2567, 2569, 1172,  952, 1375, 1375, 1375, 1180,
-     1376, 2568, 2570, 1377, 1188, 1188, 1188, 1380, 1380, 1380,
-     1540, 1540, 1540, 2571, 1541, 2572, 2573, 1542, 2574, 2575,
-     1528, 2576, 1190, 2577, 1381, 1196, 1196, 1196, 1547, 1547,
-
-     1547, 1202, 1202, 1202, 2578, 2579, 1533, 1535, 1209, 1209,
-     1209, 2580, 2582, 1198, 2583, 1548, 1551, 1551, 1551, 1204,
-     2584, 1538, 1217, 1217, 1217, 2585, 1211, 1393, 1393, 1393,
-      965,  965,  965, 1552, 1415, 1415, 1415, 1573, 1573, 1573,
-     1219, 1576, 1576, 1576, 1545, 1394, 2586,  952,  967, 1424,
-     1424, 1424, 1583, 1583, 1583, 1427, 1427, 1427, 2587, 1428,
-     1550, 2581, 1429,  996,  996,  996, 2588, 1549, 1431, 1431,
-     1431, 2589, 1432, 2591, 2592, 1433, 2593, 2594, 1555, 2595,
-     2596,  998, 1560, 1553, 1006, 1006, 1006, 1577, 1438, 1438,
-     1438, 2597, 1439, 2598, 1556, 1440, 2601, 2602, 1584, 2603,
-
-     1574, 2604, 1008, 1442, 1442, 1442, 2605, 1443, 2606,  952,
-     1444, 1590, 1022, 1022, 1022, 1447, 1447, 1447, 1449, 1449,
-     1449,  952, 1450, 2617,  952, 1451, 1452, 1452, 1452, 1585,
-     1024,  952, 1602, 1602, 1602, 1588, 1603, 1589, 1587, 1604,
-     1030, 1030, 1030, 1453, 1458, 1458, 1458, 1459, 1459, 1459,
-     1609, 1609, 1609, 1609, 1609, 1609, 2609, 2607, 1032, 1573,
-     1573, 1573, 1465, 1465, 1465, 2615, 1613, 1613, 1613,  952,
-     1614, 2610, 1592, 1615, 1055, 1055, 1055,  952,  952, 1466,
-     1617, 1617, 1617, 1063, 1063, 1063, 1470, 1470, 1470,  952,
-     1471, 1605, 1057, 1472, 1071, 1071, 1071, 1618, 1474, 1474,
-
-     1474, 1065, 1475,  952,  952, 1476, 1621, 1621, 1621, 1077,
-     1077, 1077, 1073, 1610, 2608,  952, 1574, 1484, 1484, 1484,
-     2613, 1616, 1610, 1622, 1481, 1481, 1481, 1079, 1482, 2616,
-     1619, 1483, 2614,  952, 1485, 1626, 1626, 1626, 1586, 1627,
-     2623, 2618, 1628, 1486, 1486, 1486, 1629, 1629, 1629,  952,
-     1630, 2611, 2624, 1631, 1582, 1633, 1633, 1633,  952, 1620,
-     1487, 1635, 1635, 1635, 1493, 1493, 1493, 1638, 1638, 1638,
-      952, 1639, 1623, 1634, 1640, 1641, 1641, 1641, 1497, 1497,
-     1497, 1494, 1498,  952,  952, 1499, 1500, 1500, 1500, 1644,
-     1644, 1644, 1642, 1645,  952, 2631, 1646, 1647, 1647, 1647,
-
-     1653, 1653, 1653, 1501, 1115, 1115, 1115, 1510, 1510, 1510,
-     1581, 1657, 1657, 1657, 1648, 1658, 2621, 1654, 1659, 1660,
-     1660, 1660, 1117, 2625, 1511, 1514, 1514, 1514, 1663, 1663,
-     1663, 2612, 1664, 2619,  952, 1665, 1661, 1667, 1667, 1667,
-     2622,  952, 1515, 1138, 1138, 1138, 1523, 1523, 1523, 1674,
-     1674, 1674, 2620, 1675, 2667, 1668, 1676, 1678, 1678, 1678,
-      952, 1140,  952, 1524, 1158, 1158, 1158, 1580,  952, 1655,
-     1683, 1683, 1683,  952, 2626, 1679, 1685, 1685, 1685, 2694,
-     2694, 2694, 1160, 1170, 1170, 1170,  952, 1684, 1178, 1178,
-     1178,  952,  952, 1686, 1670,  952, 2694, 1691, 1691, 1691,
-
-      952, 1172, 1693, 1693, 1693, 2633, 1180, 1188, 1188, 1188,
-     1196, 1196, 1196, 2629, 1692, 1681, 1540, 1540, 1540, 1694,
-     1541, 2627, 1579, 1542, 2634, 1190, 2628, 1578, 1198, 1547,
-     1547, 1547, 2632,  952, 1690, 2635, 1701, 1701, 1701, 2636,
-     1702,  952, 1687, 1703,  952, 2630, 1548, 1575,  952, 1688,
-     1202, 1202, 1202, 1572, 1209, 1209, 1209, 1551, 1551, 1551,
-      952, 1699, 1706, 1706, 1706,  952, 1707, 2639, 1204, 1708,
-     2659, 1695, 1211,  952, 1552, 1709, 1709, 1709, 1715, 1715,
-     1715,  965,  965,  965, 1722, 1722, 1722, 1568, 1568, 1568,
-     1728, 1728, 1728, 1710, 2640, 1716, 1573, 1573, 1573,  967,
-
-     1729, 1729, 1729, 1576, 1576, 1576, 2647, 2641, 1704, 1705,
-     1732, 1732, 1732, 1733, 1733, 1733, 1583, 1583, 1583,  996,
-      996,  996, 1741, 1741, 1741, 1744, 1744, 1744, 1022, 1022,
-     1022, 1748, 1748, 1748, 1030, 1030, 1030,  998, 1571,  952,
-     1742, 1717, 1745, 1602, 1602, 1602, 1024, 1603, 1749,  952,
-     1604,  952, 1032, 1761, 1761, 1761, 1609, 1609, 1609, 1765,
-     1765, 1765, 1767, 1767, 1767, 1055, 1055, 1055,  952, 1738,
-     1762, 1613, 1613, 1613, 2637, 1614,  952,  952, 1615, 1768,
-     1760,  952,  952, 1057, 2638,  952, 1747, 1617, 1617, 1617,
-     1770, 1770, 1770, 2642, 1771,  952, 1570, 1772, 1063, 1063,
-
-     1063, 1774, 1774, 1774, 1618, 1621, 1621, 1621, 1776, 1776,
-     1776, 2663, 1777, 2643, 2648, 1778, 1065, 2645, 1769, 1775,
-     2646, 2644, 1622, 1077, 1077, 1077, 1626, 1626, 1626, 2649,
-     1627, 2650, 2651, 1628,  952, 1629, 1629, 1629,  952, 1630,
-      952, 1079, 1631, 1633, 1633, 1633, 1635, 1635, 1635,  952,
-      952, 1773, 1638, 1638, 1638,  952, 1639,  952, 1569, 1640,
-      952, 1634, 1641, 1641, 1641, 1787, 1787, 1787, 2668, 1788,
-     1779, 2652, 1789, 1644, 1644, 1644,  952, 1645,  952, 1642,
-     1646, 1647, 1647, 1647, 1791, 1791, 1791, 2657, 1792, 2664,
-     2653, 1793, 1794, 1794, 1794, 1653, 1653, 1653, 1648, 1799,
-
-     1799, 1799, 2655, 1800,  952, 2656, 1801, 1567, 1566, 1795,
-     1565,  952, 1654, 1115, 1115, 1115, 1657, 1657, 1657, 2654,
-     1658,  952,  952, 1659, 1660, 1660, 1660, 1564, 1804, 1804,
-     1804, 1117, 1805, 2660,  952, 1806, 1663, 1663, 1663,  952,
-     1664, 1661,  952, 1665, 1667, 1667, 1667, 1138, 1138, 1138,
-     1812, 1812, 1812, 1674, 1674, 1674, 2665, 1675, 2658, 2671,
-     1676,  952, 1668,  952, 1802, 1140, 1563, 1813, 1678, 1678,
-     1678, 1820, 1820, 1820, 1683, 1683, 1683, 1823, 1823, 1823,
-     2669, 1824,  952, 1562, 1825, 2670, 1679, 2666,  952, 1821,
-      952, 1684, 1685, 1685, 1685,  952, 1814, 1826, 1826, 1826,
-
-     2672, 1827, 1561,  952, 1828, 1170, 1170, 1170, 2687, 1686,
-     1810, 1178, 1178, 1178, 1691, 1691, 1691, 1833, 1833, 1833,
-      952, 1834, 2673, 1172, 1835, 1693, 1693, 1693, 2661, 1180,
-     2674, 1692, 1836, 1836, 1836, 2688, 1837,  952, 2675, 1838,
-     2677,  952, 1694, 1188, 1188, 1188, 1196, 1196, 1196, 1701,
-     1701, 1701, 1559, 1702, 2662, 2676, 1703, 1202, 1202, 1202,
-     1832, 1190,  952,  952, 1198, 1209, 1209, 1209,  952, 1558,
-     1830, 1557, 1706, 1706, 1706, 1204, 1707,  952, 2679, 1708,
-     1709, 1709, 1709, 1211, 1715, 1715, 1715, 1851, 1851, 1851,
-     1394, 1852, 2691, 1546, 1853,  965,  965,  965, 1710, 2680,
-
-     2681, 1716, 1855, 1855, 1855, 1544,  952, 1839, 1845, 2682,
-     1843, 1543, 1539,  967, 1858, 1858, 1858, 1537, 1846, 1722,
-     1722, 1722, 1859, 1859, 1859, 1863, 1863, 1863, 1728, 1728,
-     1728, 1729, 1729, 1729, 1864, 1864, 1864, 1732, 1732, 1732,
-     1733, 1733, 1733, 1867, 1867, 1867, 1868, 1868, 1868, 1869,
-     1869, 1869,  996,  996,  996, 1741, 1741, 1741, 1854, 1744,
-     1744, 1744, 1875, 1875, 1875, 2683, 1876, 1536, 1534, 1877,
-      998, 1532, 1531, 1742,  952,  952, 1745, 1879, 1879, 1879,
-     1865, 1748, 1748, 1748, 1881, 1881, 1881,  952, 1882, 1530,
-     1527, 1883, 1030, 1030, 1030, 1880, 1522,  952, 1749, 1761,
-
-     1761, 1761, 1521, 1871, 1895, 1895, 1895, 2685, 1896, 1520,
-     1032, 1897, 1898, 1898, 1898,  952, 1762, 1765, 1765, 1765,
-     1900, 1900, 1900, 1767, 1767, 1767, 1902, 1902, 1902, 2686,
-     1903,  952, 2678, 1904, 1055, 1055, 1055, 1063, 1063, 1063,
-     1768, 1894, 1770, 1770, 1770, 2684, 1771, 2689, 2691, 1772,
-     1518, 1516, 1057, 1513,  952, 1065, 1774, 1774, 1774,  952,
-     1776, 1776, 1776, 2690, 1777, 1512, 1901, 1778, 1077, 1077,
-     1077, 1787, 1787, 1787, 1775, 1788, 1509, 1507, 1789, 1506,
-     1791, 1791, 1791, 1505, 1792, 1905, 1079, 1793, 1906, 1794,
-     1794, 1794, 1918, 1918, 1918, 1504, 1919, 1503, 1502, 1920,
-
-     1799, 1799, 1799, 1496, 1800, 1495, 1795, 1801, 1115, 1115,
-     1115, 1804, 1804, 1804, 1492, 1805, 1491, 1490, 1806, 1480,
-     1479, 1907, 1929, 1929, 1929, 1477, 1117, 1812, 1812, 1812,
-     1932, 1932, 1932, 1468, 1933, 1464, 1463, 1934, 1462, 1461,
-     1930, 1820, 1820, 1820, 1813, 1823, 1823, 1823, 1460, 1824,
-     1457, 1456, 1825, 1826, 1826, 1826, 1455, 1827, 1448, 1821,
-     1828, 1170, 1170, 1170, 1178, 1178, 1178, 1445, 1833, 1833,
-     1833, 1924, 1834, 1441, 1437, 1835, 1836, 1836, 1836, 1172,
-     1837, 1435, 1180, 1838, 1188, 1188, 1188, 1949, 1949, 1949,
-     2694, 2694, 2694, 2694, 2694, 2694, 1196, 1196, 1196, 1202,
-
-     1202, 1202, 1190, 1434, 1950, 1426, 1425, 2694, 1423, 1422,
-     2694, 1421, 1945, 1420, 1198, 1419, 1418, 1204, 1417, 1416,
-     1948, 1956, 1956, 1956, 1958, 1958, 1958, 1414, 1413, 1947,
-     1961, 1961, 1961, 1851, 1851, 1851, 1411, 1852, 1410, 1957,
-     1853, 1951,  952,  965,  965,  965, 1855, 1855, 1855, 1407,
-     1405, 1952, 1963, 1963, 1963, 1858, 1858, 1858, 1955, 1404,
-     1953,  967, 1859, 1859, 1859, 1965, 1965, 1965, 1966, 1966,
-     1966, 1967, 1967, 1967, 1863, 1863, 1863, 1864, 1864, 1864,
-     1867, 1867, 1867, 1868, 1868, 1868, 1869, 1869, 1869, 1971,
-     1971, 1971, 1974, 1974, 1974, 1875, 1875, 1875, 1403, 1876,
-
-     1402, 1962, 1877, 2694, 2694, 2694, 1401, 1972, 1399, 1975,
-     1879, 1879, 1879, 1398, 1881, 1881, 1881, 1397, 1882, 1396,
-     2694, 1883, 1030, 1030, 1030, 1895, 1895, 1895, 1880, 1896,
-     1389, 1386, 1897, 1898, 1898, 1898, 1900, 1900, 1900, 1385,
-     1032, 1902, 1902, 1902, 1383, 1903, 1382, 1379, 1904, 1055,
-     1055, 1055, 1991, 1991, 1991, 1077, 1077, 1077, 2001, 2001,
-     2001, 1374, 1918, 1918, 1918, 1373, 1919, 1057, 1976, 1920,
-     1992, 1368, 1366, 1079, 2004, 2004, 2004, 1362, 2008, 2008,
-     2008, 1361, 1987, 1929, 1929, 1929, 2014, 2014, 2014, 1357,
-     1355, 2005, 2025, 2025, 2025, 1990, 2009, 1347, 1932, 1932,
-
-     1932, 1930, 1933, 2015, 1346, 1934, 1993, 2027, 2027, 2027,
-     2029, 2029, 2029, 1178, 1178, 1178, 1188, 1188, 1188, 1949,
-     1949, 1949, 2033, 2033, 2033, 2028, 2034, 2030, 1345, 2035,
-     1344, 1180, 2016, 1342, 1190, 1340, 1950, 2036, 2036, 2036,
-     2694, 2694, 2694, 2039, 2039, 2039, 2041, 2041, 2041, 1202,
-     1202, 1202, 1339, 1335, 2037, 1334, 1333, 2694, 1961, 1961,
-     1961, 2040, 1956, 1956, 1956, 1332, 1330, 1204, 1958, 1958,
-     1958, 1329, 2031, 1963, 1963, 1963, 2032, 2046, 2046, 2046,
-     1957, 1965, 1965, 1965, 1328, 1327,  952, 1966, 1966, 1966,
-     1326, 2038, 1967, 1967, 1967, 2047, 1325, 1971, 1971, 1971,
-
-     1974, 1974, 1974, 2053, 2053, 2053, 1324, 2054, 1318, 1317,
-     2055, 2694, 2694, 2694, 2042, 1972, 1316, 1975, 1030, 1030,
-     1030, 1055, 1055, 1055, 1991, 1991, 1991, 1315, 2694, 2043,
-     2071, 2071, 2071, 2077, 2077, 2077, 1032, 1314, 1313, 1057,
-     1311, 1310, 1992, 2001, 2001, 2001, 1307, 1306, 2072, 1297,
-     2078, 2004, 2004, 2004, 2081, 2081, 2081, 1295, 2082, 1294,
-     1293, 2083, 2085, 2085, 2085, 1292, 2056, 1291, 2005, 2008,
-     2008, 2008, 2089, 2089, 2089, 1290, 1289, 2067, 1288, 2086,
-     2014, 2014, 2014, 2100, 2100, 2100, 2070, 2009, 1287, 2090,
-     1286, 2092, 2092, 2092, 1283, 2093, 1281, 2015, 2094, 1278,
-
-     2101, 2025, 2025, 2025, 2027, 2027, 2027, 2029, 2029, 2029,
-     2104, 2104, 2104, 1275, 2105, 1272, 1263, 2106, 2107, 2107,
-     2107, 1261, 2028, 1254, 2030, 1188, 1188, 1188, 2033, 2033,
-     2033, 1252, 2034, 1251, 1250, 2035, 2108, 2036, 2036, 2036,
-     2110, 2110, 2110, 1190, 2111, 1249, 1248, 2112, 2113, 2113,
-     2113, 2039, 2039, 2039, 2037, 2041, 2041, 2041, 2115, 2115,
-     2115, 2046, 2046, 2046, 1247, 2114, 2124, 2124, 2124, 2040,
-     2053, 2053, 2053, 1246, 2054, 1245, 2116, 2055, 1244, 2047,
-     2694, 2694, 2694, 2125, 1030, 1030, 1030, 1055, 1055, 1055,
-     1241, 2109, 2071, 2071, 2071, 1240, 1239, 2694, 2148, 2148,
-
-     2148, 1238, 1032, 1237, 1236, 1057, 2077, 2077, 2077, 1235,
-     2072, 1234, 2150, 2150, 2150, 2149, 2151, 1233, 1232, 2152,
-     2081, 2081, 2081, 2078, 2082, 1231, 1230, 2083, 2085, 2085,
-     2085, 2156, 2156, 2156, 1228, 2157, 1227, 1226, 2158, 1225,
-     2132, 1224, 1223, 2143, 1222, 2086, 2160, 2160, 2160, 2089,
-     2089, 2089, 2162, 2162, 2162,  952, 2163, 2146, 1216, 2164,
-     2165, 2165, 2165, 2161, 1201, 1200, 2090, 2092, 2092, 2092,
-     1195, 2093, 1194, 1193, 2094, 1192, 1174, 2166, 2100, 2100,
-     2100, 2170, 2170, 2170, 1162, 2171, 1148, 1147, 2172, 2173,
-     2173, 2173, 2175, 2175, 2175, 2101, 2104, 2104, 2104, 1146,
-
-     2105, 1142, 1134, 2106, 1129, 1128, 2174, 1122, 1119, 2176,
-     2107, 2107, 2107, 1188, 1188, 1188, 2110, 2110, 2110, 1114,
-     2111, 1113, 1112, 2112, 2113, 2113, 2113, 1111, 2108, 1110,
-     1109, 1190, 2184, 2184, 2184, 1108, 2185, 1102, 1095, 2186,
-     1094, 2114, 2115, 2115, 2115, 2190, 2190, 2190, 2124, 2124,
-     2124, 2194, 2194, 2194, 1093, 2195, 1088, 1087, 2196, 1083,
-     2116, 1082, 2694, 2694, 2694, 2125, 1030, 1030, 1030, 2215,
-     2215, 2215, 1055, 1055, 1055, 2148, 2148, 2148, 2183, 2694,
-     2218, 2218, 2218, 1081, 1032, 1076, 1075, 2221, 2221, 2221,
-     1057, 2222, 2149, 1070, 2223, 1062, 1054, 2219, 2150, 2150,
-
-     2150, 1050, 2151, 1049, 1048, 2152, 2156, 2156, 2156, 1047,
-     2157, 1046, 1045, 2158, 2160, 2160, 2160, 2214, 2228, 2228,
-     2228, 2205, 2229, 1044, 1043, 2230, 2220, 1037, 2162, 2162,
-     2162, 2161, 2163, 2217, 1029, 2164, 2165, 2165, 2165, 2231,
-     2231, 2231, 1028, 2232, 1027, 1026, 2233, 2235, 2235, 2235,
-     2170, 2170, 2170, 2166, 2171, 1021, 1020, 2172, 2173, 2173,
-     2173, 2238, 2238, 2238, 2236, 2239, 1019, 1016, 2240, 2175,
-     2175, 2175, 2241, 2241, 2241, 2174, 2242, 1010, 1005, 2243,
-     1188, 1188, 1188, 2184, 2184, 2184, 2176, 2185, 1004, 1000,
-     2186, 2253, 2253, 2253, 2190, 2190, 2190,  995, 1190, 2255,
-
-     2255, 2255,  994, 2194, 2194, 2194,  993, 2195, 2254, 1394,
-     2196, 2266, 2266, 2266, 1030, 1030, 1030, 2215, 2215, 2215,
-     2277, 2277, 2277, 1055, 1055, 1055,  992,  991, 2267,  990,
-      988, 2250, 1032, 2218, 2218, 2218, 2279, 2279, 2279,  987,
-     2280, 1057,  986, 2281, 2221, 2221, 2221,  985, 2222,  984,
-     2219, 2223, 2228, 2228, 2228,  983, 2229,  982,  981, 2230,
-     2231, 2231, 2231, 2276, 2232,  980,  979, 2233, 2235, 2235,
-     2235, 2288, 2288, 2288, 2278, 2289,  978,  977, 2290, 2238,
-     2238, 2238,  976, 2239,  975, 2236, 2240, 2241, 2241, 2241,
-      974, 2242,  973,  972, 2243, 2306, 2306, 2306, 2309, 2309,
-
-     2309, 2253, 2253, 2253, 2311, 2311, 2311,  971, 2312,  964,
-      963, 2313,  962, 2307,  961, 2310, 1394,  960, 2254, 1394,
-      959,  958, 1394, 2255, 2255, 2255, 2314, 2314, 2314, 2315,
-     2315, 2315, 2266, 2266, 2266, 2324, 2324, 2324,  955, 2325,
-      953,  952, 2326, 1030, 1030, 1030, 2277, 2277, 2277, 2267,
-     2334, 2334, 2334, 2279, 2279, 2279,  950, 2280,  948,  945,
-     2281, 1032, 2339, 2339, 2339, 2342, 2342, 2342, 2335, 2288,
-     2288, 2288,  941, 2289,  939,  938, 2290,  937,  935, 2340,
-      934,  933, 2343, 2344, 2344, 2344, 2306, 2306, 2306, 2309,
-     2309, 2309, 2359, 2359, 2359,  932, 2360,  931,  929, 2361,
-
-     2345, 2314, 2314, 2314, 2307,  928, 2310, 1394, 2333,  927,
-     1394, 2311, 2311, 2311,  926, 2312,  922,  921, 2313, 2315,
-     2315, 2315, 2378, 2378, 2378, 2334, 2334, 2334,  919, 1394,
-     1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392,  918,
-     2379, 1392,  917, 2335,  916,  915, 1392, 1392, 1392, 1394,
-     1392, 2324, 2324, 2324,  914, 2325,  912,  911, 2326, 2383,
-     2383, 2383,  910, 2384,  909,  907, 2385,  906,  905, 2339,
-     2339, 2339, 2342, 2342, 2342, 1392, 1392, 1392, 1392, 1392,
-     1392, 1392, 1392, 1392, 1392, 1392, 2340,  902, 1392, 2343,
-     2344, 2344, 2344, 1392, 1392, 1392, 1394, 1392, 2387, 2387,
-
-     2387,  901, 2388,  897,  896, 2389,  894, 2345, 2390, 2390,
-     2390,  893, 2391,  892,  889, 2392,  888, 2359, 2359, 2359,
-      887, 2360, 1392, 1392, 2361,  886,  884, 2378, 2378, 2378,
-     2440, 2440, 2440,  883,  882, 1394, 1392, 1392, 1392, 1392,
-     1392, 2411, 1392, 1392, 1392, 2379,  881, 1392, 1394, 1395,
-      880,  879, 1392, 1392, 1392, 1394, 1392, 2383, 2383, 2383,
-      878, 2384,  877,  874, 2385, 2387, 2387, 2387,  871, 2388,
-      870,  867, 2389, 2390, 2390, 2390,  865, 2391,  864,  859,
-     2392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392,
-     1392, 2411,  858,  856, 1392, 2445, 2445, 2445,  855, 1392,
-
-     1392, 1392, 1394, 1392, 2447, 2447, 2447, 2449, 2449, 2449,
-      854,  852, 2446, 2457, 2457, 2457, 2465, 2465, 2465,  849,
-      847, 2448,  844,  842, 2450, 2440, 2440, 2440, 1392, 1392,
-     2458, 2445, 2445, 2445,  952, 2471, 2471, 2471,  839, 2472,
-      836,  835, 2473, 1394, 2447, 2447, 2447,  833, 2446, 2474,
-     2474, 2474,  832, 2475,  831,  830, 2476, 2449, 2449, 2449,
-      829, 2448, 2477, 2477, 2477,  827, 2478,  824,  822, 2479,
-     2457, 2457, 2457,  821, 2450,  820, 1555, 2486, 2486, 2486,
-      818, 2487,  816,  815, 2488,  814,  813, 2458, 2465, 2465,
-     2465, 2471, 2471, 2471,  812, 2472,  811,  808, 2473,  807,
-
-     2474, 2474, 2474,  806, 2475,  803,  952, 2476, 2477, 2477,
-     2477,  800, 2478,  799,  797, 2479, 2486, 2486, 2486,  796,
-     2487,  793,  791, 2488,  788, 2495, 2590, 2590, 2590, 2590,
-     2590, 2590,  787, 2599,  779,  778, 2600, 2692, 2692, 2692,
-     2692, 2692, 2692,  777,  952,  774,  773,  952,  772,  771,
-      769,  768,  767,  766,  765, 2693,  764,  759, 2693,  222,
-      222,  222,  222,  222,  222,  222,  222,  222,  223,  223,
-      223,  223,  223,  223,  223,  223,  223,  228,  228,  228,
-      228,  228,  228,  228,  228,  228,  231,  231,  231,  231,
-      231,  231,  231,  231,  231,  234,  234,  234,  234,  234,
-
-      234,  234,  234,  234,  237,  237,  237,  237,  237,  237,
-      237,  237,  237,  244,  244,  244,  244,  244,  244,  244,
-      244,  244,  252,  252,  252,  252,  252,  252,  252,  252,
-      252,  256,  256,  256,  256,  256,  256,  256,  256,  256,
-      268,  268,  268,  268,  268,  268,  268,  268,  268,  272,
-      272,  272,  272,  272,  272,  272,  272,  272,  278,  278,
-      278,  278,  278,  278,  278,  278,  278,  289,  289,  289,
-      289,  289,  289,  289,  289,  289,  297,  297,  297,  297,
-      297,  297,  297,  297,  297,  305,  305,  305,  305,  305,
-      305,  305,  305,  305,  311,  311,  311,  311,  311,  311,
-
-      311,  311,  311,  317,  317,  317,  317,  317,  317,  317,
-      317,  317,  322,  322,  322,  322,  322,  322,  322,  322,
-      322,  339,  339,  339,  339,  339,  339,  339,  339,  339,
-      345,  345,  345,  345,  345,  345,  345,  345,  345,  352,
-      352,  352,  352,  352,  352,  352,  352,  352,  357,  357,
-      357,  357,  357,  357,  357,  357,  357,  364,  364,  364,
-      364,  364,  364,  364,  364,  364,  369,  369,  369,  369,
-      369,  369,  369,  369,  369,  375,  375,  375,  375,  375,
-      375,  375,  375,  375,  380,  380,  380,  380,  380,  380,
-      380,  380,  380,  386,  386,  386,  386,  386,  386,  386,
-
-      386,  386,  394,  394,  394,  394,  394,  394,  394,  394,
-      394,  413,  413,  413,  413,  413,  413,  413,  413,  413,
-      429,  429,  429,  429,  429,  429,  429,  429,  429,  435,
-      435,  435,  435,  435,  435,  435,  435,  435,  440,  440,
-      440,  440,  440,  440,  440,  440,  440,  446,  446,  446,
-      446,  446,  446,  446,  446,  446,  453,  453,  453,  453,
-      453,  453,  453,  453,  453,  460,  460,  460,  460,  460,
-      460,  460,  460,  460,  465,  465,  465,  465,  465,  465,
-      465,  465,  465,  473,  473,  473,  473,  473,  473,  473,
-      473,  473,  479,  479,  479,  479,  479,  479,  479,  479,
-
-      479,  486,  486,  486,  486,  486,  486,  486,  486,  486,
-      491,  491,  491,  491,  491,  491,  491,  491,  491,  497,
-      497,  497,  497,  497,  497,  497,  497,  497,  503,  503,
-      503,  503,  503,  503,  503,  503,  503,  510,  510,  510,
-      510,  510,  510,  510,  510,  510,  517,  517,  517,  517,
-      517,  517,  517,  517,  517,  525,  525,  525,  525,  525,
-      525,  525,  525,  525,  529,  529,  529,  529,  529,  529,
-      529,  529,  529,  535,  535,  535,  535,  535,  535,  535,
-      535,  535,  539,  539,  539,  539,  539,  539,  539,  539,
-      539,  546,  546,  546,  546,  546,  546,  546,  546,  546,
-
-      551,  551,  551,  551,  551,  551,  551,  551,  551,  571,
-      571,  571,  756,  758,  753,  571,  597,  597,  597,  752,
-      750,  749,  597,  601,  601,  601,  748,  746,  744,  601,
-      609,  609,  609,  742,  739,  738,  609,  621,  621,  621,
-      737,  736,  734,  621,  627,  627,  627,  733,  732,  731,
-      627,  641,  641,  641,  730,  728,  726,  641,  647,  647,
-      647,  725,  723,  722,  647,  652,  652,  652,  719,  718,
-      716,  652,  657,  657,  657,  580, 2694,  711,  657,  662,
-      662,  662,  709,  708,  705,  662,  671,  671,  671,  704,
-      703,  701,  671,  687,  687,  687,  699,  698,  696,  687,
-
-      697,  697,  697,  694,  693,  692,  697,  702,  702,  702,
-      691,  690,  689,  702,  710,  710,  710,  688,  686,  677,
-      710,  717,  717,  717,  676,  675,  672,  717,  724,  724,
-      724,  670,  667,  666,  724,  729,  729,  729,  665,  664,
-      663,  729,  735,  735,  735,  661,  659,  658,  735,  743,
-      743,  743,  656,  654,  653,  743,  747,  747,  747,  651,
-      650,  649,  747,  751,  751,  751,  648,  646,  645,  751,
-      755,  755,  755,  755,  755,  755,  755,  644,  755,  571,
-      571,  571,  643,  642,  640,  571,  770, 2694,  588,  629,
-      770,  597,  597,  597,  628,  626,  624,  597,  798,  623,
-
-      622,  620,  798,  601,  601,  601,  591, 2694,  615,  601,
-      805,  611,  610,  608,  805,  609,  609,  609,  607,  604,
-      603,  609,  817,  602,  600,  598,  817,  621,  621,  621,
-      596, 2694,  572,  621,  823,  570,  568,  562,  823,  627,
-      627,  627,  561,  562,  561,  627,  828,  560,  559, 2694,
-      828,  641,  641,  641, 2694, 2694, 2694,  641,  843, 2694,
-     2694, 2694,  843,  647,  647,  647, 2694, 2694, 2694,  647,
-      848, 2694, 2694, 2694,  848,  652,  652,  652, 2694, 2694,
-     2694,  652,  853, 2694, 2694, 2694,  853,  657,  657,  657,
-     2694, 2694, 2694,  657,  857, 2694, 2694, 2694,  857,  662,
-
-      662,  662, 2694, 2694, 2694,  662,  866, 2694, 2694, 2694,
-      866,  671,  671,  671, 2694, 2694, 2694,  671,  885, 2694,
-     2694, 2694,  885,  687,  687,  687, 2694, 2694, 2694,  687,
-      895, 2694, 2694, 2694,  895,  697,  697,  697, 2694, 2694,
-     2694,  697,  900, 2694, 2694, 2694,  900,  702,  702,  702,
-     2694, 2694, 2694,  702,  908, 2694, 2694, 2694,  908,  710,
-      710,  710, 2694, 2694, 2694,  710,  913, 2694, 2694, 2694,
-      913,  717,  717,  717, 2694, 2694, 2694,  717,  920, 2694,
-     2694, 2694,  920,  724,  724,  724, 2694, 2694, 2694,  724,
-      925, 2694, 2694, 2694,  925,  729,  729,  729, 2694, 2694,
-
-     2694,  729,  930, 2694, 2694, 2694,  930,  735,  735,  735,
-     2694, 2694, 2694,  735,  936, 2694, 2694, 2694,  936,  743,
-      743,  743, 2694, 2694, 2694,  743,  940, 2694, 2694, 2694,
-      940,  747,  747,  747, 2694, 2694, 2694,  747,  944, 2694,
-     2694, 2694,  944,  751,  751,  751, 2694, 2694, 2694,  751,
-      949, 2694, 2694, 2694,  949,  951,  951,  951,  951,  951,
-      951,  951,  951,  951,  957, 2694, 2694, 2694, 2694,  957,
-      571,  571,  571, 2694, 2694, 2694,  571,  966,  966,  966,
-      966, 2694, 2694,  966,  966,  597,  597,  597, 2694, 2694,
-     2694,  597,  997,  997,  997,  997, 2694, 2694,  997,  997,
-
-      601,  601,  601, 2694, 2694, 2694,  601, 1007, 1007, 1007,
-     1007, 2694, 2694, 1007, 1007,  609,  609,  609, 2694, 2694,
-     2694,  609, 1023, 1023, 1023, 1023, 2694, 2694, 1023, 1023,
-      621,  621,  621, 2694, 2694, 2694,  621, 1031, 1031, 1031,
-     1031, 2694, 2694, 1031, 1031,  627,  627,  627, 2694, 2694,
-     2694,  627, 1039, 1039, 1039, 1039, 2694, 2694, 1039, 1039,
-      641,  641,  641, 2694, 2694, 2694,  641, 1056, 1056, 1056,
-     1056, 2694, 2694, 1056, 1056,  647,  647,  647, 2694, 2694,
-     2694,  647, 1064, 1064, 1064, 1064, 2694, 2694, 1064, 1064,
-      652,  652,  652, 2694, 2694, 2694,  652, 1072, 1072, 1072,
-
-     1072, 2694, 2694, 1072, 1072,  657,  657,  657, 2694, 2694,
-     2694,  657, 1078, 1078, 1078, 1078, 2694, 2694, 1078, 1078,
-      662,  662,  662, 2694, 2694, 2694,  662, 1090, 1090, 1090,
-     1090, 2694, 2694, 1090, 1090,  671,  671,  671, 2694, 2694,
-     2694,  671, 1116, 1116, 1116, 1116, 2694, 2694, 1116, 1116,
-      687,  687,  687, 2694, 2694, 2694,  687, 1131, 1131, 1131,
-     1131, 2694, 2694, 1131, 1131,  697,  697,  697, 2694, 2694,
-     2694,  697, 1139, 1139, 1139, 1139, 2694, 2694, 1139, 1139,
-      702,  702,  702, 2694, 2694, 2694,  702, 1150, 1150, 1150,
-     1150, 2694, 2694, 1150, 1150,  710,  710,  710,  710, 2694,
-
-      710, 2694,  710, 1159, 1159, 1159, 1159, 2694, 2694, 1159,
-     1159,  717,  717,  717,  717, 2694,  717, 2694,  717, 1171,
-     1171, 1171, 1171, 2694, 2694, 1171, 1171,  724,  724,  724,
-     2694, 2694, 2694,  724, 1179, 1179, 1179, 1179, 2694, 2694,
-     1179, 1179,  729,  729,  729,  729, 2694,  729, 2694,  729,
-     1189, 1189, 1189, 1189, 2694, 2694, 1189, 1189,  735,  735,
-      735, 2694, 2694, 2694,  735, 1197, 1197, 1197, 1197, 2694,
-     2694, 1197, 1197,  743,  743,  743, 2694, 2694, 2694,  743,
-     1203, 1203, 1203, 1203, 2694, 2694, 1203, 1203, 1210, 1210,
-     1210, 1210, 2694, 2694, 1210, 1210,  751,  751,  751, 2694,
-
-     2694, 2694,  751, 1218, 1218, 1218, 1218, 2694, 2694, 1218,
-     1218,  951,  951,  951,  951,  951,  951,  951,  951,  951,
-      957, 2694,  957, 2694, 2694,  957,  571,  571,  571, 2694,
-     2694, 2694,  571,  966,  966,  966,  966, 2694, 2694,  966,
-      966,  597,  597,  597,  597, 2694,  597, 2694,  597,  997,
-      997,  997,  997, 2694, 2694,  997,  997,  601,  601,  601,
-      601, 2694,  601, 2694,  601, 1007, 1007, 1007, 1007, 2694,
-     2694, 1007, 1007,  609,  609,  609, 2694, 2694, 2694,  609,
-     1023, 1023, 1023, 1023, 2694, 2694, 1023, 1023,  621,  621,
-      621, 2694, 2694, 2694,  621, 1031, 1031, 1031, 1031, 2694,
-
-     2694, 1031, 1031,  627,  627,  627, 2694, 2694, 2694,  627,
-     1039, 1039, 1039, 1039, 2694, 2694, 1039, 1039,  641,  641,
-      641, 2694, 2694, 2694,  641, 1056, 1056, 1056, 1056, 2694,
-     2694, 1056, 1056,  647,  647,  647, 2694, 2694, 2694,  647,
-     1064, 1064, 1064, 1064, 2694, 2694, 1064, 1064,  652,  652,
-      652,  652, 2694,  652, 2694,  652, 1072, 1072, 1072, 1072,
-     2694, 2694, 1072, 1072,  657,  657,  657,  657, 2694,  657,
-     2694,  657, 1078, 1078, 1078, 1078, 2694, 2694, 1078, 1078,
-      662,  662,  662, 2694, 2694, 2694,  662, 1090, 1090, 1090,
-     1090, 2694, 2694, 1090, 1090,  671,  671,  671, 2694, 2694,
-
-     2694,  671, 1116, 1116, 1116, 1116, 2694, 2694, 1116, 1116,
-      687,  687,  687, 2694, 2694, 2694,  687, 1131, 1131, 1131,
-     1131, 2694, 2694, 1131, 1131,  697,  697,  697, 2694, 2694,
-     2694,  697, 1139, 1139, 1139, 1139, 2694, 2694, 1139, 1139,
-      702,  702,  702, 2694, 2694, 2694,  702, 1150, 1150, 1150,
-     1150, 2694, 2694, 1150, 1150,  710,  710,  710, 2694, 2694,
-     2694,  710, 1159, 1159, 1159, 1159, 2694, 2694, 1159, 1159,
-      717,  717,  717, 2694, 2694, 2694,  717, 1171, 1171, 1171,
-     1171, 2694, 2694, 1171, 1171,  724,  724,  724, 2694, 2694,
-     2694,  724, 1179, 1179, 1179, 1179, 2694, 2694, 1179, 1179,
-
-      729,  729,  729, 2694, 2694, 2694,  729, 1189, 1189, 1189,
-     1189, 2694, 2694, 1189, 1189,  735,  735,  735, 2694, 2694,
-     2694,  735, 1197, 1197, 1197, 1197, 2694, 2694, 1197, 1197,
-      743,  743,  743, 2694, 2694, 2694,  743, 1203, 1203, 1203,
-     1203, 2694, 2694, 1203, 1203, 1210, 1210, 1210, 1210, 2694,
-     2694, 1210, 1210,  751,  751,  751, 2694, 2694, 2694,  751,
-     1218, 1218, 1218, 1218, 2694, 2694, 1218, 1218,  951,  951,
-      951,  951,  951,  951,  951,  951,  951, 1392, 1392, 1392,
-     1392, 1392, 1392, 1392, 1392, 1392,  571,  571,  571, 2694,
-     2694, 2694,  571,  966,  966,  966,  966, 2694, 2694,  966,
-
-      966,  997,  997,  997,  997, 2694, 2694,  997,  997,  601,
-      601,  601, 2694, 2694, 2694,  601, 1007, 1007, 1007, 1007,
-     2694, 2694, 1007, 1007,  609,  609,  609, 2694, 2694, 2694,
-      609, 1023, 1023, 1023, 1023, 2694, 2694, 1023, 1023,  621,
-      621,  621, 2694, 2694, 2694,  621, 1031, 1031, 1031, 1031,
-     2694, 2694, 1031, 1031,  627,  627,  627, 2694, 2694, 2694,
-      627,  641,  641,  641, 2694, 2694, 2694,  641, 1056, 1056,
-     1056, 1056, 2694, 2694, 1056, 1056,  647,  647,  647, 2694,
-     2694, 2694,  647, 1064, 1064, 1064, 1064, 2694, 2694, 1064,
-     1064, 1072, 1072, 1072, 1072, 2694, 2694, 1072, 1072,  657,
-
-      657,  657, 2694, 2694, 2694,  657, 1078, 1078, 1078, 1078,
-     2694, 2694, 1078, 1078,  662,  662,  662, 2694, 2694, 2694,
-      662, 1090, 1090, 1090, 1090, 2694, 2694, 1090, 1090,  671,
-      671,  671, 2694, 2694, 2694,  671, 1116, 1116, 1116, 1116,
-     2694, 2694, 1116, 1116,  687,  687,  687, 2694, 2694, 2694,
-      687, 1131, 1131, 1131, 1131, 2694, 2694, 1131, 1131,  697,
-      697,  697, 2694, 2694, 2694,  697, 1139, 1139, 1139, 1139,
-     2694, 2694, 1139, 1139,  702,  702,  702, 2694, 2694, 2694,
-      702, 1150, 1150, 1150, 1150, 2694, 2694, 1150, 1150,  710,
-      710,  710, 2694, 2694, 2694,  710, 1159, 1159, 1159, 1159,
-
-     2694, 2694, 1159, 1159,  717,  717,  717, 2694, 2694, 2694,
-      717, 1171, 1171, 1171, 1171, 2694, 2694, 1171, 1171,  724,
-      724,  724, 2694, 2694, 2694,  724, 1179, 1179, 1179, 1179,
-     2694, 2694, 1179, 1179,  729,  729,  729, 2694, 2694, 2694,
-      729, 1189, 1189, 1189, 1189, 2694, 2694, 1189, 1189,  735,
-      735,  735, 2694, 2694, 2694,  735, 1197, 1197, 1197, 1197,
-     2694, 2694, 1197, 1197,  743,  743,  743,  743, 2694,  743,
-     2694,  743, 1203, 1203, 1203, 1203, 2694, 2694, 1203, 1203,
-     1210, 1210, 1210, 1210, 2694, 2694, 1210, 1210,  751,  751,
-      751,  751, 2694,  751, 2694,  751, 1218, 1218, 1218, 1218,
-
-     2694, 2694, 1218, 1218,  951,  951,  951,  951,  951,  951,
-      951,  951,  951, 1392, 1392, 1392, 1392, 1392, 1392, 1392,
-     1392, 1392,  571,  571,  571, 2694, 2694, 2694,  571,  966,
-      966,  966,  966, 2694, 2694,  966,  966,  997,  997,  997,
-      997, 2694, 2694,  997,  997,  601,  601,  601, 2694, 2694,
-     2694,  601, 1007, 1007, 1007, 1007, 2694, 2694, 1007, 1007,
-      609,  609,  609, 2694, 2694, 2694,  609, 1023, 1023, 1023,
-     1023, 2694, 2694, 1023, 1023,  621,  621,  621, 2694, 2694,
-     2694,  621, 1031, 1031, 1031, 1031, 2694, 2694, 1031, 1031,
-      627,  627,  627, 2694, 2694, 2694,  627,  641,  641,  641,
-
-     2694, 2694, 2694,  641, 1056, 1056, 1056, 1056, 2694, 2694,
-     1056, 1056,  647,  647,  647,  647, 2694,  647, 2694,  647,
-     1064, 1064, 1064, 1064, 2694, 2694, 1064, 1064, 1072, 1072,
-     1072, 1072, 2694, 2694, 1072, 1072,  657,  657,  657,  657,
-     2694,  657, 2694,  657, 1078, 1078, 1078, 1078, 2694, 2694,
-     1078, 1078,  662,  662,  662, 2694, 2694, 2694,  662, 1090,
-     1090, 1090, 1090, 2694, 2694, 1090, 1090,  671,  671,  671,
-     2694, 2694, 2694,  671, 1116, 1116, 1116, 1116, 2694, 2694,
-     1116, 1116,  687,  687,  687, 2694, 2694, 2694,  687, 1131,
-     1131, 1131, 1131, 2694, 2694, 1131, 1131,  697,  697,  697,
-
-     2694, 2694, 2694,  697, 1139, 1139, 1139, 1139, 2694, 2694,
-     1139, 1139,  702,  702,  702, 2694, 2694, 2694,  702, 1150,
-     1150, 1150, 1150, 2694, 2694, 1150, 1150,  710,  710,  710,
-     2694, 2694, 2694,  710, 1159, 1159, 1159, 1159, 2694, 2694,
-     1159, 1159,  717,  717,  717,  717, 2694,  717, 2694,  717,
-     1171, 1171, 1171, 1171, 2694, 2694, 1171, 1171,  724,  724,
-      724, 2694, 2694, 2694,  724, 1179, 1179, 1179, 1179, 2694,
-     2694, 1179, 1179,  729,  729,  729,  729, 2694,  729, 2694,
-      729, 1189, 1189, 1189, 1189, 2694, 2694, 1189, 1189,  735,
-      735,  735, 2694, 2694, 2694,  735, 1197, 1197, 1197, 1197,
-
-     2694, 2694, 1197, 1197, 1203, 1203, 1203, 1203, 2694, 2694,
-     1203, 1203, 1210, 1210, 1210, 1210, 2694, 2694, 1210, 1210,
-     1218, 1218, 1218, 1218, 2694, 2694, 1218, 1218,  951,  951,
-      951,  951,  951,  951,  951,  951,  951, 1392, 1392, 1392,
-     1392, 1392, 1392, 1392, 1392, 1392,  571,  571,  571,  571,
-     2694,  571, 2694,  571,  966,  966,  966,  966, 2694, 2694,
-      966,  966,  997,  997,  997,  997, 2694, 2694,  997,  997,
-      601,  601,  601, 2694, 2694, 2694,  601, 1007, 1007, 1007,
-     1007, 2694, 2694, 1007, 1007,  609,  609,  609, 2694, 2694,
-     2694,  609, 1023, 1023, 1023, 1023, 2694, 2694, 1023, 1023,
-
-      621,  621,  621,  621, 2694,  621, 2694,  621, 1031, 1031,
-     1031, 1031, 2694, 2694, 1031, 1031,  627,  627,  627,  627,
-     2694,  627, 2694,  627,  641,  641,  641,  641, 2694,  641,
-     2694,  641, 1056, 1056, 1056, 1056, 2694, 2694, 1056, 1056,
-     1064, 1064, 1064, 1064, 2694, 2694, 1064, 1064, 1072, 1072,
-     1072, 1072, 2694, 2694, 1072, 1072, 1078, 1078, 1078, 1078,
-     2694, 2694, 1078, 1078,  662,  662,  662, 2694, 2694, 2694,
-      662,  671,  671,  671, 2694, 2694, 2694,  671, 1116, 1116,
-     1116, 1116, 2694, 2694, 1116, 1116,  687,  687,  687, 2694,
-     2694, 2694,  687,  697,  697,  697, 2694, 2694, 2694,  697,
-
-     1139, 1139, 1139, 1139, 2694, 2694, 1139, 1139,  702,  702,
-      702, 2694, 2694, 2694,  702,  710,  710,  710, 2694, 2694,
-     2694,  710, 1159, 1159, 1159, 1159, 2694, 2694, 1159, 1159,
-      717,  717,  717, 2694, 2694, 2694,  717, 1171, 1171, 1171,
-     1171, 2694, 2694, 1171, 1171,  724,  724,  724, 2694, 2694,
-     2694,  724, 1179, 1179, 1179, 1179, 2694, 2694, 1179, 1179,
-     1189, 1189, 1189, 1189, 2694, 2694, 1189, 1189,  735,  735,
-      735, 2694, 2694, 2694,  735, 1197, 1197, 1197, 1197, 2694,
-     2694, 1197, 1197, 1203, 1203, 1203, 1203, 2694, 2694, 1203,
-     1203, 1210, 1210, 1210, 1210, 2694, 2694, 1210, 1210,  951,
-
-      951,  951,  951,  951,  951,  951,  951,  951, 1392, 1392,
-     1392, 1392, 1392, 1392, 1392, 1392, 1392,  966,  966,  966,
-      966, 2694, 2694,  966,  966,  997,  997,  997,  997, 2694,
-     2694,  997,  997,  601,  601,  601, 2694, 2694, 2694,  601,
-      609,  609,  609, 2694, 2694, 2694,  609, 1023, 1023, 1023,
-     1023, 2694, 2694, 1023, 1023, 1031, 1031, 1031, 1031, 2694,
-     2694, 1031, 1031, 1056, 1056, 1056, 1056, 2694, 2694, 1056,
-     1056, 1064, 1064, 1064, 1064, 2694, 2694, 1064, 1064, 1078,
-     1078, 1078, 1078, 2694, 2694, 1078, 1078,  662,  662,  662,
-     2694, 2694, 2694,  662,  671,  671,  671, 2694, 2694, 2694,
-
-      671, 1116, 1116, 1116, 1116, 2694, 2694, 1116, 1116,  687,
-      687,  687, 2694, 2694, 2694,  687,  697,  697,  697, 2694,
-     2694, 2694,  697, 1139, 1139, 1139, 1139, 2694, 2694, 1139,
-     1139,  702,  702,  702, 2694, 2694, 2694,  702,  710,  710,
-      710, 2694, 2694, 2694,  710,  717,  717,  717, 2694, 2694,
-     2694,  717, 1171, 1171, 1171, 1171, 2694, 2694, 1171, 1171,
-      724,  724,  724, 2694, 2694, 2694,  724, 1179, 1179, 1179,
-     1179, 2694, 2694, 1179, 1179, 1189, 1189, 1189, 1189, 2694,
-     2694, 1189, 1189,  735,  735,  735,  735, 2694,  735, 2694,
-      735, 1197, 1197, 1197, 1197, 2694, 2694, 1197, 1197, 1203,
-
-     1203, 1203, 1203, 2694, 2694, 1203, 1203, 1210, 1210, 1210,
-     1210, 2694, 2694, 1210, 1210,  951,  951,  951,  951,  951,
-      951,  951,  951,  951, 1392, 1392, 1392, 1392, 1392, 1392,
-     1392, 1392, 1392,  966,  966,  966,  966, 2694, 2694,  966,
-      966,  997,  997,  997,  997, 2694, 2694,  997,  997,  601,
-      601,  601, 2694, 2694, 2694,  601,  609,  609,  609,  609,
-     2694,  609, 2694,  609, 2362, 2362, 2362, 2362, 2362, 2362,
-     2362, 2362, 2362, 2363, 2363, 2363, 2363, 2363, 2363, 2363,
-     2363, 2363, 2406, 2406, 2406, 2406, 2406, 2406, 2406, 2406,
-     2406, 2409, 2409, 2409, 2409, 2409, 2409, 2409, 2409, 2409,
-
-     2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2439,
-     2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439,  221, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694
-
+     2701,  230,  231,  230,  230,  231,  230,  230,  231,  230,
+      230,  231,  230,  235,  231,  235,  241,  232,  238,  241,
+      232,  238, 2701,  233, 2701,  239,  233, 2701,  239,  236,
+      235,  231,  235,  562,  242,  244,  245,  242,  244,  245,
+      246,  247,  606,  246,  247,  562,  236,  251,  252,  563,
+      248,  244,  245,  248,  249,  565,  246,  244,  245,  713,
+      249,  564,  246,  251,  252,  583,  248,  231,  231,  231,
+      714,  564,  248,  231,  231,  231,  263,  231,  263,  263,
+      231,  263, 1613,  254,  263,  231,  263,  641, 1614,  254,
+      585,  253,  264,  598,  643,  264,  561,  561,  561,  594,
+
+      265,  561,  561,  561,  561,  561,  561,  253,  255,  256,
+      231,  256,  255,  255,  255,  255,  255,  255,  255,  257,
+      255,  255,  255,  625,  255,  259,  255,  260,  255,  263,
+      231,  263,  231,  231,  231,  231,  231,  231,  593,  263,
+      231,  263,  263,  231,  263,  265, 2701, 1615,  266,  565,
+      565,  266,  594,  255,  255,  264,  595,  565,  264,  263,
+      231,  263,  561,  561,  561,  564,  564,  561,  561,  561,
+      561,  561,  561,  564,  626,  267,  261,  255,  256,  231,
+      256,  255,  255,  255,  255,  255,  255,  255,  257,  255,
+      255,  255, 2701,  255,  259,  255,  260,  255,  263,  231,
+
+      263,  231,  231,  231,  231,  231,  231,  576,  263,  231,
+      263,  263,  231,  263,  267, 2701,  580,  268,  637, 1618,
+      268,  625,  255,  255,  265,  595,  680,  265,  231,  231,
+      231,  231,  231,  231,  263,  231,  263,  263,  231,  263,
+      263,  231,  263,  626,  269,  261,  681,  269,  565,  594,
+      267,  599,  565,  267,  596,  600,  270,  263,  231,  263,
+      597,  561,  561,  561,  564, 2701,  598,  601,  564,  594,
+      599,  642,  598,  270,  271,  272,  231,  272,  271,  271,
+      271,  271,  271,  271,  271,  273,  271,  271,  271, 1619,
+      271,  275,  271,  276,  271,  279,  231,  279,  279,  231,
+
+      279,  231,  231,  231,  593,  231,  231,  231,  279,  231,
+      279,  280,  623, 1631,  280, 1632,  602,  268,  594,  271,
+      271,  268,  588,  959,  280,  598,  624,  277,  271,  272,
+      231,  272,  271,  271,  271,  271,  271,  271,  271,  273,
+      271,  271,  271, 1398,  271,  275,  271,  276,  271,  279,
+      231,  279,  279,  231,  279,  279,  231,  279,  561,  561,
+      561,  244,  245,  612,  565,  280,  246,  756,  281,  595,
+      613,  281,  652,  271,  271,  685,  291, 1639,  686,  564,
+      564,  277,  282,  283,  231,  283,  282,  282,  282,  282,
+      282,  282,  282,  284,  282,  282,  282,  583,  282,  286,
+
+      282,  287,  282, 1643,  582,  292,  305,  231,  305,  305,
+      231,  305,  645,  231,  231,  231,  244,  245,  231,  231,
+      231,  246,  306,  626,  652,  306,  565,  282,  282,  307,
+      719,  291, 1644,  632,  307,  288,  657,  720,  289,  561,
+      561,  561,  564,  657,  290,  282,  283,  231,  283,  282,
+      282,  282,  282,  282,  282,  282,  284,  282,  282,  282,
+      292,  282,  286,  282,  287,  282,  305,  231,  305,  305,
+      231,  305,  305,  231,  305,  598,  305,  231,  305,  319,
+      231,  319,  306,  565,  565,  306,  565,  626,  308,  619,
+      282,  282,  308,  620,  598,  320,  727,  621,  288,  564,
+
+      564,  289,  564,  728,  570, 1650, 1656,  290,  293,  294,
+      231,  294,  293,  293,  293,  293,  293,  293,  293,  295,
+      293,  293,  293,  715,  293,  297,  293,  298,  293,  319,
+      231,  319,  330,  231,  330,  330,  231,  330,  715,  330,
+      231,  330,  330,  231,  330,  320,  571,  565,  331,  565,
+      565,  331,  572,  293,  293,  332,  573,  662,  332, 1657,
+     1658,  574,  299,  564,  300,  564,  564,  301,  561,  561,
+      561,  588,  302,  303,  293,  294,  231,  294,  293,  293,
+      293,  293,  293,  293,  293,  295,  293,  293,  293,  598,
+      293,  297,  293,  298,  293,  231,  231,  231,  231,  231,
+
+      231,  330,  231,  330,  582,  330,  231,  330,  330,  231,
+      330,  333, 1659,  565,  333,  565,  565,  334,  598,  293,
+      293,  334,  667, 1663,  335,  561,  561,  561,  299,  564,
+      300,  564,  564,  301,  561,  561,  561,  729,  302,  303,
+      309,  310,  231,  310,  309,  309,  309,  309,  309,  309,
+      309,  311,  309,  309,  309, 1669,  309,  313,  309,  314,
+      309,  330,  231,  330,  231,  231,  231,  231,  231,  231,
+      689,  330,  231,  330,  330,  231,  330,  335,  687, 1673,
+      336,  690,  691,  336,  587,  309,  309,  332,  565,  565,
+      332,  688,  315,  561,  561,  561,  692,  316,  561,  561,
+
+      561,  561,  561,  561,  564,  564,  317,  309,  310,  231,
+      310,  309,  309,  309,  309,  309,  309,  309,  311,  309,
+      309,  309,  763,  309,  313,  309,  314,  309,  231,  231,
+      231,  231,  231,  231,  330,  231,  330,  764,  330,  231,
+      330,  330,  231,  330,  337,  769,  782,  337,  770,  783,
+      335, 1676,  309,  309,  335,  565,  565,  338, 1678,  315,
+      561,  561,  561,  702,  316,  561,  561,  561,  561,  561,
+      561,  564,  564,  317,  321,  322,  231,  322,  321,  321,
+      321,  321,  321,  321,  321,  323,  321,  321,  321, 1679,
+      321,  325,  321,  326,  321,  330,  231,  330,  231,  231,
+
+      231,  231,  231,  231, 1680,  330,  231,  330,  330,  231,
+      330,  338,  565,  782,  339,  799,  796,  339,  783,  321,
+      321,  340,  740, 1684,  340,  561,  561,  561,  564,  675,
+      327,  561,  561,  561,  561,  561,  561, 1687,  328,  321,
+      322,  231,  322,  321,  321,  321,  321,  321,  321,  321,
+      323,  321,  321,  321,  756,  321,  325,  321,  326,  321,
+      231,  231,  231,  231,  231,  231,  330,  231,  330,  587,
+      330,  231,  330,  330,  231,  330,  341,  676,  565,  341,
+      626, 1249,  338,  787,  321,  321,  338,  788,  565,  342,
+      330,  231,  330, 1250,  564,  327,  561,  561,  561,  561,
+
+      561,  561, 1689,  328,  564,  598,  342,  343,  344,  231,
+      344,  343,  343,  343,  343,  343,  343,  343,  345,  343,
+      343,  343, 1696,  343,  347,  343,  348,  343,  353,  231,
+      353,  353,  231,  353,  231,  231,  231, 1703,  231,  231,
+      231,  561,  561,  561,  354,  565,  565,  354,  565,  565,
+      307, 1704,  343,  343,  307,  707,  734,  349,  561,  561,
+      561,  564,  564,  350,  564,  564,  351,  343,  344,  231,
+      344,  343,  343,  343,  343,  343,  343,  343,  345,  343,
+      343,  343, 1705,  343,  347,  343,  348,  343,  353,  231,
+      353,  353,  231,  353,  353,  231,  353, 1707,  353,  231,
+
+      353,  561,  561,  561,  354,  565,  565,  354,  799,  565,
+      355,  796,  343,  343,  355, 1721,  752,  349,  561,  561,
+      561,  564,  564,  350,  721,  564,  351,  356,  357,  231,
+      357,  356,  356,  356,  356,  356,  356,  356,  358,  356,
+      356,  356, 1725,  356,  360,  356,  361,  356,  365,  231,
+      365,  365,  231,  365,  231,  231,  231, 1260,  231,  231,
+      231,  365,  231,  365,  366,  565,  565,  366, 1401, 1250,
+      307,  722,  356,  356,  307,  598, 1726,  366,  561,  561,
+      561,  564,  564,  362,  561,  561,  561,  561,  561,  561,
+      561,  561,  561,  363,  356,  357,  231,  357,  356,  356,
+
+      356,  356,  356,  356,  356,  358,  356,  356,  356, 1719,
+      356,  360,  356,  361,  356,  365,  231,  365,  365,  231,
+      365,  365,  231,  365, 1727,  377,  231,  377,  377,  231,
+      377,  366,  867,  959,  367,  868,  789,  367, 1127,  356,
+      356,  378,  790, 1128,  378,  561,  561,  561,  791,  961,
+      362,  561,  561,  561,  561,  561,  561,  561,  561,  561,
+      363,  368,  369,  231,  369,  368,  368,  368,  368,  368,
+      368,  368,  370,  368,  368,  368, 1728,  368,  372,  368,
+      373,  368,  388,  231,  388,  388,  231,  388,  402,  231,
+      402, 1730,  402,  231,  402,  231,  231,  231,  389, 1731,
+
+     1732,  389, 1733,  792,  403,  875,  368,  368,  403,  876,
+     1734,  404,  561,  561,  561,  747,  793,  374,  561,  561,
+      561,  375,  368,  369,  231,  369,  368,  368,  368,  368,
+      368,  368,  368,  370,  368,  368,  368, 1401,  368,  372,
+      368,  373,  368,  231,  231,  231,  402,  231,  402,  402,
+      231,  402,  748,  402,  231,  402,  402,  231,  402,  404,
+      959, 1737,  403,  797, 1228,  403,  626,  368,  368,  405,
+     1720, 1738,  405,  561,  561,  561,  793,  763,  374,  561,
+      561,  561,  375,  379,  380,  231,  380,  379,  379,  379,
+      379,  379,  379,  379,  381,  379,  379,  379, 1741,  379,
+
+      383,  379,  384,  379,  421,  231,  421,  421,  231,  421,
+      437,  231,  437,  811,  437,  231,  437,  448,  231,  448,
+      422, 1742,  959,  422, 1743, 1744,  438, 1746,  379,  379,
+      438,  959, 1747,  449,  561,  561,  561,  561,  561,  561,
+      561,  561,  561,  385,  561,  561,  561, 1561, 1718,  386,
+      379,  380,  231,  380,  379,  379,  379,  379,  379,  379,
+      379,  381,  379,  379,  379, 1750,  379,  383,  379,  384,
+      379,  448,  231,  448,  461,  231,  461,  461,  231,  461,
+     1260,  231,  231,  231,  231,  231,  231,  449, 1753, 1757,
+      462, 1758, 1284,  462, 1761,  379,  379,  307, 1762, 1763,
+
+      307,  561,  561,  561,  561,  561,  561,  561,  561,  561,
+      385,  561,  561,  561, 1766, 1770,  386,  390,  391,  231,
+      391,  390,  390,  390,  390,  390,  390,  390,  392,  390,
+      390,  390, 1771,  390,  394,  390,  395,  390,  461,  231,
+      461,  461,  231,  461,  461,  231,  461, 1759,  461,  231,
+      461,  561,  561,  561,  462, 1760, 1773,  462,  797,  565,
+      463,  797,  390,  390,  463,  396,  761,  397,  561,  561,
+      561,  841, 1764,  398,  844,  564,  767,  767,  767,  399,
+     1765, 1787,  400,  390,  391,  231,  391,  390,  390,  390,
+      390,  390,  390,  390,  392,  390,  390,  390, 1788,  390,
+
+      394,  390,  395,  390,  473,  231,  473,  473,  231,  473,
+      231,  231,  231,  801,  231,  231,  231, 1789, 1790,  790,
+      474, 1791, 1792,  474,  797,  802,  475, 1103,  390,  390,
+      475,  396,  801,  397,  768,  789, 1104,  845,  790,  398,
+     1793,  790, 1797, 1105,  791,  399, 1803,  802,  400,  406,
+      407,  231,  407,  406,  406,  406,  406,  406,  406,  406,
+      408,  406,  406,  406,  409,  406,  410,  406,  411,  406,
+      409,  409,  409,  409,  409,  409,  409,  409,  409,  409,
+      409,  409,  409,  409,  409,  409,  409,  409,  409,  409,
+      409,  409,  409,  409,  406,  406,  409,  412,  413,  414,
+
+      409,  409,  409,  409,  409,  415,  409,  416,  409,  409,
+      409,  417,  409,  418,  419,  409,  409,  409,  409,  409,
+      409,  423,  424,  231,  424,  423,  423,  423,  423,  423,
+      423,  423,  425,  423,  423,  423,  426,  423,  427,  423,
+      428,  423,  426,  426,  426,  426,  426,  426,  426,  426,
+      426,  426,  426,  426,  426,  426,  426,  426,  426,  426,
+      426,  426,  426,  426,  426,  426,  423,  423,  426,  429,
+      430,  431,  426,  426,  426,  426,  426,  432,  426,  433,
+      426,  426,  426,  434,  426,  426,  435,  426,  426,  426,
+      426,  426,  426,  439,  440,  231,  440,  439,  439,  439,
+
+      439,  439,  439,  439,  441,  439,  439,  439, 1804,  439,
+      443,  439,  444,  439,  473,  231,  473,  473,  231,  473,
+      473,  231,  473, 1805,  473,  231,  473,  808,  808,  808,
+      474, 1810, 1814,  474, 1815,  801,  476, 1816,  439,  439,
+      476,  790, 1818,  445,  809, 1822, 1823,  826, 1824,  446,
+      439,  440,  231,  440,  439,  439,  439,  439,  439,  439,
+      439,  441,  439,  439,  439, 1825,  439,  443,  439,  444,
+      439,  487,  231,  487,  487,  231,  487,  231,  231,  231,
+     1826,  231,  231,  231,  816,  816,  816,  488, 1601, 1829,
+      488, 1836, 1838,  475, 1602,  439,  439,  475, 1603, 1847,
+
+      445,  817, 1604,  976,  976,  976,  446,  450,  451,  231,
+      451,  450,  450,  450,  450,  450,  450,  450,  452,  450,
+      450,  450, 1848,  450,  454,  450,  455,  450,  487,  231,
+      487,  487,  231,  487,  487,  231,  487, 1849,  487,  231,
+      487,  499,  231,  499,  488, 1851, 1857,  488, 1863,  959,
+      489, 1864,  450,  450,  489, 1854,  456,  500,  767,  767,
+      767, 1867,  963,  457, 1868,  458,  977,  996,  996,  996,
+     1401, 1869,  459,  450,  451,  231,  451,  450,  450,  450,
+      450,  450,  450,  450,  452,  450,  450,  450, 1873,  450,
+      454,  450,  455,  450,  499,  231,  499,  511,  231,  511,
+
+      511,  231,  511, 1877,  231,  231,  231,  231,  231,  231,
+      500, 1879, 1880,  512, 1881, 1856,  512, 1885,  450,  450,
+      475, 1891,  456,  475,  976,  976,  976, 1892, 1893,  457,
+      977,  458, 1894,  996,  996,  996, 1895, 1896,  459,  464,
+      465,  231,  465,  464,  464,  464,  464,  464,  464,  464,
+      466,  464,  464,  464, 1897,  464,  468,  464,  469,  464,
+      511,  231,  511,  511,  231,  511,  511,  231,  511, 1898,
+      511,  231,  511,  525,  231,  525,  512, 1899, 1900,  512,
+     1906, 1915,  513, 1916,  464,  464,  513, 1049, 1921,  526,
+      470, 1008, 1008, 1008, 1917, 1009, 1049, 1922, 1010,  976,
+
+      976,  976, 1918, 1923,  471,  464,  465,  231,  465,  464,
+      464,  464,  464,  464,  464,  464,  466,  464,  464,  464,
+     1924,  464,  468,  464,  469,  464,  525,  231,  525,  231,
+      231,  231,  231,  231,  231, 1919,  525,  231,  525,  525,
+      231,  525,  526, 1920, 1928,  527, 1929, 1930,  527, 1932,
+      464,  464,  526, 1933, 1934,  526,  470, 1018, 1018, 1018,
+     1935, 1019, 1938, 1942, 1020,  996,  996,  996, 1943, 1948,
+      471,  477,  478,  231,  478,  477,  477,  477,  477,  477,
+      477,  477,  479,  477,  477,  477, 1949,  477,  481,  477,
+      482,  477,  525,  231,  525,  525,  231,  525,  537,  231,
+
+      537, 1401,  537,  231,  537,  547,  231,  547,  528, 1605,
+     1950,  528, 1944, 1951,  538, 1606,  477,  477,  538, 1607,
+     1945,  548,  483, 1608, 1953,  484, 1041, 1041, 1041, 1961,
+     1042, 1971, 1855, 1043, 1401, 1401,  485,  477,  478,  231,
+      478,  477,  477,  477,  477,  477,  477,  477,  479,  477,
+      477,  477, 1975,  477,  481,  477,  482,  477,  547,  231,
+      547,  231,  231,  231,  231,  231,  231, 1946,  547,  231,
+      547,  547,  231,  547,  548, 1947, 1966,  307, 1976, 1977,
+      307, 1967,  477,  477,  548, 1980, 1984,  548,  483, 1985,
+     1986,  484, 1058, 1058, 1058, 1987, 1059, 1988, 1989, 1060,
+
+     1990, 1991,  485,  490,  491,  231,  491,  490,  490,  490,
+      490,  490,  490,  490,  492,  490,  490,  490, 1992,  490,
+      494,  490,  495,  490,  547,  231,  547,  547,  231,  547,
+      559,  231,  559, 1993,  559,  231,  559,  637, 1995, 1996,
+      549, 2701, 2001,  549, 2002,  637,  560,  638,  490,  490,
+      560, 1413, 1413, 1413,  496,  644, 1415, 1415, 1415,  497,
+      490,  491,  231,  491,  490,  490,  490,  490,  490,  490,
+      490,  492,  490,  490,  490,  639,  490,  494,  490,  495,
+      490,  640, 2003,  639,  641,  640,  586, 2004,  641, 2005,
+      642,  643, 2006, 2007,  646,  643,  598,  832,  832,  832,
+
+      592, 2009, 1416, 2010, 2013,  490,  490, 2014, 1066, 1066,
+     1066,  496, 1067, 2017,  833, 1068,  497,  501,  502,  231,
+      502,  501,  501,  501,  501,  501,  501,  501,  503,  501,
+      501,  501, 2018,  501,  505,  501,  506,  501,  847,  847,
+      847,  852,  852,  852,  857,  857,  857,  869,  869,  869,
+      879,  879,  879, 2019, 2020,  848, 2024, 2025,  853, 2026,
+     2027,  858,  501,  501,  870, 2028, 2029,  880,  507, 2030,
+     2031,  508, 1074, 1074, 1074, 2033, 1075, 2055, 2056, 1076,
+     2057, 2058,  509,  501,  502,  231,  502,  501,  501,  501,
+      501,  501,  501,  501,  503,  501,  501,  501, 1401,  501,
+
+      505,  501,  506,  501,  882,  882,  882,  897,  897,  897,
+      905,  905,  905,  910,  910,  910,  930,  930,  930, 2059,
+     2064,  883, 2065, 2066,  898, 2067, 2068,  906,  501,  501,
+      911, 2069, 1401,  931,  507, 2052, 2070,  508, 1091, 1091,
+     1091, 2071, 1092, 2072, 2073, 1093, 2075, 2076,  509,  514,
+      515,  231,  515,  514,  514,  514,  514,  514,  514,  514,
+      516,  514,  514,  514, 2051,  514,  518,  514,  519,  514,
+      949,  949,  949,  953,  953,  953, 2080, 2081,  972,  972,
+      972,  972,  972,  972,  808,  808,  808,  950, 2082, 2083,
+      954, 1003, 1003, 1003,  514,  514,  974, 2086, 2087,  974,
+
+     2091,  809,  520, 2094,  521, 2095,  522, 2098, 2102, 1005,
+     1419, 1419, 1419, 2103,  523,  514,  515,  231,  515,  514,
+      514,  514,  514,  514,  514,  514,  516,  514,  514,  514,
+     2104,  514,  518,  514,  519,  514, 2105, 2106,  975, 1013,
+     1013, 1013, 2109, 2110, 1003, 1003, 1003, 1013, 1013, 1013,
+      816,  816,  816, 2127, 1021, 1021, 1021, 1015, 2128, 1401,
+      514,  514, 1005,  959, 2129, 1015, 2130,  817,  520, 2140,
+      521, 1022,  522, 1422, 1422, 1422, 1431, 1431, 1431, 2141,
+      523,  529,  530,  231,  530,  529,  529,  529,  529,  529,
+      529,  529,  531,  529,  529,  529, 2125,  529,  533,  529,
+
+      534,  529, 2124, 1006, 1024, 1024, 1024, 1029, 1029, 1029,
+     1016, 1037, 1037, 1037, 1037, 1037, 1037, 2142, 1029, 1029,
+     1029, 1025,  832,  832,  832, 1031,  529,  529, 2143, 1039,
+     2144, 2145, 1039, 1106, 1106, 1106, 1031, 1107, 2146,  833,
+     1108, 1110, 1110, 1110, 2147, 1111, 2148, 2149, 1112,  535,
+      529,  530,  231,  530,  529,  529,  529,  529,  529,  529,
+      529,  531,  529,  529,  529, 1032,  529,  533,  529,  534,
+      529, 1045, 1045, 1045, 1045, 1045, 1045, 1040, 2151, 2152,
+      847,  847,  847, 1062, 1062, 1062, 1062, 1062, 1062, 1047,
+     2154, 2160, 1047, 2161, 2162,  529,  529,  848,  852,  852,
+
+      852, 1064, 2166, 2133, 1064, 1130, 1130, 1130, 1401, 1131,
+     2174, 1048, 1132, 2134, 2175,  853, 2135, 2176,  535,  539,
+      540,  231,  540,  539,  539,  539,  539,  539,  539,  539,
+      541,  539,  539,  539, 2198,  539,  543,  539,  544,  539,
+     1070, 1070, 1070, 1070, 1070, 1070,  857,  857,  857, 2136,
+     2126, 1065, 1078, 1078, 1078, 1078, 1078, 1078, 1072, 2137,
+     2199, 1072, 2138,  858,  539,  539, 2200, 1142, 1142, 1142,
+     1080, 1143, 2204, 1080, 1144,  545,  539,  540,  231,  540,
+      539,  539,  539,  539,  539,  539,  539,  541,  539,  539,
+      539,  959,  539,  543,  539,  544,  539, 2205, 1084, 1084,
+
+     1084, 1084, 1084, 1084, 2206, 1096, 1096, 1096, 1073,  869,
+      869,  869, 1096, 1096, 1096, 1081, 1086, 2207, 2208, 1086,
+     2194,  539,  539, 1098, 2209, 2213,  870, 1454, 1454, 1454,
+     1098, 2214,  545,  550,  551,  231,  551,  550,  550,  550,
+      550,  550,  550,  550,  552,  550,  550,  550, 2215,  550,
+      554,  550,  555,  550,  879,  879,  879,  882,  882,  882,
+     1113, 1113, 1113, 2216, 2217, 1087, 1122, 1122, 1122, 2218,
+     2210,  880, 1099, 2219,  883, 2184, 1401, 1114,  550,  550,
+     1122, 1122, 1122, 2211, 1124, 2185, 1150, 1150, 1150,  556,
+     1151, 2186, 2220, 1152, 1465, 1465, 1465, 1401, 1124, 2223,
+
+     2231,  557,  550,  551,  231,  551,  550,  550,  550,  550,
+      550,  550,  550,  552,  550,  550,  550, 2195,  550,  554,
+      550,  555,  550,  897,  897,  897, 1133, 1133, 1133, 2232,
+     2233, 1137, 1137, 1137, 1137, 1137, 1137, 1125, 2196, 2234,
+      898, 2187, 2241, 1134,  905,  905,  905,  550,  550, 1139,
+     2244, 2188, 1139, 2251, 1145, 1145, 1145, 2189,  556, 2252,
+     2253,  906, 2254, 2255, 1145, 1145, 1145,  910,  910,  910,
+      557,  565, 1147, 1156, 1156, 1156, 2256, 2263,  580, 1156,
+     1156, 1156, 1147,  959,  911, 1140, 2264,  564,  581, 2265,
+     2266, 1158, 1160, 1160, 1160, 2267, 2268, 1158, 1413, 1413,
+
+     1413, 1162, 1162, 1162, 2701, 2701, 2701, 2269, 2270, 1161,
+     1165, 1165, 1165, 2271, 2272,  582,  583,  584, 1163, 1401,
+     2275, 2701,  585,  586, 1148,  587,  588, 2276, 1167,  589,
+     2258,  590,  591,  592, 1159, 1165, 1165, 1165, 1170, 1170,
+     1170, 2701, 2701, 2701, 1174, 1174, 1174, 2277, 2701, 2701,
+     2701, 2278, 2279, 1167, 2259, 1171, 2280, 2281, 2701, 2282,
+     2289, 1175, 1164, 2290, 2291, 2701, 1177, 1177, 1177, 2292,
+     1177, 1177, 1177,  930,  930,  930, 1182, 1182, 1182, 2293,
+     1183, 2294, 2298, 1184, 1179, 1185, 1185, 1185, 1179, 2307,
+      931, 1172, 1185, 1185, 1185, 1168, 1189, 1189, 1189, 2701,
+
+     2701, 2701, 2299, 1187, 2301, 1173, 1176, 1180, 2308, 2309,
+     1187, 2310, 2300, 1190, 2302, 2311, 2701, 1193, 1193, 1193,
+     1195, 1195, 1195, 1195, 1195, 1195, 1203, 1203, 1203, 2303,
+     1209, 1209, 1209, 2305, 1194, 1203, 1203, 1203, 1197, 2304,
+     2312, 1197, 2323, 2306, 1205, 2324, 2325, 1188, 1211, 1191,
+     1209, 1209, 1209, 1205,  949,  949,  949, 1213, 1213, 1213,
+     2326, 1214, 2327, 1192, 1215, 1216, 1216, 1216, 1211,  959,
+     2328,  950, 1216, 1216, 1216,  953,  953,  953, 1220, 1220,
+     1220, 2329, 1221, 1218, 2330, 1222, 1224, 1224, 1224, 2334,
+     1218, 2335,  954, 1198, 1224, 1224, 1224, 2336, 1206,  972,
+
+      972,  972, 2337, 2315, 1226,  972,  972,  972,  972,  972,
+      972, 2338, 1226, 1212, 1262, 1262, 1262,  974, 1003, 1003,
+     1003, 2339, 2343,  974, 2344, 2345,  974, 1003, 1003, 1003,
+     2348, 1263, 1219, 1003, 1003, 1003, 1005, 1265, 1265, 1265,
+     1008, 1008, 1008, 2353, 1009, 1005, 2354, 1010, 2701, 2701,
+     2701, 1005, 2355, 2356, 1266, 1236, 2357, 1227, 1013, 1013,
+     1013, 1013, 1013, 1013, 2358, 2701, 1013, 1013, 1013, 2359,
+     1018, 1018, 1018, 2360, 1019, 2361, 1015, 1020, 2362, 1015,
+     2363, 2364, 1264, 2371, 1015, 1021, 1021, 1021, 1271, 1271,
+     1271, 2372, 1272, 2373, 2374, 1273, 2375, 1274, 1274, 1274,
+
+     2376, 2377, 1022, 1024, 1024, 1024, 2378,  959, 1267, 1280,
+     1280, 1280, 2379, 1269, 1275, 1276, 1276, 1276, 2380, 1277,
+     1025, 2381, 1278, 1029, 1029, 1029, 1281, 1029, 1029, 1029,
+     1029, 1029, 1029, 1286, 1286, 1286, 1037, 1037, 1037, 2382,
+     2383, 1031, 1037, 1037, 1037, 1031, 2384, 2387, 1031, 2365,
+     1287, 1037, 1037, 1037, 1039, 1041, 1041, 1041, 2388, 1042,
+     1039, 2389, 1043, 1045, 1045, 1045, 1045, 1045, 1045, 1039,
+     1291, 1291, 1291, 1058, 1058, 1058, 2393, 1059, 2400, 2401,
+     1060, 1047, 2402, 2403, 1047, 1062, 1062, 1062, 1292, 1283,
+     1062, 1062, 1062, 1062, 1062, 1062, 2404, 2405, 1289, 2406,
+
+     1066, 1066, 1066, 1064, 1067, 2407, 2408, 1068, 1064, 2409,
+     2410, 1064, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070,
+     1070, 1074, 1074, 1074, 2411, 1075,  959, 2419, 1076, 2420,
+     1072, 2421, 2422, 1072, 2423, 2424, 1072, 1306, 1306, 1306,
+     1078, 1078, 1078, 1078, 1078, 1078, 1078, 1078, 1078, 1309,
+     1309, 1309, 2414, 1303, 1307, 2701, 2701, 2701, 1080, 2425,
+     2426, 1080, 2414, 2417, 1080, 2427, 1310, 1084, 1084, 1084,
+     2428, 2412, 2701, 1084, 1084, 1084, 2415, 2429, 1305, 1084,
+     1084, 1084, 2434, 1311, 2439, 1086, 1315, 1315, 1315, 2440,
+     2441, 1086, 1091, 1091, 1091, 2442, 1092, 1086, 2430, 1093,
+
+     1096, 1096, 1096, 1316, 1096, 1096, 1096, 1096, 1096, 1096,
+     2431, 2432, 1308, 1106, 1106, 1106, 2445, 1107, 1098, 2445,
+     1108, 2414, 1098, 2433, 2448, 1098, 1326, 1326, 1326, 1110,
+     1110, 1110, 2449, 1111, 2450, 2415, 1112, 1113, 1113, 1113,
+     1122, 1122, 1122, 1327, 1312, 1328, 1328, 1328, 2451, 1329,
+      959, 2460, 1330, 2435, 1114, 1122, 1122, 1122, 1124, 1122,
+     1122, 1122, 1130, 1130, 1130, 2436, 1131, 1401, 1402, 1132,
+     2414, 1319, 2437, 1124, 1133, 1133, 1133, 1124, 1343, 1343,
+     1343, 2417, 1344, 2463, 2438, 1345, 1137, 1137, 1137, 2468,
+     2443, 1134, 1137, 1137, 1137, 1137, 1137, 1137, 1142, 1142,
+
+     1142, 2471, 1143, 2445, 1139, 1144, 1145, 1145, 1145, 2473,
+     1139, 2445, 2458, 1139, 1145, 1145, 1145, 1145, 1145, 1145,
+     1156, 1156, 1156, 2474, 1147, 1338, 1150, 1150, 1150, 2475,
+     1151, 2459, 1147, 1152, 2476, 1147, 2477, 2461, 1158, 1156,
+     1156, 1156, 1156, 1156, 1156, 2487, 1348, 1160, 1160, 1160,
+     2488, 1356, 1356, 1356, 2489, 1357, 2462, 1158, 1358, 2490,
+     1158, 1162, 1162, 1162, 1161, 1359, 1359, 1359, 2491, 1360,
+     2492, 2466, 1361, 1165, 1165, 1165, 2469, 2496, 1163, 1165,
+     1165, 1165, 2497, 1350, 1165, 1165, 1165, 1170, 1170, 1170,
+     2467, 1167, 1365, 1365, 1365, 2470, 1366, 1167, 2498, 1367,
+
+     2499, 1355, 1167, 2500, 1171, 1174, 1174, 1174, 1370, 1370,
+     1370, 2501, 1371, 2503, 2504, 1372, 1177, 1177, 1177, 1177,
+     1177, 1177, 1175, 1177, 1177, 1177, 1182, 1182, 1182, 2505,
+     1183, 2510, 2511, 1184, 1179, 2512, 2506, 1179, 1185, 1185,
+     1185, 1179, 1185, 1185, 1185, 1185, 1185, 1185, 2507, 2513,
+     1363, 1189, 1189, 1189, 2514, 2515, 1187, 1377, 1377, 1377,
+     1187, 1378, 2508, 1187, 1379, 1193, 1193, 1193, 1190, 1382,
+     1382, 1382, 2516, 1383, 2509, 2517, 1384, 1195, 1195, 1195,
+     2518, 2519, 1194, 1195, 1195, 1195, 1374, 1195, 1195, 1195,
+     1387, 1387, 1387, 2520, 2521, 1197, 1203, 1203, 1203,  959,
+
+     2523, 1197, 2524, 2525, 1376, 1197, 2526, 1388, 1203, 1203,
+     1203, 1203, 1203, 1203, 1205, 1209, 1209, 1209, 1209, 1209,
+     1209, 1209, 1209, 1209, 2522, 2527, 1205, 2528, 2529, 1205,
+     1213, 1213, 1213, 1211, 1214, 2530, 1211, 1215, 2531, 1211,
+     1216, 1216, 1216, 1216, 1216, 1216, 2532, 2533, 1385, 1216,
+     1216, 1216, 1220, 1220, 1220, 2534, 1221, 2535, 1218, 1222,
+     2536, 1218, 1224, 1224, 1224, 2537, 2538, 1218, 1224, 1224,
+     1224, 1391, 2539, 2540, 1394, 1224, 1224, 1224,  959, 2542,
+     1226, 1400, 1400, 1400, 2543, 2544, 1226,  972,  972,  972,
+     1262, 1262, 1262, 1226, 1434, 1434, 1434, 2541, 1435, 1401,
+
+     1402, 1436, 1003, 1003, 1003,  974, 2545, 1263, 1395, 1265,
+     1265, 1265, 1438, 1438, 1438, 2546, 1439, 2547, 2548, 1440,
+     1005, 1013, 1013, 1013, 2549, 2550, 1266, 1271, 1271, 1271,
+     2551, 1272, 2552, 2553, 1273, 1397, 1274, 1274, 1274, 1015,
+     1445, 1445, 1445, 2554, 1446, 2555, 2556, 1447, 1280, 1280,
+     1280, 2557, 1407, 1275, 1276, 1276, 1276, 2559, 1277, 1437,
+      959, 1278, 1449, 1449, 1449, 1281, 1450, 2560, 2561, 1451,
+     1443, 1029, 1029, 1029, 1286, 1286, 1286, 1456, 1456, 1456,
+     2558, 1457, 2562, 2563, 1458, 1459, 1459, 1459, 2564, 1031,
+     2565, 1287, 1037, 1037, 1037, 1291, 1291, 1291, 1466, 1466,
+
+     1466, 2566, 1460, 1472, 1472, 1472, 1062, 1062, 1062, 2567,
+     1039, 2568, 2569, 1292, 1070, 1070, 1070, 1306, 1306, 1306,
+     1473, 1453, 2570, 2571, 1064, 2572, 1477, 1477, 1477, 2573,
+     1478, 2574, 1072, 1479, 1307, 1078, 1078, 1078, 1309, 1309,
+     1309, 1461,  959, 2576, 1416, 1481, 1481, 1481, 2575, 1482,
+     2577, 2578, 1483, 1080, 2579, 1310, 1084, 1084, 1084, 1315,
+     1315, 1315, 2580, 1488, 1488, 1488, 2581, 1489, 2582, 1474,
+     1490, 1491, 1491, 1491, 1086, 2583, 1316, 1476, 1493, 1493,
+     1493, 1096, 1096, 1096, 1500, 1500, 1500, 2584, 1492, 1326,
+     1326, 1326, 2585, 2586, 1480, 1494, 1504, 1504, 1504, 1098,
+
+     1505, 1501, 2587, 1506, 2589, 2590, 1327, 1328, 1328, 1328,
+     2591, 1329, 2592, 2593, 1330, 2594, 1485, 1507, 1507, 1507,
+     1122, 1122, 1122,  959, 1495, 1517, 1517, 1517, 1343, 1343,
+     1343, 2595, 1344, 2596, 1508, 1345, 2598, 2588, 1124, 1521,
+     1521, 1521, 1518, 1137, 1137, 1137, 1496, 1145, 1145, 1145,
+     1530, 1530, 1530, 1156, 1156, 1156, 1522, 1165, 1165, 1165,
+     2599, 1139, 1356, 1356, 1356, 1147, 1357, 1531, 2600, 1358,
+     2601, 1158, 1359, 1359, 1359, 1167, 1360, 2602, 2603, 1361,
+     1415, 1415, 1415, 2604, 1515, 1365, 1365, 1365, 2605, 1366,
+     2608, 2609, 1367, 1370, 1370, 1370, 1532, 1371, 2610, 2611,
+
+     1372, 1177, 1177, 1177, 2612, 2613, 1524,  959,  959, 1533,
+     1600,  959, 1526, 1185, 1185, 1185, 1377, 1377, 1377, 1179,
+     1378, 2622, 1535, 1379,  959,  959, 1536,  959, 1382, 1382,
+     1382, 1187, 1383, 1598,  959, 1384, 1195, 1195, 1195, 1387,
+     1387, 1387, 1547, 1547, 1547,  959, 1548, 2614, 2660, 1549,
+     1203, 1203, 1203,  959, 1197, 2616, 1388, 1554, 1554, 1554,
+     2615, 1540, 1209, 1209, 1209, 1558, 1558, 1558, 1205, 1542,
+     1216, 1216, 1216, 2628, 1555, 1224, 1224, 1224,  959, 2624,
+     1211, 2617, 1559, 1545, 1400, 1400, 1400,  959, 1218,  972,
+      972,  972, 2618, 1226, 1415, 1415, 1415,  959, 2625, 1552,
+
+     2619,  959, 1401, 1575, 1575, 1575,  959,  974, 1419, 1419,
+     1419, 1422, 1422, 1422, 1580, 1580, 1580, 1583, 1583, 1583,
+     1597, 2620, 1557, 1431, 1431, 1431, 1596, 1594, 1556, 1590,
+     1590, 1590, 1003, 1003, 1003, 1562, 1560,  959, 1434, 1434,
+     1434, 1567, 1435, 2629, 2621, 1436, 1013, 1013, 1013, 2626,
+     1005, 1563, 1438, 1438, 1438,  959, 1439,  959,  959, 1440,
+     1454, 1454, 1454, 1584, 1015, 1445, 1445, 1445, 2627, 1446,
+     2623,  959, 1447,  959,  959, 1591,  959, 1581, 1449, 1449,
+     1449,  959, 1450, 2676, 1593, 1451, 1029, 1029, 1029, 1456,
+     1456, 1456, 2630, 1457,  959, 2631, 1458, 1595, 1592, 1459,
+
+     1459, 1459, 1589,  959, 1031, 1609, 1609, 1609, 2634, 1610,
+     2666, 2632, 1611, 1037, 1037, 1037, 1460, 1465, 1465, 1465,
+     1466, 1466, 1466, 1616, 1616, 1616, 1616, 1616, 1616, 2635,
+      959, 1039, 1580, 1580, 1580, 1472, 1472, 1472, 1620, 1620,
+     1620, 1588, 1621, 2633,  959, 1622, 1599, 1062, 1062, 1062,
+      959,  959, 1473, 1624, 1624, 1624, 1070, 1070, 1070, 1477,
+     1477, 1477, 2640, 1478, 1612, 1064, 1479, 1078, 1078, 1078,
+     1625, 1481, 1481, 1481, 1072, 1482, 2641,  959, 1483, 1628,
+     1628, 1628, 1084, 1084, 1084, 1080, 1617, 2638, 2639, 1581,
+     1491, 1491, 1491, 2642, 1623, 1617, 1629, 1488, 1488, 1488,
+
+     1086, 1489,  959, 1626, 1490, 2643,  959, 1492, 1633, 1633,
+     1633,  959, 1634, 2698,  959, 1635, 1493, 1493, 1493, 1636,
+     1636, 1636, 2636, 1637,  959,  959, 1638,  959, 1640, 1640,
+     1640,  959, 1627, 1494, 1642, 1642, 1642, 1500, 1500, 1500,
+     1645, 1645, 1645, 2658, 1646, 1630, 1641, 1647, 1648, 1648,
+     1648, 1504, 1504, 1504, 1501, 1505, 2637, 2654, 1506, 1507,
+     1507, 1507, 1651, 1651, 1651, 1649, 1652, 2648, 2659, 1653,
+     1654, 1654, 1654, 1660, 1660, 1660, 1508, 1122, 1122, 1122,
+     1517, 1517, 1517, 1587, 1664, 1664, 1664, 1655, 1665, 1586,
+     1661, 1666, 1667, 1667, 1667, 1124, 1585, 1518, 1521, 1521,
+
+     1521, 1670, 1670, 1670,  959, 1671,  959,  959, 1672, 1668,
+     1674, 1674, 1674,  959, 1582, 1522, 1145, 1145, 1145, 1530,
+     1530, 1530, 1681, 1681, 1681,  959, 1682, 2674, 1675, 1683,
+     1685, 1685, 1685,  959, 1147,  959, 1531, 1165, 1165, 1165,
+     2655, 2644, 1662, 1690, 1690, 1690, 2649, 2646, 1686, 1692,
+     1692, 1692, 2701, 2701, 2701, 1167, 1177, 1177, 1177, 2647,
+     1691, 1185, 1185, 1185,  959,  959, 1693, 1677, 2645, 2701,
+     1698, 1698, 1698,  959, 1179, 1700, 1700, 1700, 1579, 1187,
+     1195, 1195, 1195, 1203, 1203, 1203,  959, 1699, 1688, 1547,
+     1547, 1547, 1701, 1548, 1578,  959, 1549, 2656, 1197, 2652,
+
+     2653, 1205, 1554, 1554, 1554, 2657,  959, 1697, 1577, 1708,
+     1708, 1708, 2668, 1709,  959, 1694, 1710,  959, 2650, 1555,
+     2670,  959, 1695, 1209, 1209, 1209,  959, 1216, 1216, 1216,
+     1558, 1558, 1558, 1576, 1706, 1713, 1713, 1713, 1574, 1714,
+     2651, 1211, 1715,  959, 1702, 1218, 2667, 1559, 1716, 1716,
+     1716, 1722, 1722, 1722,  972,  972,  972, 1729, 1729, 1729,
+     1575, 1575, 1575, 1735, 1735, 1735, 1717, 2661, 1723, 1580,
+     1580, 1580,  974, 1736, 1736, 1736, 1583, 1583, 1583,  959,
+     2664, 1711, 1712, 1739, 1739, 1739, 1740, 1740, 1740, 1590,
+     1590, 1590, 1003, 1003, 1003, 1748, 1748, 1748, 1751, 1751,
+
+     1751, 1029, 1029, 1029, 1755, 1755, 1755, 1037, 1037, 1037,
+     1005, 1573,  959, 1749, 1724, 1752, 1609, 1609, 1609, 1031,
+     1610, 1756,  959, 1611, 2662, 1039, 1768, 1768, 1768, 1616,
+     1616, 1616, 1772, 1772, 1772, 1774, 1774, 1774, 1062, 1062,
+     1062, 2669, 1745, 1769, 1620, 1620, 1620,  959, 1621,  959,
+      959, 1622, 1775, 1767, 2688,  959, 1064, 2663,  959, 1754,
+     1624, 1624, 1624, 1777, 1777, 1777,  959, 1778,  959, 1572,
+     1779, 1070, 1070, 1070, 1781, 1781, 1781, 1625, 1628, 1628,
+     1628, 1783, 1783, 1783, 2665, 1784,  959, 1571, 1785, 1072,
+     2682, 1776, 1782,  959, 2672, 1629, 1084, 1084, 1084, 1633,
+
+     1633, 1633, 2671, 1634, 2677, 2675, 1635,  959, 1636, 1636,
+     1636, 2673, 1637,  959, 1086, 1638, 1640, 1640, 1640, 1642,
+     1642, 1642,  959, 2678, 1780, 1645, 1645, 1645,  959, 1646,
+     2679, 1570, 1647,  959, 1641, 1648, 1648, 1648, 1794, 1794,
+     1794,  959, 1795, 1786, 2686, 1796, 1651, 1651, 1651,  959,
+     1652,  959, 1649, 1653, 1654, 1654, 1654, 1798, 1798, 1798,
+      959, 1799, 2680, 2683, 1800, 1801, 1801, 1801, 1660, 1660,
+     1660, 1655, 1806, 1806, 1806,  959, 1807, 1569, 2684, 1808,
+     1568, 2681, 1802, 2689,  959, 1661, 1122, 1122, 1122, 1664,
+     1664, 1664, 2692, 1665, 2685, 1566, 1666, 1667, 1667, 1667,
+
+      959, 1811, 1811, 1811, 1124, 1812, 2690,  959, 1813, 1670,
+     1670, 1670, 2687, 1671, 1668,  959, 1672, 1674, 1674, 1674,
+     1145, 1145, 1145, 1819, 1819, 1819, 1681, 1681, 1681,  959,
+     1682, 2694, 2693, 1683, 1565, 1675,  959, 1809, 1147, 2696,
+     1820, 1685, 1685, 1685, 1827, 1827, 1827, 1690, 1690, 1690,
+     1830, 1830, 1830, 1564, 1831, 1401, 1553, 1832, 1551, 1686,
+     1550, 1546, 1828, 1544, 1691, 1692, 1692, 1692, 2697, 1821,
+     1833, 1833, 1833, 1543, 1834, 1541, 2695, 1835, 1177, 1177,
+     1177, 1539, 1693, 1817, 1185, 1185, 1185, 1698, 1698, 1698,
+     1840, 1840, 1840, 1538, 1841, 1537, 1179, 1842, 1700, 1700,
+
+     1700, 2691, 1187, 2698, 1699, 1843, 1843, 1843, 1534, 1844,
+      959, 1529, 1845, 1528,  959, 1701, 1195, 1195, 1195, 1203,
+     1203, 1203, 1708, 1708, 1708, 1527, 1709, 1525, 1523, 1710,
+     1209, 1209, 1209, 1839, 1197, 1520, 1519, 1205, 1216, 1216,
+     1216, 1516, 1514, 1837, 1513, 1713, 1713, 1713, 1211, 1714,
+     1512, 1511, 1715, 1716, 1716, 1716, 1218, 1722, 1722, 1722,
+     1858, 1858, 1858, 1510, 1859, 1509, 1503, 1860,  972,  972,
+      972, 1717, 1502, 1499, 1723, 1862, 1862, 1862, 1498, 1497,
+     1846, 1852, 1487, 1850, 1486, 1484,  974, 1865, 1865, 1865,
+     1475, 1853, 1729, 1729, 1729, 1866, 1866, 1866, 1870, 1870,
+
+     1870, 1735, 1735, 1735, 1736, 1736, 1736, 1871, 1871, 1871,
+     1739, 1739, 1739, 1740, 1740, 1740, 1874, 1874, 1874, 1875,
+     1875, 1875, 1876, 1876, 1876, 1003, 1003, 1003, 1748, 1748,
+     1748, 1861, 1751, 1751, 1751, 1882, 1882, 1882, 1471, 1883,
+     1470, 1469, 1884, 1005, 1468, 1467, 1749, 1464, 1463, 1752,
+     1886, 1886, 1886, 1872, 1755, 1755, 1755, 1888, 1888, 1888,
+     1462, 1889, 1455, 1452, 1890, 1037, 1037, 1037, 1887, 1448,
+     1444, 1756, 1768, 1768, 1768, 1442, 1878, 1902, 1902, 1902,
+     1441, 1903, 1433, 1039, 1904, 1905, 1905, 1905, 1432, 1769,
+     1772, 1772, 1772, 1907, 1907, 1907, 1774, 1774, 1774, 1909,
+
+     1909, 1909, 1430, 1910, 1429, 1428, 1911, 1062, 1062, 1062,
+     1070, 1070, 1070, 1775, 1901, 1777, 1777, 1777, 1427, 1778,
+     1426, 1425, 1779, 1424, 1423, 1064, 1421, 1420, 1072, 1781,
+     1781, 1781, 1418, 1783, 1783, 1783, 1417, 1784, 1414, 1908,
+     1785, 1084, 1084, 1084, 1794, 1794, 1794, 1782, 1795, 1412,
+     1411, 1796, 1410, 1798, 1798, 1798, 1409, 1799, 1912, 1086,
+     1800, 1913, 1801, 1801, 1801, 1925, 1925, 1925, 1408, 1926,
+     1406, 1405, 1927, 1806, 1806, 1806, 1404, 1807, 1403, 1802,
+     1808, 1122, 1122, 1122, 1811, 1811, 1811, 1396, 1812, 1393,
+     1392, 1813, 1390, 1389, 1914, 1936, 1936, 1936, 1386, 1124,
+
+     1819, 1819, 1819, 1939, 1939, 1939, 1381, 1940, 1380, 1375,
+     1941, 1373, 1369, 1937, 1827, 1827, 1827, 1820, 1830, 1830,
+     1830, 1368, 1831, 1364, 1362, 1832, 1833, 1833, 1833, 1354,
+     1834, 1353, 1828, 1835, 1177, 1177, 1177, 1185, 1185, 1185,
+     1352, 1840, 1840, 1840, 1931, 1841, 1351, 1349, 1842, 1843,
+     1843, 1843, 1179, 1844, 1347, 1187, 1845, 1195, 1195, 1195,
+     1956, 1956, 1956, 2701, 2701, 2701, 2701, 2701, 2701, 1203,
+     1203, 1203, 1209, 1209, 1209, 1197, 1346, 1957, 1342, 1341,
+     2701, 1340, 1339, 2701, 1337, 1952, 1336, 1205, 1335, 1334,
+     1211, 1333, 1332, 1955, 1963, 1963, 1963, 1965, 1965, 1965,
+
+     1331, 1325, 1954, 1968, 1968, 1968, 1858, 1858, 1858, 1324,
+     1859, 1323, 1964, 1860, 1958,  959,  972,  972,  972, 1862,
+     1862, 1862, 1322, 1321, 1959, 1970, 1970, 1970, 1865, 1865,
+     1865, 1962, 1320, 1960,  974, 1866, 1866, 1866, 1972, 1972,
+     1972, 1973, 1973, 1973, 1974, 1974, 1974, 1870, 1870, 1870,
+     1871, 1871, 1871, 1874, 1874, 1874, 1875, 1875, 1875, 1876,
+     1876, 1876, 1978, 1978, 1978, 1981, 1981, 1981, 1882, 1882,
+     1882, 1318, 1883, 1317, 1969, 1884, 2701, 2701, 2701, 1314,
+     1979, 1313, 1982, 1886, 1886, 1886, 1304, 1888, 1888, 1888,
+     1302, 1889, 1301, 2701, 1890, 1037, 1037, 1037, 1902, 1902,
+
+     1902, 1887, 1903, 1300, 1299, 1904, 1905, 1905, 1905, 1907,
+     1907, 1907, 1298, 1039, 1909, 1909, 1909, 1297, 1910, 1296,
+     1295, 1911, 1062, 1062, 1062, 1998, 1998, 1998, 1084, 1084,
+     1084, 2008, 2008, 2008, 1294, 1925, 1925, 1925, 1293, 1926,
+     1064, 1983, 1927, 1999, 1290, 1288, 1086, 2011, 2011, 2011,
+     1285, 2015, 2015, 2015, 1282, 1994, 1936, 1936, 1936, 2021,
+     2021, 2021, 1279, 1270, 2012, 2032, 2032, 2032, 1997, 2016,
+     1268, 1939, 1939, 1939, 1937, 1940, 2022, 1261, 1941, 2000,
+     2034, 2034, 2034, 2036, 2036, 2036, 1185, 1185, 1185, 1195,
+     1195, 1195, 1956, 1956, 1956, 2040, 2040, 2040, 2035, 2041,
+
+     2037, 1259, 2042, 1258, 1187, 2023, 1257, 1197, 1256, 1957,
+     2043, 2043, 2043, 2701, 2701, 2701, 2046, 2046, 2046, 2048,
+     2048, 2048, 1209, 1209, 1209, 1255, 1254, 2044, 1253, 1252,
+     2701, 1968, 1968, 1968, 2047, 1963, 1963, 1963, 1251, 1248,
+     1211, 1965, 1965, 1965, 1247, 2038, 1970, 1970, 1970, 2039,
+     2053, 2053, 2053, 1964, 1972, 1972, 1972, 1246, 1245,  959,
+     1973, 1973, 1973, 1244, 2045, 1974, 1974, 1974, 2054, 1243,
+     1978, 1978, 1978, 1981, 1981, 1981, 2060, 2060, 2060, 1242,
+     2061, 1241, 1240, 2062, 2701, 2701, 2701, 2049, 1979, 1239,
+     1982, 1037, 1037, 1037, 1062, 1062, 1062, 1998, 1998, 1998,
+
+     1238, 2701, 2050, 2078, 2078, 2078, 2084, 2084, 2084, 1039,
+     1237, 1235, 1064, 1234, 1233, 1999, 2008, 2008, 2008, 1232,
+     1231, 2079, 1230, 2085, 2011, 2011, 2011, 2088, 2088, 2088,
+     1229, 2089,  959, 1223, 2090, 2092, 2092, 2092, 1208, 2063,
+     1207, 2012, 2015, 2015, 2015, 2096, 2096, 2096, 1202, 1201,
+     2074, 1200, 2093, 2021, 2021, 2021, 2107, 2107, 2107, 2077,
+     2016, 1199, 2097, 1181, 2099, 2099, 2099, 1169, 2100, 1155,
+     2022, 2101, 1154, 2108, 2032, 2032, 2032, 2034, 2034, 2034,
+     2036, 2036, 2036, 2111, 2111, 2111, 1153, 2112, 1149, 1141,
+     2113, 2114, 2114, 2114, 1136, 2035, 1135, 2037, 1195, 1195,
+
+     1195, 2040, 2040, 2040, 1129, 2041, 1126, 1121, 2042, 2115,
+     2043, 2043, 2043, 2117, 2117, 2117, 1197, 2118, 1120, 1119,
+     2119, 2120, 2120, 2120, 2046, 2046, 2046, 2044, 2048, 2048,
+     2048, 2122, 2122, 2122, 2053, 2053, 2053, 1118, 2121, 2131,
+     2131, 2131, 2047, 2060, 2060, 2060, 1117, 2061, 1116, 2123,
+     2062, 1115, 2054, 2701, 2701, 2701, 2132, 1037, 1037, 1037,
+     1062, 1062, 1062, 1109, 2116, 2078, 2078, 2078, 1102, 1101,
+     2701, 2155, 2155, 2155, 1100, 1039, 1095, 1094, 1064, 2084,
+     2084, 2084, 1090, 2079, 1089, 2157, 2157, 2157, 2156, 2158,
+     1088, 1083, 2159, 2088, 2088, 2088, 2085, 2089, 1082, 1077,
+
+     2090, 2092, 2092, 2092, 2163, 2163, 2163, 1069, 2164, 1061,
+     1057, 2165, 1056, 2139, 1055, 1054, 2150, 1053, 2093, 2167,
+     2167, 2167, 2096, 2096, 2096, 2169, 2169, 2169, 1052, 2170,
+     2153, 1051, 2171, 2172, 2172, 2172, 2168, 1050, 1044, 2097,
+     2099, 2099, 2099, 1036, 2100, 1035, 1034, 2101, 1033, 1028,
+     2173, 2107, 2107, 2107, 2177, 2177, 2177, 1027, 2178, 1026,
+     1023, 2179, 2180, 2180, 2180, 2182, 2182, 2182, 2108, 2111,
+     2111, 2111, 1017, 2112, 1012, 1011, 2113, 1007, 1002, 2181,
+     1001, 1000, 2183, 2114, 2114, 2114, 1195, 1195, 1195, 2117,
+     2117, 2117,  999, 2118,  998,  997, 2119, 2120, 2120, 2120,
+
+      995, 2115,  994,  993, 1197, 2191, 2191, 2191,  992, 2192,
+      991,  990, 2193,  989, 2121, 2122, 2122, 2122, 2197, 2197,
+     2197, 2131, 2131, 2131, 2201, 2201, 2201,  988, 2202,  987,
+      986, 2203,  985, 2123,  984, 2701, 2701, 2701, 2132, 1037,
+     1037, 1037, 2222, 2222, 2222, 1062, 1062, 1062, 2155, 2155,
+     2155, 2190, 2701, 2225, 2225, 2225,  983, 1039,  982,  981,
+     2228, 2228, 2228, 1064, 2229, 2156,  980, 2230,  979,  978,
+     2226, 2157, 2157, 2157,  971, 2158,  970,  969, 2159, 2163,
+     2163, 2163,  968, 2164,  967,  966, 2165, 2167, 2167, 2167,
+     2221, 2235, 2235, 2235, 2212, 2236,  965,  962, 2237, 2227,
+
+      960, 2169, 2169, 2169, 2168, 2170, 2224,  959, 2171, 2172,
+     2172, 2172, 2238, 2238, 2238,  957, 2239,  955,  952, 2240,
+     2242, 2242, 2242, 2177, 2177, 2177, 2173, 2178,  948,  946,
+     2179, 2180, 2180, 2180, 2245, 2245, 2245, 2243, 2246,  945,
+      944, 2247, 2182, 2182, 2182, 2248, 2248, 2248, 2181, 2249,
+      942,  941, 2250, 1195, 1195, 1195, 2191, 2191, 2191, 2183,
+     2192,  940,  939, 2193, 2260, 2260, 2260, 2197, 2197, 2197,
+      938, 1197, 2262, 2262, 2262,  936, 2201, 2201, 2201,  935,
+     2202, 2261, 1401, 2203, 2273, 2273, 2273, 1037, 1037, 1037,
+     2222, 2222, 2222, 2284, 2284, 2284, 1062, 1062, 1062,  934,
+
+      933, 2274,  929,  928, 2257, 1039, 2225, 2225, 2225, 2286,
+     2286, 2286,  926, 2287, 1064,  925, 2288, 2228, 2228, 2228,
+      924, 2229,  923, 2226, 2230, 2235, 2235, 2235,  922, 2236,
+      921,  919, 2237, 2238, 2238, 2238, 2283, 2239,  918,  917,
+     2240, 2242, 2242, 2242, 2295, 2295, 2295, 2285, 2296,  916,
+      914, 2297, 2245, 2245, 2245,  913, 2246,  912, 2243, 2247,
+     2248, 2248, 2248,  909, 2249,  908,  904, 2250, 2313, 2313,
+     2313, 2316, 2316, 2316, 2260, 2260, 2260, 2318, 2318, 2318,
+      903, 2319,  901,  900, 2320,  899, 2314,  896, 2317, 1401,
+      895, 2261, 1401,  894,  893, 1401, 2262, 2262, 2262, 2321,
+
+     2321, 2321, 2322, 2322, 2322, 2273, 2273, 2273, 2331, 2331,
+     2331,  891, 2332,  890,  889, 2333, 1037, 1037, 1037, 2284,
+     2284, 2284, 2274, 2341, 2341, 2341, 2286, 2286, 2286,  888,
+     2287,  887,  886, 2288, 1039, 2346, 2346, 2346, 2349, 2349,
+     2349, 2342, 2295, 2295, 2295,  885, 2296,  884,  881, 2297,
+      878,  877, 2347,  874,  872, 2350, 2351, 2351, 2351, 2313,
+     2313, 2313, 2316, 2316, 2316, 2366, 2366, 2366,  871, 2367,
+      866,  865, 2368, 2352, 2321, 2321, 2321, 2314,  863, 2317,
+     1401, 2340,  862, 1401, 2318, 2318, 2318,  861, 2319,  859,
+      856, 2320, 2322, 2322, 2322, 2385, 2385, 2385, 2341, 2341,
+
+     2341,  854, 1401, 1399, 1399, 1399, 1399, 1399, 1399, 1399,
+     1399, 1399,  851, 2386, 1399,  849, 2342,  846,  843, 1399,
+     1399, 1399, 1401, 1399, 2331, 2331, 2331,  842, 2332,  840,
+      839, 2333, 2390, 2390, 2390,  838, 2391,  837,  836, 2392,
+      834,  831, 2346, 2346, 2346, 2349, 2349, 2349, 1399, 1399,
+     1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 2347,
+      829, 1399, 2350, 2351, 2351, 2351, 1399, 1399, 1399, 1401,
+     1399, 2394, 2394, 2394,  828, 2395,  827,  825, 2396,  823,
+     2352, 2397, 2397, 2397,  822, 2398,  821,  820, 2399,  819,
+     2366, 2366, 2366,  818, 2367, 1399, 1399, 2368,  815,  814,
+
+     2385, 2385, 2385, 2447, 2447, 2447,  813,  810, 1401, 1399,
+     1399, 1399, 1399, 1399, 2418, 1399, 1399, 1399, 2386,  807,
+     1399, 1401, 1402,  806,  804, 1399, 1399, 1399, 1401, 1399,
+     2390, 2390, 2390,  803, 2391,  800,  798, 2392, 2394, 2394,
+     2394,  795, 2395,  794,  786, 2396, 2397, 2397, 2397,  785,
+     2398,  784,  781, 2399, 1399, 1399, 1399, 1399, 1399, 1399,
+     1399, 1399, 1399, 1399, 2418,  780,  779, 1399, 2452, 2452,
+     2452,  778, 1399, 1399, 1399, 1401, 1399, 2454, 2454, 2454,
+     2456, 2456, 2456,  776,  775, 2453, 2464, 2464, 2464, 2472,
+     2472, 2472,  774,  773, 2455,  772,  771, 2457, 2447, 2447,
+
+     2447, 1399, 1399, 2465, 2452, 2452, 2452,  959, 2478, 2478,
+     2478,  766, 2479,  763,  765, 2480, 1401, 2454, 2454, 2454,
+      760, 2453, 2481, 2481, 2481,  759, 2482,  757,  755, 2483,
+     2456, 2456, 2456,  753, 2455, 2484, 2484, 2484,  751, 2485,
+      749, 2701, 2486, 2464, 2464, 2464,  746, 2457,  745, 1562,
+     2493, 2493, 2493,  744, 2494,  743,  741, 2495,  740,  739,
+     2465, 2472, 2472, 2472, 2478, 2478, 2478,  738, 2479,  737,
+      735, 2480,  733, 2481, 2481, 2481,  732, 2482,  730,  959,
+     2483, 2484, 2484, 2484,  729, 2485,  726,  725, 2486, 2493,
+     2493, 2493,  723, 2494,  587, 2701, 2495,  718, 2502, 2597,
+
+     2597, 2597, 2597, 2597, 2597,  716, 2606,  712,  711, 2607,
+     2699, 2699, 2699, 2699, 2699, 2699,  710,  959,  708,  706,
+      959,  705,  703,  701,  700,  699,  698,  697, 2700,  696,
+      695, 2700,  228,  228,  228,  228,  228,  228,  228,  228,
+      228,  229,  229,  229,  229,  229,  229,  229,  229,  229,
+      234,  234,  234,  234,  234,  234,  234,  234,  234,  237,
+      237,  237,  237,  237,  237,  237,  237,  237,  240,  240,
+      240,  240,  240,  240,  240,  240,  240,  243,  243,  243,
+      243,  243,  243,  243,  243,  243,  250,  250,  250,  250,
+      250,  250,  250,  250,  250,  258,  258,  258,  258,  258,
+
+      258,  258,  258,  258,  262,  262,  262,  262,  262,  262,
+      262,  262,  262,  274,  274,  274,  274,  274,  274,  274,
+      274,  274,  278,  278,  278,  278,  278,  278,  278,  278,
+      278,  285,  285,  285,  285,  285,  285,  285,  285,  285,
+      296,  296,  296,  296,  296,  296,  296,  296,  296,  304,
+      304,  304,  304,  304,  304,  304,  304,  304,  312,  312,
+      312,  312,  312,  312,  312,  312,  312,  318,  318,  318,
+      318,  318,  318,  318,  318,  318,  324,  324,  324,  324,
+      324,  324,  324,  324,  324,  329,  329,  329,  329,  329,
+      329,  329,  329,  329,  346,  346,  346,  346,  346,  346,
+
+      346,  346,  346,  352,  352,  352,  352,  352,  352,  352,
+      352,  352,  359,  359,  359,  359,  359,  359,  359,  359,
+      359,  364,  364,  364,  364,  364,  364,  364,  364,  364,
+      371,  371,  371,  371,  371,  371,  371,  371,  371,  376,
+      376,  376,  376,  376,  376,  376,  376,  376,  382,  382,
+      382,  382,  382,  382,  382,  382,  382,  387,  387,  387,
+      387,  387,  387,  387,  387,  387,  393,  393,  393,  393,
+      393,  393,  393,  393,  393,  401,  401,  401,  401,  401,
+      401,  401,  401,  401,  420,  420,  420,  420,  420,  420,
+      420,  420,  420,  436,  436,  436,  436,  436,  436,  436,
+
+      436,  436,  442,  442,  442,  442,  442,  442,  442,  442,
+      442,  447,  447,  447,  447,  447,  447,  447,  447,  447,
+      453,  453,  453,  453,  453,  453,  453,  453,  453,  460,
+      460,  460,  460,  460,  460,  460,  460,  460,  467,  467,
+      467,  467,  467,  467,  467,  467,  467,  472,  472,  472,
+      472,  472,  472,  472,  472,  472,  480,  480,  480,  480,
+      480,  480,  480,  480,  480,  486,  486,  486,  486,  486,
+      486,  486,  486,  486,  493,  493,  493,  493,  493,  493,
+      493,  493,  493,  498,  498,  498,  498,  498,  498,  498,
+      498,  498,  504,  504,  504,  504,  504,  504,  504,  504,
+
+      504,  510,  510,  510,  510,  510,  510,  510,  510,  510,
+      517,  517,  517,  517,  517,  517,  517,  517,  517,  524,
+      524,  524,  524,  524,  524,  524,  524,  524,  532,  532,
+      532,  532,  532,  532,  532,  532,  532,  536,  536,  536,
+      536,  536,  536,  536,  536,  536,  542,  542,  542,  542,
+      542,  542,  542,  542,  542,  546,  546,  546,  546,  546,
+      546,  546,  546,  546,  553,  553,  553,  553,  553,  553,
+      553,  553,  553,  558,  558,  558,  558,  558,  558,  558,
+      558,  558,  578,  578,  578,  693,  684,  683,  578,  604,
+      604,  604,  682,  679,  677,  604,  608,  608,  608, 2701,
+
+      674,  673,  608,  616,  616,  616,  672,  671,  670,  616,
+      628,  628,  628,  668,  666,  665,  628,  634,  634,  634,
+      663,  661,  660,  634,  648,  648,  648,  658,  656,  655,
+      648,  654,  654,  654,  653,  651,  650,  654,  659,  659,
+      659,  649,  647, 2701,  659,  664,  664,  664,  595,  636,
+      635,  664,  669,  669,  669,  633,  631,  630,  669,  678,
+      678,  678,  629,  627,  622,  678,  694,  694,  694,  618,
+      617,  615,  694,  704,  704,  704,  614,  611,  610,  704,
+      709,  709,  709,  609,  607,  606,  709,  717,  717,  717,
+      605,  603,  598,  717,  724,  724,  724, 2701,  579,  577,
+
+      724,  731,  731,  731,  575,  569,  568,  731,  736,  736,
+      736,  569,  568,  567,  736,  742,  742,  742,  566, 2701,
+     2701,  742,  750,  750,  750, 2701, 2701, 2701,  750,  754,
+      754,  754, 2701, 2701, 2701,  754,  758,  758,  758, 2701,
+     2701, 2701,  758,  762,  762,  762,  762,  762,  762,  762,
+     2701,  762,  578,  578,  578, 2701, 2701, 2701,  578,  777,
+     2701, 2701, 2701,  777,  604,  604,  604, 2701, 2701, 2701,
+      604,  805, 2701, 2701, 2701,  805,  608,  608,  608, 2701,
+     2701, 2701,  608,  812, 2701, 2701, 2701,  812,  616,  616,
+      616, 2701, 2701, 2701,  616,  824, 2701, 2701, 2701,  824,
+
+      628,  628,  628, 2701, 2701, 2701,  628,  830, 2701, 2701,
+     2701,  830,  634,  634,  634, 2701, 2701, 2701,  634,  835,
+     2701, 2701, 2701,  835,  648,  648,  648, 2701, 2701, 2701,
+      648,  850, 2701, 2701, 2701,  850,  654,  654,  654, 2701,
+     2701, 2701,  654,  855, 2701, 2701, 2701,  855,  659,  659,
+      659, 2701, 2701, 2701,  659,  860, 2701, 2701, 2701,  860,
+      664,  664,  664, 2701, 2701, 2701,  664,  864, 2701, 2701,
+     2701,  864,  669,  669,  669, 2701, 2701, 2701,  669,  873,
+     2701, 2701, 2701,  873,  678,  678,  678, 2701, 2701, 2701,
+      678,  892, 2701, 2701, 2701,  892,  694,  694,  694, 2701,
+
+     2701, 2701,  694,  902, 2701, 2701, 2701,  902,  704,  704,
+      704, 2701, 2701, 2701,  704,  907, 2701, 2701, 2701,  907,
+      709,  709,  709, 2701, 2701, 2701,  709,  915, 2701, 2701,
+     2701,  915,  717,  717,  717, 2701, 2701, 2701,  717,  920,
+     2701, 2701, 2701,  920,  724,  724,  724, 2701, 2701, 2701,
+      724,  927, 2701, 2701, 2701,  927,  731,  731,  731, 2701,
+     2701, 2701,  731,  932, 2701, 2701, 2701,  932,  736,  736,
+      736, 2701, 2701, 2701,  736,  937, 2701, 2701, 2701,  937,
+      742,  742,  742, 2701, 2701, 2701,  742,  943, 2701, 2701,
+     2701,  943,  750,  750,  750, 2701, 2701, 2701,  750,  947,
+
+     2701, 2701, 2701,  947,  754,  754,  754, 2701, 2701, 2701,
+      754,  951, 2701, 2701, 2701,  951,  758,  758,  758, 2701,
+     2701, 2701,  758,  956, 2701, 2701, 2701,  956,  958,  958,
+      958,  958,  958,  958,  958,  958,  958,  964, 2701, 2701,
+     2701, 2701,  964,  578,  578,  578, 2701, 2701, 2701,  578,
+      973,  973,  973,  973, 2701, 2701,  973,  973,  604,  604,
+      604, 2701, 2701, 2701,  604, 1004, 1004, 1004, 1004, 2701,
+     2701, 1004, 1004,  608,  608,  608, 2701, 2701, 2701,  608,
+     1014, 1014, 1014, 1014, 2701, 2701, 1014, 1014,  616,  616,
+      616, 2701, 2701, 2701,  616, 1030, 1030, 1030, 1030, 2701,
+
+     2701, 1030, 1030,  628,  628,  628, 2701, 2701, 2701,  628,
+     1038, 1038, 1038, 1038, 2701, 2701, 1038, 1038,  634,  634,
+      634, 2701, 2701, 2701,  634, 1046, 1046, 1046, 1046, 2701,
+     2701, 1046, 1046,  648,  648,  648, 2701, 2701, 2701,  648,
+     1063, 1063, 1063, 1063, 2701, 2701, 1063, 1063,  654,  654,
+      654, 2701, 2701, 2701,  654, 1071, 1071, 1071, 1071, 2701,
+     2701, 1071, 1071,  659,  659,  659, 2701, 2701, 2701,  659,
+     1079, 1079, 1079, 1079, 2701, 2701, 1079, 1079,  664,  664,
+      664, 2701, 2701, 2701,  664, 1085, 1085, 1085, 1085, 2701,
+     2701, 1085, 1085,  669,  669,  669, 2701, 2701, 2701,  669,
+
+     1097, 1097, 1097, 1097, 2701, 2701, 1097, 1097,  678,  678,
+      678, 2701, 2701, 2701,  678, 1123, 1123, 1123, 1123, 2701,
+     2701, 1123, 1123,  694,  694,  694, 2701, 2701, 2701,  694,
+     1138, 1138, 1138, 1138, 2701, 2701, 1138, 1138,  704,  704,
+      704, 2701, 2701, 2701,  704, 1146, 1146, 1146, 1146, 2701,
+     2701, 1146, 1146,  709,  709,  709, 2701, 2701, 2701,  709,
+     1157, 1157, 1157, 1157, 2701, 2701, 1157, 1157,  717,  717,
+      717,  717, 2701,  717, 2701,  717, 1166, 1166, 1166, 1166,
+     2701, 2701, 1166, 1166,  724,  724,  724,  724, 2701,  724,
+     2701,  724, 1178, 1178, 1178, 1178, 2701, 2701, 1178, 1178,
+
+      731,  731,  731, 2701, 2701, 2701,  731, 1186, 1186, 1186,
+     1186, 2701, 2701, 1186, 1186,  736,  736,  736,  736, 2701,
+      736, 2701,  736, 1196, 1196, 1196, 1196, 2701, 2701, 1196,
+     1196,  742,  742,  742, 2701, 2701, 2701,  742, 1204, 1204,
+     1204, 1204, 2701, 2701, 1204, 1204,  750,  750,  750, 2701,
+     2701, 2701,  750, 1210, 1210, 1210, 1210, 2701, 2701, 1210,
+     1210, 1217, 1217, 1217, 1217, 2701, 2701, 1217, 1217,  758,
+      758,  758, 2701, 2701, 2701,  758, 1225, 1225, 1225, 1225,
+     2701, 2701, 1225, 1225,  958,  958,  958,  958,  958,  958,
+      958,  958,  958,  964, 2701,  964, 2701, 2701,  964,  578,
+
+      578,  578, 2701, 2701, 2701,  578,  973,  973,  973,  973,
+     2701, 2701,  973,  973,  604,  604,  604,  604, 2701,  604,
+     2701,  604, 1004, 1004, 1004, 1004, 2701, 2701, 1004, 1004,
+      608,  608,  608,  608, 2701,  608, 2701,  608, 1014, 1014,
+     1014, 1014, 2701, 2701, 1014, 1014,  616,  616,  616, 2701,
+     2701, 2701,  616, 1030, 1030, 1030, 1030, 2701, 2701, 1030,
+     1030,  628,  628,  628, 2701, 2701, 2701,  628, 1038, 1038,
+     1038, 1038, 2701, 2701, 1038, 1038,  634,  634,  634, 2701,
+     2701, 2701,  634, 1046, 1046, 1046, 1046, 2701, 2701, 1046,
+     1046,  648,  648,  648, 2701, 2701, 2701,  648, 1063, 1063,
+
+     1063, 1063, 2701, 2701, 1063, 1063,  654,  654,  654, 2701,
+     2701, 2701,  654, 1071, 1071, 1071, 1071, 2701, 2701, 1071,
+     1071,  659,  659,  659,  659, 2701,  659, 2701,  659, 1079,
+     1079, 1079, 1079, 2701, 2701, 1079, 1079,  664,  664,  664,
+      664, 2701,  664, 2701,  664, 1085, 1085, 1085, 1085, 2701,
+     2701, 1085, 1085,  669,  669,  669, 2701, 2701, 2701,  669,
+     1097, 1097, 1097, 1097, 2701, 2701, 1097, 1097,  678,  678,
+      678, 2701, 2701, 2701,  678, 1123, 1123, 1123, 1123, 2701,
+     2701, 1123, 1123,  694,  694,  694, 2701, 2701, 2701,  694,
+     1138, 1138, 1138, 1138, 2701, 2701, 1138, 1138,  704,  704,
+
+      704, 2701, 2701, 2701,  704, 1146, 1146, 1146, 1146, 2701,
+     2701, 1146, 1146,  709,  709,  709, 2701, 2701, 2701,  709,
+     1157, 1157, 1157, 1157, 2701, 2701, 1157, 1157,  717,  717,
+      717, 2701, 2701, 2701,  717, 1166, 1166, 1166, 1166, 2701,
+     2701, 1166, 1166,  724,  724,  724, 2701, 2701, 2701,  724,
+     1178, 1178, 1178, 1178, 2701, 2701, 1178, 1178,  731,  731,
+      731, 2701, 2701, 2701,  731, 1186, 1186, 1186, 1186, 2701,
+     2701, 1186, 1186,  736,  736,  736, 2701, 2701, 2701,  736,
+     1196, 1196, 1196, 1196, 2701, 2701, 1196, 1196,  742,  742,
+      742, 2701, 2701, 2701,  742, 1204, 1204, 1204, 1204, 2701,
+
+     2701, 1204, 1204,  750,  750,  750, 2701, 2701, 2701,  750,
+     1210, 1210, 1210, 1210, 2701, 2701, 1210, 1210, 1217, 1217,
+     1217, 1217, 2701, 2701, 1217, 1217,  758,  758,  758, 2701,
+     2701, 2701,  758, 1225, 1225, 1225, 1225, 2701, 2701, 1225,
+     1225,  958,  958,  958,  958,  958,  958,  958,  958,  958,
+     1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399,  578,
+      578,  578, 2701, 2701, 2701,  578,  973,  973,  973,  973,
+     2701, 2701,  973,  973, 1004, 1004, 1004, 1004, 2701, 2701,
+     1004, 1004,  608,  608,  608, 2701, 2701, 2701,  608, 1014,
+     1014, 1014, 1014, 2701, 2701, 1014, 1014,  616,  616,  616,
+
+     2701, 2701, 2701,  616, 1030, 1030, 1030, 1030, 2701, 2701,
+     1030, 1030,  628,  628,  628, 2701, 2701, 2701,  628, 1038,
+     1038, 1038, 1038, 2701, 2701, 1038, 1038,  634,  634,  634,
+     2701, 2701, 2701,  634,  648,  648,  648, 2701, 2701, 2701,
+      648, 1063, 1063, 1063, 1063, 2701, 2701, 1063, 1063,  654,
+      654,  654, 2701, 2701, 2701,  654, 1071, 1071, 1071, 1071,
+     2701, 2701, 1071, 1071, 1079, 1079, 1079, 1079, 2701, 2701,
+     1079, 1079,  664,  664,  664, 2701, 2701, 2701,  664, 1085,
+     1085, 1085, 1085, 2701, 2701, 1085, 1085,  669,  669,  669,
+     2701, 2701, 2701,  669, 1097, 1097, 1097, 1097, 2701, 2701,
+
+     1097, 1097,  678,  678,  678, 2701, 2701, 2701,  678, 1123,
+     1123, 1123, 1123, 2701, 2701, 1123, 1123,  694,  694,  694,
+     2701, 2701, 2701,  694, 1138, 1138, 1138, 1138, 2701, 2701,
+     1138, 1138,  704,  704,  704, 2701, 2701, 2701,  704, 1146,
+     1146, 1146, 1146, 2701, 2701, 1146, 1146,  709,  709,  709,
+     2701, 2701, 2701,  709, 1157, 1157, 1157, 1157, 2701, 2701,
+     1157, 1157,  717,  717,  717, 2701, 2701, 2701,  717, 1166,
+     1166, 1166, 1166, 2701, 2701, 1166, 1166,  724,  724,  724,
+     2701, 2701, 2701,  724, 1178, 1178, 1178, 1178, 2701, 2701,
+     1178, 1178,  731,  731,  731, 2701, 2701, 2701,  731, 1186,
+
+     1186, 1186, 1186, 2701, 2701, 1186, 1186,  736,  736,  736,
+     2701, 2701, 2701,  736, 1196, 1196, 1196, 1196, 2701, 2701,
+     1196, 1196,  742,  742,  742, 2701, 2701, 2701,  742, 1204,
+     1204, 1204, 1204, 2701, 2701, 1204, 1204,  750,  750,  750,
+      750, 2701,  750, 2701,  750, 1210, 1210, 1210, 1210, 2701,
+     2701, 1210, 1210, 1217, 1217, 1217, 1217, 2701, 2701, 1217,
+     1217,  758,  758,  758,  758, 2701,  758, 2701,  758, 1225,
+     1225, 1225, 1225, 2701, 2701, 1225, 1225,  958,  958,  958,
+      958,  958,  958,  958,  958,  958, 1399, 1399, 1399, 1399,
+     1399, 1399, 1399, 1399, 1399,  578,  578,  578, 2701, 2701,
+
+     2701,  578,  973,  973,  973,  973, 2701, 2701,  973,  973,
+     1004, 1004, 1004, 1004, 2701, 2701, 1004, 1004,  608,  608,
+      608, 2701, 2701, 2701,  608, 1014, 1014, 1014, 1014, 2701,
+     2701, 1014, 1014,  616,  616,  616, 2701, 2701, 2701,  616,
+     1030, 1030, 1030, 1030, 2701, 2701, 1030, 1030,  628,  628,
+      628, 2701, 2701, 2701,  628, 1038, 1038, 1038, 1038, 2701,
+     2701, 1038, 1038,  634,  634,  634, 2701, 2701, 2701,  634,
+      648,  648,  648, 2701, 2701, 2701,  648, 1063, 1063, 1063,
+     1063, 2701, 2701, 1063, 1063,  654,  654,  654,  654, 2701,
+      654, 2701,  654, 1071, 1071, 1071, 1071, 2701, 2701, 1071,
+
+     1071, 1079, 1079, 1079, 1079, 2701, 2701, 1079, 1079,  664,
+      664,  664,  664, 2701,  664, 2701,  664, 1085, 1085, 1085,
+     1085, 2701, 2701, 1085, 1085,  669,  669,  669, 2701, 2701,
+     2701,  669, 1097, 1097, 1097, 1097, 2701, 2701, 1097, 1097,
+      678,  678,  678, 2701, 2701, 2701,  678, 1123, 1123, 1123,
+     1123, 2701, 2701, 1123, 1123,  694,  694,  694, 2701, 2701,
+     2701,  694, 1138, 1138, 1138, 1138, 2701, 2701, 1138, 1138,
+      704,  704,  704, 2701, 2701, 2701,  704, 1146, 1146, 1146,
+     1146, 2701, 2701, 1146, 1146,  709,  709,  709, 2701, 2701,
+     2701,  709, 1157, 1157, 1157, 1157, 2701, 2701, 1157, 1157,
+
+      717,  717,  717, 2701, 2701, 2701,  717, 1166, 1166, 1166,
+     1166, 2701, 2701, 1166, 1166,  724,  724,  724,  724, 2701,
+      724, 2701,  724, 1178, 1178, 1178, 1178, 2701, 2701, 1178,
+     1178,  731,  731,  731, 2701, 2701, 2701,  731, 1186, 1186,
+     1186, 1186, 2701, 2701, 1186, 1186,  736,  736,  736,  736,
+     2701,  736, 2701,  736, 1196, 1196, 1196, 1196, 2701, 2701,
+     1196, 1196,  742,  742,  742, 2701, 2701, 2701,  742, 1204,
+     1204, 1204, 1204, 2701, 2701, 1204, 1204, 1210, 1210, 1210,
+     1210, 2701, 2701, 1210, 1210, 1217, 1217, 1217, 1217, 2701,
+     2701, 1217, 1217, 1225, 1225, 1225, 1225, 2701, 2701, 1225,
+
+     1225,  958,  958,  958,  958,  958,  958,  958,  958,  958,
+     1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399,  578,
+      578,  578,  578, 2701,  578, 2701,  578,  973,  973,  973,
+      973, 2701, 2701,  973,  973, 1004, 1004, 1004, 1004, 2701,
+     2701, 1004, 1004,  608,  608,  608, 2701, 2701, 2701,  608,
+     1014, 1014, 1014, 1014, 2701, 2701, 1014, 1014,  616,  616,
+      616, 2701, 2701, 2701,  616, 1030, 1030, 1030, 1030, 2701,
+     2701, 1030, 1030,  628,  628,  628,  628, 2701,  628, 2701,
+      628, 1038, 1038, 1038, 1038, 2701, 2701, 1038, 1038,  634,
+      634,  634,  634, 2701,  634, 2701,  634,  648,  648,  648,
+
+      648, 2701,  648, 2701,  648, 1063, 1063, 1063, 1063, 2701,
+     2701, 1063, 1063, 1071, 1071, 1071, 1071, 2701, 2701, 1071,
+     1071, 1079, 1079, 1079, 1079, 2701, 2701, 1079, 1079, 1085,
+     1085, 1085, 1085, 2701, 2701, 1085, 1085,  669,  669,  669,
+     2701, 2701, 2701,  669,  678,  678,  678, 2701, 2701, 2701,
+      678, 1123, 1123, 1123, 1123, 2701, 2701, 1123, 1123,  694,
+      694,  694, 2701, 2701, 2701,  694,  704,  704,  704, 2701,
+     2701, 2701,  704, 1146, 1146, 1146, 1146, 2701, 2701, 1146,
+     1146,  709,  709,  709, 2701, 2701, 2701,  709,  717,  717,
+      717, 2701, 2701, 2701,  717, 1166, 1166, 1166, 1166, 2701,
+
+     2701, 1166, 1166,  724,  724,  724, 2701, 2701, 2701,  724,
+     1178, 1178, 1178, 1178, 2701, 2701, 1178, 1178,  731,  731,
+      731, 2701, 2701, 2701,  731, 1186, 1186, 1186, 1186, 2701,
+     2701, 1186, 1186, 1196, 1196, 1196, 1196, 2701, 2701, 1196,
+     1196,  742,  742,  742, 2701, 2701, 2701,  742, 1204, 1204,
+     1204, 1204, 2701, 2701, 1204, 1204, 1210, 1210, 1210, 1210,
+     2701, 2701, 1210, 1210, 1217, 1217, 1217, 1217, 2701, 2701,
+     1217, 1217,  958,  958,  958,  958,  958,  958,  958,  958,
+      958, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399,
+      973,  973,  973,  973, 2701, 2701,  973,  973, 1004, 1004,
+
+     1004, 1004, 2701, 2701, 1004, 1004,  608,  608,  608, 2701,
+     2701, 2701,  608,  616,  616,  616, 2701, 2701, 2701,  616,
+     1030, 1030, 1030, 1030, 2701, 2701, 1030, 1030, 1038, 1038,
+     1038, 1038, 2701, 2701, 1038, 1038, 1063, 1063, 1063, 1063,
+     2701, 2701, 1063, 1063, 1071, 1071, 1071, 1071, 2701, 2701,
+     1071, 1071, 1085, 1085, 1085, 1085, 2701, 2701, 1085, 1085,
+      669,  669,  669, 2701, 2701, 2701,  669,  678,  678,  678,
+     2701, 2701, 2701,  678, 1123, 1123, 1123, 1123, 2701, 2701,
+     1123, 1123,  694,  694,  694, 2701, 2701, 2701,  694,  704,
+      704,  704, 2701, 2701, 2701,  704, 1146, 1146, 1146, 1146,
+
+     2701, 2701, 1146, 1146,  709,  709,  709, 2701, 2701, 2701,
+      709,  717,  717,  717, 2701, 2701, 2701,  717,  724,  724,
+      724, 2701, 2701, 2701,  724, 1178, 1178, 1178, 1178, 2701,
+     2701, 1178, 1178,  731,  731,  731, 2701, 2701, 2701,  731,
+     1186, 1186, 1186, 1186, 2701, 2701, 1186, 1186, 1196, 1196,
+     1196, 1196, 2701, 2701, 1196, 1196,  742,  742,  742,  742,
+     2701,  742, 2701,  742, 1204, 1204, 1204, 1204, 2701, 2701,
+     1204, 1204, 1210, 1210, 1210, 1210, 2701, 2701, 1210, 1210,
+     1217, 1217, 1217, 1217, 2701, 2701, 1217, 1217,  958,  958,
+      958,  958,  958,  958,  958,  958,  958, 1399, 1399, 1399,
+
+     1399, 1399, 1399, 1399, 1399, 1399,  973,  973,  973,  973,
+     2701, 2701,  973,  973, 1004, 1004, 1004, 1004, 2701, 2701,
+     1004, 1004,  608,  608,  608, 2701, 2701, 2701,  608,  616,
+      616,  616,  616, 2701,  616, 2701,  616, 2369, 2369, 2369,
+     2369, 2369, 2369, 2369, 2369, 2369, 2370, 2370, 2370, 2370,
+     2370, 2370, 2370, 2370, 2370, 2413, 2413, 2413, 2413, 2413,
+     2413, 2413, 2413, 2413, 2416, 2416, 2416, 2416, 2416, 2416,
+     2416, 2416, 2416, 2444, 2444, 2444, 2444, 2444, 2444, 2444,
+     2444, 2444, 2446, 2446, 2446, 2446, 2446, 2446, 2446, 2446,
+     2446,  227, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701
     } ;
 
-static yyconst flex_int16_t yy_chk[9692] =
+static yyconst flex_int16_t yy_chk[9765] =
     {   0,
         0,    3,    3,    3,    4,    4,    4,    5,    5,    5,
         6,    6,    6,    7,    7,    7,   11,    3,    9,   12,
-        4,   10,    0,    5,    0,    9,    6,    0,   10,    7,
-        8,    8,    8,  226,   11,   13,   13,   12,   14,   14,
-       13,   13,  299,   14,   14,  227,    8,   17,   17,  226,
-       13,   15,   15,   14,   15,  230,   15,   16,   16,  264,
-       16,  227,   16,   18,   18,  264,   15,   19,   19,   19,
-      333,  230,   16,   20,   20,   20,   23,   23,   23,   24,
-       24,   24,  582,   19,   25,   25,   25,  299,  582,   20,
-      327,   17,   23,  299,  582,   24,  224,  224,  224,  327,
-
-       25,  225,  225,  225,  229,  229,  229,   18,   21,   21,
+        4,   10,    0,    5,    0,    9,    6,  336,   10,    7,
+        8,    8,    8,  232,   11,   13,   13,   12,   14,   14,
+       13,   13,  281,   14,   14,  233,    8,   17,   17,  232,
+       13,   15,   15,   14,   15,  236,   15,   16,   16,  459,
+       16,  233,   16,   18,   18,  336,   15,   19,   19,   19,
+      459,  236,   16,   20,   20,   20,   23,   23,   23,   24,
+       24,   24, 1462,   19,   25,   25,   25,  333, 1463,   20,
+      334,   17,   23,  281,  333,   24,  230,  230,  230,  334,
+
+       25,  231,  231,  231,  235,  235,  235,   18,   21,   21,
        21,   21,   21,   21,   21,   21,   21,   21,   21,   21,
-       21,   21,   21,  333,   21,   21,   21,   21,   21,   26,
-       26,   26,   27,   27,   27,   28,   28,   28,  259,   29,
-       29,   29,   30,   30,   30,   26,  330, 1445,   27,  248,
-      253,   28,  259,   21,   21,   29,  330,  269,   30,   31,
-       31,   31,  250,  250,  250,  248,  253,  257,  257,  257,
-      266,  266,  266,  269, 1448,   31,   21,   22,   22,   22,
+       21,   21,   21,  306,   21,   21,   21,   21,   21,   26,
+       26,   26,   27,   27,   27,   28,   28,   28,  265,   29,
+       29,   29,   30,   30,   30,   26,  337, 1464,   27,  254,
+      259,   28,  265,   21,   21,   29,  337,  275,   30,   31,
+       31,   31,  256,  256,  256,  254,  259,  263,  263,  263,
+      272,  272,  272,  275,  306,   31,   21,   22,   22,   22,
        22,   22,   22,   22,   22,   22,   22,   22,   22,   22,
-       22,   22,  348,   22,   22,   22,   22,   22,   32,   32,
+       22,   22,  307,   22,   22,   22,   22,   22,   32,   32,
 
-       32,   33,   33,   33,   34,   34,   34,  248,   35,   35,
-       35,   36,   36,   36,   32,  260,  335,   33,  335, 1455,
-       34,  360,   22,   22,   35,  260,  261,   36,   37,   37,
+       32,   33,   33,   33,   34,   34,   34,  254,   35,   35,
+       35,   36,   36,   36,   32,  266,  267,   33,  340, 1468,
+       34,  308,   22,   22,   35,  266,  413,   36,   37,   37,
        37,   38,   38,   38,   39,   39,   39,   40,   40,   40,
-       41,   41,   41,  348,   37,   22,  410,   38,  279,  410,
-       39,  329,  290,   40,  260,  261,   41,   42,   42,   42,
-      260,  273,  273,  273,  279,  262,  260,  261,  290,  261,
-      260,  261,  360,   42,   43,   43,   43,   43,   43,   43,
-       43,   43,   43,   43,   43,   43,   43,   43,   43,  329,
+       41,   41,   41,  307,   37,   22,  413,   38,  286,  342,
+       39,  342,  297,   40,  266,  267,   41,   42,   42,   42,
+      266,  279,  279,  279,  286,  268,  266,  267,  297,  267,
+      266,  340,  308,   42,   43,   43,   43,   43,   43,   43,
+       43,   43,   43,   43,   43,   43,   43,   43,   43, 1471,
        43,   43,   43,   43,   43,   45,   45,   45,   46,   46,
 
-       46,   53,   53,   53,  262,  294, 1456,   49,   49,  294,
-      306,   45,   49,  294,   46, 1457,  262,   53,  262,   43,
-       43,  396,   49,  276,  276,  276,  306,   43,   44,   44,
+       46,   47,   47,   47,  268,   48,   48,   48,   49,   49,
+       49,   45,  303, 1486,   46, 1487,  268,   47,  268,   43,
+       43,   48,  405, 1228,   49,  405,  303,   43,   44,   44,
        44,   44,   44,   44,   44,   44,   44,   44,   44,   44,
-       44,   44,   44,  326,   44,   44,   44,   44,   44, 1461,
-      326,   49,  406,   50,   50,   54,   54,   54,   50,   55,
-       55,   55,   56,   56,   56,  287,  287,  287,   50,  396,
-      464,   54,  406,   44,   44,   55,  564,  464,   56,  564,
-     1464,   44,   47,   47,   47,   47,   47,   47,   47,   47,
-       47,   47,   47,   47,   47,   47,   47,   50,   47,   47,
-
-       47,   47,   47,   57,   57,   57,   58,   58,   58,   59,
-       59,   59,  296,   60,   60,   60,   63,   63,   63,   57,
-      318,  340,   58,  274,  284,   59,  296,   47,   47,   60,
-      274,  284,   63, 1479, 1480,   47,  318,  340,   47,  274,
-      284,  298,  298,  298,   47,   48,   48,   48,   48,   48,
-       48,   48,   48,   48,   48,   48,   48,   48,   48,   48,
-      519,   48,   48,   48,   48,   48,   64,   64,   64,   67,
-       67,   67,   68,   68,   68,  397,   69,   69,   69,   70,
-       70,   70,   64,  353,  365,   67,  313,  371,   68,  376,
-       48,   48,   69,  313,  371,   70, 1488,  519,   48,  353,
-
-      365,   48,  313,  371,  240,  376, 1491,   48,   51,   51,
-       51,   51,   51,   51,   51,   51,   51,   51,   51,   51,
-       51,   51,   51,  397,   51,   51,   51,   51,   51,   71,
-       71,   71,   72,   72,   72,   73,   73,   73,  398,   74,
-       74,   74,   75,   75,   75,   71,  240,  387,   72,  403,
-      382,   73,  240,   51,   51,   74,  240,  382,   75, 1492,
-      452,  240,   51,  387,   51,  403,  382,   51,  303,  303,
-      303,  452,   51,   51,   52,   52,   52,   52,   52,   52,
-       52,   52,   52,   52,   52,   52,   52,   52,   52,  398,
-       52,   52,   52,   52,   52,   76,   76,   76,   77,   77,
-
-       77,   78,   78,   78,  456,   79,   79,   79,   80,   80,
-       80,   76, 1391,  888,   77,  415,  411,   78,  888,   52,
-       52,   79,  415, 1496,   80,  312,  312,  312,   52,  411,
-       52,  415,  482,   52,  315,  315,  315, 1391,   52,   52,
-       61,   61,   61,   61,   61,   61,   61,   61,   61,   61,
-       61,   61,   61,   61,   61,  456,   61,   61,   61,   61,
-       61,   81,   81,   81,   82,   82,   82,   83,   83,   83,
-      412,   84,   84,   84,   85,   85,   85,   81, 1503,  482,
-       82,  412,  412,   83,  478,   61,   61,   84,  420,  431,
-       85,  478,   61,  323,  323,  323,  431,   61,  337,  337,
-
-      337,  346,  346,  346,  420,  431,   61,   62,   62,   62,
-       62,   62,   62,   62,   62,   62,   62,   62,   62,   62,
-       62,   62,  555,   62,   62,   62,   62,   62,   86,   86,
-       86,   87,   87,   87,   88,   88,   88,  555,   89,   89,
-       89,   90,   90,   90,   86,  577,  436,   87,  577, 1504,
-       88, 1505,   62,   62,   89,  447,  442,   90, 1506,   62,
-     1509,  331,  436,  442,   62,  350,  350,  350,  358,  358,
-      358,  447,  442,   62,   65,   65,   65,   65,   65,   65,
-       65,   65,   65,   65,   65,   65,   65,   65,   65,  331,
-       65,   65,   65,   65,   65,   91,   91,   91,   92,   92,
-
-       92,   93,   93,   93,  331,   94,   94,   94,   95,   95,
-       95,   91,  461,  474,   92,  586, 1513,   93,  586,   65,
-       65,   94,  506, 1516,   95,  362,  362,  362,  461,  474,
-       65,  370,  370,  370,  373,  373,  373,  521,   65,   66,
-       66,   66,   66,   66,   66,   66,   66,   66,   66,   66,
-       66,   66,   66,   66, 1518,   66,   66,   66,   66,   66,
-       96,   96,   96,   99,   99,   99,  100,  100,  100,  506,
-      101,  101,  101,  102,  102,  102,   96,  487,  498,   99,
-     1520, 1521,  100,  542,   66,   66,  101, 1522,  521,  102,
-      381,  381,  381,  487,  498,   66,  384,  384,  384,  395,
-
-      395,  395, 1525,   66,   97,   97,   97,   97,   97,   97,
-       97,   97,   97,   97,   97,   97,   97,   97,   97, 1527,
-       97,   97,   97,   97,   97,  103,  103,  103,  104,  104,
-      104,  105,  105,  105,  542,  106,  106,  106,  400,  400,
-      400,  103,  511,  526,  104, 1529,  493,  105,  581,   97,
-       97,  106,  581,  493,   97,  414,  414,  414,  511,  526,
-       97,  467,  493,   97,   98,   98,   98,   98,   98,   98,
-       98,   98,   98,   98,   98,   98,   98,   98,   98, 1534,
-       98,   98,   98,   98,   98,  109,  109,  109,  110,  110,
-      110,  111,  111,  111, 1539,  112,  112,  112,  417,  417,
-
-      417,  109,  520,  536,  110,  547,  531,  111,  467,   98,
-       98,  112,  467,  531,   98,  430,  430,  430,  605,  536,
-       98,  547,  531,   98,  107,  107,  107,  107,  107,  107,
-      107,  107,  107,  107,  107,  107,  107,  107,  107,  520,
-      107,  107,  107,  107,  107,  113,  113,  113,  114,  114,
-      114,  115,  115,  115,  605,  116,  116,  116,  119,  119,
-      119,  113, 1543, 1544,  114,  583,  587,  115,  669,  107,
-      107,  116,  669, 1546,  119,  433,  433,  433,  583,  587,
-      107,  441,  441,  441,  444,  444,  444,  454,  454,  454,
-      107,  108,  108,  108,  108,  108,  108,  108,  108,  108,
-
-      108,  108,  108,  108,  108,  108, 1558,  108,  108,  108,
-      108,  108,  120,  120,  120,  123,  123,  123,  124,  124,
-      124, 1561,  127,  127,  127,  128,  128,  128,  120,  589,
-      757,  123,  589,  591,  124, 1562,  108,  108,  127,  591,
-     1556,  128,  458,  458,  458,  591,  757,  108,  466,  466,
-      466,  471,  471,  471,  480,  480,  480,  108,  117,  117,
-      117,  117,  117,  117,  117,  117,  117,  117,  117,  117,
-      117,  117,  117, 1556,  117,  117,  117,  117,  117,  129,
-      129,  129,  130,  130,  130,  131,  131,  131, 1563,  132,
-      132,  132,  133,  133,  133,  129,  593, 1564,  130,  593,
-
-      594,  131, 1566,  117,  117,  132,  594, 1567,  133,  484,
-      484,  484,  594, 1569,  117,  492,  492,  492,  117,  118,
-      118,  118,  118,  118,  118,  118,  118,  118,  118,  118,
-      118,  118,  118,  118, 1570,  118,  118,  118,  118,  118,
-      134,  134,  134,  137,  137,  137,  138,  138,  138, 1571,
-      141,  141,  141,  142,  142,  142,  134,  664, 1575,  137,
-      664,  595,  138, 1577,  118,  118,  141,  595, 1580,  142,
-      495,  495,  495,  595, 1581,  118,  504,  504,  504,  118,
-      121,  121,  121,  121,  121,  121,  121,  121,  121,  121,
-      121,  121,  121,  121,  121, 1582,  121,  121,  121,  121,
-
-      121,  145,  145,  145,  146,  146,  146,  149,  149,  149,
-     1584,  150,  150,  150,  151,  151,  151,  145,  954, 1586,
-      146, 1555,  954,  149, 1221,  121,  121,  150, 1554, 1587,
-      151,  508,  508,  508,  518,  518,  518,  523,  523,  523,
-      121,  530,  530,  530, 1221, 1554,  121,  122,  122,  122,
-      122,  122,  122,  122,  122,  122,  122,  122,  122,  122,
-      122,  122, 1555,  122,  122,  122,  122,  122,  152,  152,
-      152,  153,  153,  153,  154,  154,  154,  982,  155,  155,
-      155,  156,  156,  156,  152, 1589, 1591,  153, 1594,  982,
-      154, 1595,  122,  122,  155, 1597, 1598,  156,  533,  533,
-
-      533,  540,  540,  540,  544,  544,  544,  122,  552,  552,
-      552, 1599, 1601,  122,  125,  125,  125,  125,  125,  125,
-      125,  125,  125,  125,  125,  125,  125,  125,  125, 1607,
-      125,  125,  125,  125,  125,  159,  159,  159,  160,  160,
-      160,  161,  161,  161, 1596,  162,  162,  162, 1608,  553,
-     1600,  159, 1596, 1611,  160, 1624,  553,  161, 1600,  125,
-      125,  162,  125,  619,  125,  553,  554,  554,  554,  619,
-      125,  563,  563,  563, 1625,  619,  125, 1630, 1631,  125,
-      126,  126,  126,  126,  126,  126,  126,  126,  126,  126,
-      126,  126,  126,  126,  126, 1632,  126,  126,  126,  126,
-
-      126,  163,  163,  163,  164,  164,  164,  165,  165,  165,
-     1636,  166,  166,  166,  603,  603,  603,  163, 1637,  635,
-      164,  638,  639,  165,  871,  126,  126,  166,  126,  563,
-      126,  603,  635,  871,  638,  639,  126,  760,  760,  760,
-      871,  760,  126, 1643, 1650,  126,  135,  135,  135,  135,
-      135,  135,  135,  135,  135,  135,  135,  135,  135,  135,
-      135,  135,  135,  135,  135,  135,  135,  135,  135,  135,
-      135,  135,  135,  135,  135,  135,  135,  135,  135,  135,
-      135,  135,  135,  135,  135,  135,  135,  135,  135,  135,
-      135,  135,  135,  135,  135,  135,  135,  135,  135,  135,
-
-      135,  135,  135,  135,  135,  135,  135,  135,  135,  135,
-      135,  135,  135,  135,  135,  135,  135,  135,  139,  139,
-      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
-      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
-      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
-      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
-      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
-      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
-      139,  139,  139,  139,  139,  139,  139,  139,  139,  139,
-      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
-
-      143,  143,  143,  143,  143, 1651,  143,  143,  143,  143,
-      143,  169,  169,  169,  170,  170,  170,  171,  171,  171,
-      993,  172,  172,  172,  611,  611,  611,  169, 1652, 1656,
-      170, 1662,  993,  171, 1666,  143,  143,  172, 1669, 1671,
-      143,  611,  969,  969,  969, 1673,  143,  144,  144,  144,
-      144,  144,  144,  144,  144,  144,  144,  144,  144,  144,
-      144,  144, 1675,  144,  144,  144,  144,  144,  173,  173,
-      173,  174,  174,  174,  175,  175,  175, 1026,  176,  176,
-      176,  628,  628,  628,  173, 1450, 1676,  174, 1677, 1026,
-      175, 1450,  144,  144,  176, 1450, 1680,  144,  628, 1450,
-
-      772,  772,  772,  144,  147,  147,  147,  147,  147,  147,
-      147,  147,  147,  147,  147,  147,  147,  147,  147, 1682,
-      147,  147,  147,  147,  147,  179,  179,  179,  180,  180,
-      180,  183,  183,  183, 1687,  184,  184,  184,  185,  185,
-      185,  179, 1689, 1696,  180, 1697, 1698,  183, 1700,  147,
-      147,  184, 1711,  147,  185,  791,  791,  791, 1711, 1714,
-      147, 1719,  147,  772, 1713, 1720,  830,  830,  830,  147,
-      148,  148,  148,  148,  148,  148,  148,  148,  148,  148,
-      148,  148,  148,  148,  148, 1724,  148,  148,  148,  148,
-      148,  186,  186,  186,  187,  187,  187,  188,  188,  188,
-
-     1725,  189,  189,  189,  190,  190,  190,  186, 1726, 1713,
-      187, 1731, 1737,  188, 1739,  148,  148,  189,  791,  148,
-      190, 1740, 1743,  802,  802,  802,  148,  802,  148,  830,
-      802,  836,  836,  836, 1746,  148,  157,  157,  157,  157,
-      157,  157,  157,  157,  157,  157,  157,  157,  157,  157,
-      157, 1750,  157,  157,  157,  157,  157,  193,  193,  193,
-      194,  194,  194,  195,  195,  195, 1751,  196,  196,  196,
-      197,  197,  197,  193, 1752, 1753,  194, 1754, 1755,  195,
-     1756,  157,  157,  196, 1757, 1758,  197,  157,  810,  810,
-      810, 1759,  810, 1764,  836,  810,  989,  989,  989, 1780,
-
-     1781,  157,  158,  158,  158,  158,  158,  158,  158,  158,
-      158,  158,  158,  158,  158,  158,  158, 1784,  158,  158,
-      158,  158,  158,  198,  198,  198,  199,  199,  199,  200,
-      200,  200, 1782,  203,  203,  203,  204,  204,  204,  198,
-     1782, 1785,  199, 1783, 1786,  200, 1790,  158,  158,  203,
-     1796, 1783,  204,  158,  826,  826,  826, 1797,  826, 1798,
-     1803,  826, 1235, 1235, 1235, 1807, 1808,  158,  167,  167,
-      167,  167,  167,  167,  167,  167,  167,  167,  167,  167,
-      167,  167,  167, 1809,  167,  167,  167,  167,  167,  207,
-      207,  207,  208,  208,  208,  209,  209,  209, 1712,  210,
-
-      210,  210,  211,  211,  211,  207, 1451, 1811,  208, 1814,
-     1815,  209, 1451,  167,  167,  210, 1451, 1818,  211,  167,
-     1451, 1819,  167,  841,  841,  841, 1822,  841, 1829, 1712,
-      841, 1831, 1844,  167,  168,  168,  168,  168,  168,  168,
-      168,  168,  168,  168,  168,  168,  168,  168,  168, 1849,
-      168,  168,  168,  168,  168,  212,  212,  212,  213,  213,
-      213,  214,  214,  214, 1816,  217,  217,  217,  218,  218,
-      218,  212, 1816, 1848,  213, 1857, 1865,  214, 1817,  168,
-      168,  217, 1866,  324,  218,  168, 1817,  325,  168, 1237,
-     1237, 1237, 1870,  324, 1872, 1849,  332,  325, 1884,  168,
-
-      177,  177,  177,  177,  177,  177,  177,  177,  177,  177,
-      177,  177,  177,  177,  177, 1848,  177,  177,  177,  177,
-      177,  324,  643,  643,  643,  325, 1885,  324, 1886, 1887,
-      324,  648,  648,  648, 1888, 1237,  324,  324,  325,  643,
-      332,  332,  325,  332, 1889,  177,  177, 1890,  648,  332,
-      332,  177, 1240, 1240, 1240, 1891,  177,  178,  178,  178,
-      178,  178,  178,  178,  178,  178,  178,  178,  178,  178,
-      178,  178, 1892,  178,  178,  178,  178,  178,  653,  653,
-      653,  665,  665,  665,  674,  674,  674,  676,  676,  676,
-      691,  691,  691, 1893, 1899,  653, 1901, 1908,  665, 1909,
-
-     1910,  674,  178,  178,  676, 1911, 1912,  691,  178, 1243,
-     1243, 1243, 1913,  178,  181,  181,  181,  181,  181,  181,
-      181,  181,  181,  181,  181,  181,  181,  181,  181, 1914,
-      181,  181,  181,  181,  181,  699,  699,  699,  704,  704,
-      704,  726,  726,  726,  748,  748,  748,  752,  752,  752,
-     1916, 1917,  699, 1922, 1923,  704, 1925, 1926,  726,  181,
-      181,  748, 1927, 1928,  752,  181, 1935, 1936,  181,  846,
-      846,  846, 1937,  846, 1938, 1939,  846, 1940, 1941,  181,
-      182,  182,  182,  182,  182,  182,  182,  182,  182,  182,
-      182,  182,  182,  182,  182, 1942,  182,  182,  182,  182,
-
-      182,  770,  770,  770,  771,  771,  771, 1944, 1959,  798,
-      798,  798,  799,  799,  799,  801,  801,  801, 1964,  770,
-     1968, 1969,  771, 1970, 1973,  182,  182,  798, 1977, 1978,
-      799,  182,  801, 1960,  182,  851,  851,  851, 1979,  851,
-     1959, 1980,  851, 1981, 1982,  182,  191,  191,  191,  191,
-      191,  191,  191,  191,  191,  191,  191,  191,  191,  191,
-      191,  771,  191,  191,  191,  191,  191,  805,  805,  805,
-     1960,  799,  806,  806,  806, 1983,  809,  809,  809,  811,
-      811,  811,  817,  817,  817,  805, 1984,  813,  813,  813,
-      806,  191,  191,  809, 1985, 1986,  811, 1988, 1989,  191,
-
-      817,  191, 1994,  191,  813, 1252, 1252, 1252, 1277, 1277,
-     1277,  191,  192,  192,  192,  192,  192,  192,  192,  192,
-      192,  192,  192,  192,  192,  192,  192, 1995,  192,  192,
-      192,  192,  192, 1996, 1998,  806,  823,  823,  823, 2002,
-     2003,  824,  824,  824, 2006, 2010,  818,  818,  818,  825,
-      825,  825, 2011, 2013,  823, 2016, 2017,  192,  192,  824,
-     1288, 1288, 1288, 2018,  818,  192,  825,  192, 2019,  192,
-     1289, 1289, 1289, 1406, 1406, 1406, 2021,  192,  201,  201,
-      201,  201,  201,  201,  201,  201,  201,  201,  201,  201,
-      201,  201,  201,  818,  201,  201,  201,  201,  201,  828,
-
-      828,  828, 2024, 2026,  824, 2048, 2049,  829,  829,  829,
-      840,  840,  840,  843,  843,  843, 1289,  828,  844,  844,
-      844, 2050, 2051,  201,  201,  829, 2057,  840,  845,  845,
-      845,  843, 2043,  863,  863,  863,  844,  863, 2044, 2058,
-      863, 1408, 1408, 1408,  829,  845,  201,  202,  202,  202,
-      202,  202,  202,  202,  202,  202,  202,  202,  202,  202,
-      202,  202, 2045,  202,  202,  202,  202,  202,  848,  848,
-      848, 2043,  849,  849,  849, 2044, 2059,  850,  850,  850,
-      853,  853,  853,  844, 2060, 2061,  848,  854,  854,  854,
-      849, 2062,  202,  202,  850,  857,  857,  857,  853,  873,
-
-      873,  873, 2063,  873, 2045,  854,  873,  876,  876,  876,
-     2064,  876, 2065,  857,  876,  202,  205,  205,  205,  205,
-      205,  205,  205,  205,  205,  205,  205,  205,  205,  205,
-      205, 2066,  205,  205,  205,  205,  205,  849,  858,  858,
-      858,  862,  862,  862, 1410, 1410, 1410,  854,  866,  866,
-      866,  867,  867,  867, 2068, 2069,  858, 2073,  862, 2079,
-     2080,  205,  205,  891,  891,  891,  866,  891, 2084,  867,
-      891, 2087,  205,  206,  206,  206,  206,  206,  206,  206,
-      206,  206,  206,  206,  206,  206,  206,  206, 2095,  206,
-      206,  206,  206,  206, 2096,  872,  872,  872,  875,  875,
-
-      875, 2097,  858,  877,  877,  877,  885,  885,  885, 2121,
-     2122,  867,  872, 2123, 2126,  875, 2117, 2118,  206,  206,
-      877,  899,  899,  899,  885,  899, 2127, 2129,  899,  206,
-      215,  215,  215,  215,  215,  215,  215,  215,  215,  215,
-      215,  215,  215,  215,  215, 2117,  215,  215,  215,  215,
-      215,  890,  890,  890,  892,  892,  892, 2054, 2118,  895,
-      895,  895, 2130,  886,  886,  886, 2133, 2054,  890, 2134,
-     2054,  892,  896,  896,  896,  215,  215,  895,  898,  898,
-      898,  886, 1412, 1412, 1412, 2135,  215,  904,  904,  904,
-      896,  904, 2136, 2138,  904,  898, 2139, 2140,  215,  216,
-
-      216,  216,  216,  216,  216,  216,  216,  216,  216,  216,
-      216,  216,  216,  216, 2141,  216,  216,  216,  216,  216,
-      886, 2145, 2153,  896,  900,  900,  900, 2105,  901,  901,
-      901,  903,  903,  903,  908,  908,  908, 2105,  909,  909,
-      909, 2119,  900, 2105,  216,  216,  901, 2154,  903,  910,
-      910,  910,  908, 2155, 2159,  216,  909,  911,  911,  911,
-      912,  912,  912,  913,  913,  913,  910,  216,  258, 2167,
-     2128,  914,  914,  914,  911,  258, 2169,  912,  916,  916,
-      916,  913, 2119, 2128,  258,  258, 2177, 2178,  901,  914,
-      917,  917,  917,  909, 2179,  916, 2180, 2181,  918,  918,
-
-      918, 1357, 1357, 1357,  919,  919,  919,  917, 2182,  920,
-      920,  920,  258,  258,  258,  918, 2188, 2192,  912,  258,
-      258,  919,  258,  258, 2193, 2131,  258,  920,  258,  258,
-      258,  914,  921,  921,  921,  923,  923,  923, 2131, 2197,
-      917,  924,  924,  924, 2187,  924, 2198, 1357,  924, 2199,
-      921, 2188,  923, 2200,  917,  925,  925,  925,  926,  926,
-      926, 2201,  919,  927,  927,  927,  928,  928,  928,  921,
-      929,  929,  929,  925, 2202, 2203,  926,  930,  930,  930,
-      927, 2204, 2206,  928,  931,  931,  931,  929,  936,  936,
-      936, 2187,  937,  937,  937,  930,  940,  940,  940,  941,
-
-      941,  941,  931,  942,  942,  942,  936,  946,  946,  946,
-      937, 2207, 2208,  926,  940, 2209,  928,  941, 2210, 2211,
-      942,  943,  943,  943,  946,  943, 2212, 2213,  943, 2220,
-      928,  944,  944,  944,  945,  945,  945,  947,  947,  947,
-     2055,  947, 2224, 2225,  947,  949,  949,  949, 2226,  944,
-     2055, 2227,  945, 2055,  931,  937,  950,  950,  950,  965,
-      965,  965,  941,  949,  966,  966,  966,  968,  968,  968,
-      995,  995,  995, 2234,  950, 2237, 2239,  965,  996,  996,
-      996, 2244,  966, 2245, 2246,  968, 2239,  995,  997,  997,
-      997,  999,  999,  999,  945, 2247,  996, 2106, 1000, 1000,
-
-     1000, 1001, 1001, 1001, 2248, 1001,  997, 2106, 1001,  999,
-     1004, 1004, 1004, 2106,  968, 1000, 1006, 1006, 1006,  950,
-     1007, 1007, 1007, 2240, 1009, 1009, 1009, 1004, 1011, 1011,
-     1011, 2242, 1011, 2240, 1006, 1011, 2249, 2258, 1007, 2243,
-      999, 2242, 1009, 1014, 1014, 1014, 1015, 1015, 1015, 2243,
-     1015, 2259, 2260, 1015, 2261, 1016, 1016, 1016, 2262, 2263,
-     1014, 1017, 1017, 1017, 1020, 1020, 1020, 1022, 1022, 1022,
-     1004, 1009, 1016, 1018, 1018, 1018, 2264, 1018, 1017, 2265,
-     1018, 1020, 1023, 1023, 1023, 1022, 1025, 1025, 1025, 1028,
-     1028, 1028, 1030, 1030, 1030, 1031, 1031, 1031, 2251, 2268,
-
-     1023, 1033, 1033, 1033, 1025, 2269, 1028, 1034, 1034, 1034,
-     1030, 1034, 2271, 1031, 1034, 1038, 1038, 1038, 2272, 1033,
-     1039, 1039, 1039, 1041, 1041, 1041, 2273, 1051, 1051, 1051,
-     2275, 1051, 2251, 1038, 1051, 1055, 1055, 1055, 1039, 2282,
-     2283, 1041, 1056, 1056, 1056, 1025, 2284, 2286, 1033, 1058,
-     1058, 1058, 2292, 1055, 1059, 1059, 1059, 2293, 1059, 2294,
-     1056, 1059, 1063, 1063, 1063, 2295, 2296, 1058, 1064, 1064,
-     1064, 1066, 1066, 1066, 1067, 1067, 1067, 2297, 1067, 2298,
-     1063, 1067, 1070, 1070, 1070, 2299, 1064, 2300, 2301, 1066,
-     1071, 1071, 1071, 1072, 1072, 1072, 1074, 1074, 1074, 1070,
-
-     1075, 1075, 1075, 2303, 1076, 1076, 1076, 2304, 1071, 1058,
-     2316, 1072, 2317, 2308, 1074, 2318, 2319, 1075, 1077, 1077,
-     1077, 1076, 1078, 1078, 1078, 1080, 1080, 1080, 1083, 1083,
-     1083, 1066, 1076, 1089, 1089, 1089, 1077, 1084, 1084, 1084,
-     1078, 1084, 2320, 1080, 1084, 1083, 1090, 1090, 1090, 2321,
-     2322, 1089, 1092, 1092, 1092, 2308, 1099, 1099, 1099, 2323,
-     1099, 2327, 1074, 1099, 1090, 1102, 1102, 1102, 2328, 2329,
-     1092, 1103, 1103, 1103, 2330, 1103, 2331, 2332, 1103, 1106,
-     1106, 1106, 1102, 2336, 1107, 1107, 1107, 2337, 1107, 2338,
-     1080, 1107, 1115, 1115, 1115, 2341, 1106, 1116, 1116, 1116,
-
-     1118, 1118, 1118, 2346, 1123, 1123, 1123, 2347, 1123, 2348,
-     1115, 1123, 1126, 1126, 1126, 1116, 1092, 2349, 1118, 1127,
-     1127, 1127, 2350, 1127, 2351, 2352, 1127, 2353, 2354, 1126,
-     1130, 1130, 1130, 1131, 1131, 1131, 1133, 1133, 1133, 1135,
-     1135, 1135, 2355, 1135, 2356, 2357, 1135, 2364, 1130, 2358,
-     2360, 1131, 2367, 2368, 1133, 1138, 1138, 1138, 1139, 1139,
-     1139, 1141, 1141, 1141, 2360, 2371, 1118, 1143, 1143, 1143,
-     2373, 1143, 2374, 1138, 1143, 2361, 1139, 2376, 2377, 1141,
-     1149, 1149, 1149, 1150, 1150, 1150, 2361, 1133, 1152, 1152,
-     1152, 1153, 1153, 1153, 2358, 1154, 1154, 1154, 1149, 1154,
-
-     2380, 1150, 1154, 1155, 1155, 1155, 1152, 2381, 1153, 1156,
-     1156, 1156, 2382, 1156, 2386, 2394, 1156, 1158, 1158, 1158,
-     1155, 1159, 1159, 1159, 1161, 1161, 1161, 1141, 1163, 1163,
-     1163, 1167, 1167, 1167, 2384, 1158, 1164, 1164, 1164, 1159,
-     1164, 2396, 1161, 1164, 2398, 1163, 2384, 1152, 1167, 1168,
-     1168, 1168, 2400, 1168, 2408, 2406, 1168, 1170, 1170, 1170,
-     1171, 1171, 1171, 1173, 1173, 1173, 1175, 1175, 1175, 2406,
-     1175, 2407, 2407, 1175, 2410, 1170, 2385, 2391, 1171, 2412,
-     2413, 1173, 1178, 1178, 1178, 1179, 1179, 1179, 2385, 2391,
-     1161, 1181, 1181, 1181, 1182, 1182, 1182, 1183, 1183, 1183,
-
-     1178, 1183, 2414, 1179, 1183, 1186, 1186, 1186, 2392, 1181,
-     2409, 1182, 1187, 1187, 1187, 2415, 1187, 2424, 2426, 1187,
-     2392, 2409, 1186, 1188, 1188, 1188, 1173, 1189, 1189, 1189,
-     1191, 1191, 1191, 2429, 1193, 1193, 1193, 1196, 1196, 1196,
-     2405, 1188, 1197, 1197, 1197, 1189, 2431, 2437, 1191, 2438,
-     1181, 1193, 1199, 1199, 1199, 1196, 1202, 1202, 1202, 2439,
-     1197, 1203, 1203, 1203, 1205, 1205, 1205, 1209, 1209, 1209,
-     1199, 1206, 1206, 1206, 1202, 1206, 2441, 2442, 1206, 1203,
-     2405, 2423, 1205, 2443, 2425, 1209, 1210, 1210, 1210, 2428,
-     2430, 1191, 1212, 1212, 1212, 1213, 1213, 1213, 2444, 1213,
-
-     2423, 2451, 1213, 2425, 1210, 1217, 1217, 1217, 2428, 2430,
-     1212, 2452, 1199, 1218, 1218, 1218, 2453, 1205, 1220, 1220,
-     1220, 2454, 2455, 1217, 1222, 1222, 1222, 1229, 1229, 1229,
-     2456, 1218, 1255, 1255, 1255, 2459, 1220, 1256, 1256, 1256,
-     2460, 1256, 1222, 1222, 1256, 1229, 1257, 1257, 1257, 1255,
-     2461, 1212, 1258, 1258, 1258, 1259, 1259, 1259, 2462, 1259,
-     2463, 2464, 1259, 2466, 1257, 1262, 1262, 1262, 2468, 1258,
-     1264, 1264, 1264, 2470, 1264, 2478, 2480, 1264, 1220, 1267,
-     1267, 1267, 2481, 1262, 1268, 1268, 1268, 2478, 1268, 2479,
-     2482, 1268, 1229, 1269, 1269, 1269, 1267, 1269, 2483, 2484,
-
-     1269, 2479, 2485, 1257, 1273, 1273, 1273, 2489, 1274, 1274,
-     1274, 2490, 1274, 2491, 1262, 1274, 1276, 1276, 1276, 2492,
-     2493, 1273, 1279, 1279, 1279, 1280, 1280, 1280, 2494, 1280,
-     2497, 2495, 1280, 2498, 1276, 1281, 1281, 1281, 2499, 1279,
-     1282, 1282, 1282, 1284, 1284, 1284, 1295, 1295, 1295, 1296,
-     1296, 1296, 1281, 1298, 1298, 1298, 2495, 2500, 1282, 2501,
-     2502, 1284, 2503, 1295, 2504, 2505, 1276, 1296, 1299, 1299,
-     1299, 1298, 1300, 1300, 1300, 2506, 1300, 2507, 2508, 1300,
-     1301, 1301, 1301, 2509, 2510, 1299, 1302, 1302, 1302, 1282,
-     1303, 1303, 1303, 2511, 1303, 2512, 2513, 1303, 1301, 1305,
-
-     1305, 1305, 2514, 1302, 1308, 1308, 1308, 1309, 1309, 1309,
-     2518, 1309, 1296, 2519, 1309, 2520, 1298, 1305, 1310, 1310,
-     1310, 1308, 2521, 1311, 1311, 1311, 1312, 1312, 1312, 1316,
-     1316, 1316, 1319, 1319, 1319, 1310, 1324, 1324, 1324, 1301,
-     1311, 1320, 1320, 1320, 1312, 1320, 1316, 2522, 1320, 1319,
-     1321, 1321, 1321, 1324, 1321, 2515, 2523, 1321, 2524, 1305,
-     1331, 1331, 1331, 1333, 1333, 1333, 1336, 1336, 1336, 1311,
-     1336, 2525, 2526, 1336, 2515, 1339, 1339, 1339, 1331, 2527,
-     1333, 1341, 1341, 1341, 1343, 1343, 1343, 1347, 1347, 1347,
-     2528, 1312, 1339, 2529, 1348, 1348, 1348, 2530, 2531, 1341,
-
-     2532, 2533, 1343, 2534, 1347, 2535, 1349, 1349, 1349, 2536,
-     1349, 2537, 1348, 1349, 1352, 1352, 1352, 2538, 1352, 2539,
-     2540, 1352, 2541, 2534, 1331, 1356, 1356, 1356, 1358, 1358,
-     1358, 2542, 1358, 1347, 2543, 1358, 2544, 2545, 1363, 1363,
-     1363, 2546, 1363, 1356, 1341, 1363, 1367, 1367, 1367, 1343,
-     1348, 1369, 1369, 1369, 1370, 1370, 1370, 2547, 1370, 2548,
-     2549, 1370, 2550, 2552, 1367, 2551, 1375, 1375, 1375, 1369,
-     1375, 2551, 2553, 1375, 1378, 1378, 1378, 1380, 1380, 1380,
-     1381, 1381, 1381, 2554, 1381, 2555, 2556, 1381, 2557, 2559,
-     1356, 2560, 1378, 2562, 1380, 1384, 1384, 1384, 1386, 1386,
-
-     1386, 1387, 1387, 1387, 2563, 2565, 1367, 1369, 1388, 1388,
-     1388, 2566, 2569, 1384, 2570, 1386, 1389, 1389, 1389, 1387,
-     2571, 1378, 1390, 1390, 1390, 2572, 1388, 1393, 1393, 1393,
-     1400, 1400, 1400, 1389, 1415, 1415, 1415, 1417, 1417, 1417,
-     1390, 1419, 1419, 1419, 1384, 1393, 2574, 2568, 1400, 1424,
-     1424, 1424, 1426, 1426, 1426, 1427, 1427, 1427, 2576, 1427,
-     1388, 2568, 1427, 1430, 1430, 1430, 2578, 1387, 1431, 1431,
-     1431, 2580, 1431, 2582, 2583, 1431, 2584, 2585, 1393, 2586,
-     2587, 1430, 1400, 1390, 1436, 1436, 1436, 1419, 1438, 1438,
-     1438, 2588, 1438, 2589, 1393, 1438, 2591, 2593, 1426, 2595,
-
-     1417, 2596, 1436, 1442, 1442, 1442, 2597, 1442, 2598, 2607,
-     1442, 1441, 1446, 1446, 1446, 1447, 1447, 1447, 1449, 1449,
-     1449, 2599, 1449, 2615, 2608, 1449, 1452, 1452, 1452, 1430,
-     1446, 2615, 1453, 1453, 1453, 1436, 1453, 1437, 1435, 1453,
-     1454, 1454, 1454, 1452, 1458, 1458, 1458, 1459, 1459, 1459,
-     1460, 1460, 1460, 1462, 1462, 1462, 2607, 2599, 1454, 1463,
-     1463, 1463, 1465, 1465, 1465, 2613, 1466, 1466, 1466, 2613,
-     1466, 2608, 1446, 1466, 1467, 1467, 1467, 2611, 2600, 1465,
-     1468, 1468, 1468, 1469, 1469, 1469, 1470, 1470, 1470, 2612,
-     1470, 1454, 1467, 1470, 1473, 1473, 1473, 1468, 1474, 1474,
-
-     1474, 1469, 1474, 2621, 2609, 1474, 1477, 1477, 1477, 1478,
-     1478, 1478, 1473, 1460, 2600, 2622, 1462, 1484, 1484, 1484,
-     2611, 1467, 1463, 1477, 1481, 1481, 1481, 1478, 1481, 2614,
-     1469, 1481, 2612, 2614, 1484, 1485, 1485, 1485, 1434, 1485,
-     2621, 2616, 1485, 1486, 1486, 1486, 1487, 1487, 1487, 2616,
-     1487, 2609, 2622, 1487, 1425, 1489, 1489, 1489, 2629, 1473,
-     1486, 1490, 1490, 1490, 1493, 1493, 1493, 1494, 1494, 1494,
-     2619, 1494, 1478, 1489, 1494, 1495, 1495, 1495, 1497, 1497,
-     1497, 1493, 1497, 2623, 2610, 1497, 1500, 1500, 1500, 1501,
-     1501, 1501, 1495, 1501, 2620, 2629, 1501, 1502, 1502, 1502,
-
-     1507, 1507, 1507, 1500, 1508, 1508, 1508, 1510, 1510, 1510,
-     1423, 1511, 1511, 1511, 1502, 1511, 2619, 1507, 1511, 1512,
-     1512, 1512, 1508, 2623, 1510, 1514, 1514, 1514, 1515, 1515,
-     1515, 2610, 1515, 2617, 2624, 1515, 1512, 1517, 1517, 1517,
-     2620, 2617, 1514, 1519, 1519, 1519, 1523, 1523, 1523, 1524,
-     1524, 1524, 2618, 1524, 2665, 1517, 1524, 1526, 1526, 1526,
-     2618, 1519, 2665, 1523, 1528, 1528, 1528, 1422, 2627, 1508,
-     1530, 1530, 1530, 2631, 2624, 1526, 1531, 1531, 1531, 1532,
-     1532, 1532, 1528, 1533, 1533, 1533, 2625, 1530, 1535, 1535,
-     1535, 2626, 2632, 1531, 1519, 2630, 1532, 1536, 1536, 1536,
-
-     2628, 1533, 1537, 1537, 1537, 2631, 1535, 1538, 1538, 1538,
-     1545, 1545, 1545, 2627, 1536, 1528, 1540, 1540, 1540, 1537,
-     1540, 2625, 1421, 1540, 2632, 1538, 2626, 1420, 1545, 1547,
-     1547, 1547, 2630, 2637, 1535, 2633, 1548, 1548, 1548, 2634,
-     1548, 2657, 1532, 1548, 2633, 2628, 1547, 1418, 2634, 1533,
-     1549, 1549, 1549, 1416, 1550, 1550, 1550, 1551, 1551, 1551,
-     2638, 1545, 1552, 1552, 1552, 2639, 1552, 2637, 1549, 1552,
-     2657, 1538, 1550, 2645, 1551, 1553, 1553, 1553, 1559, 1559,
-     1559, 1560, 1560, 1560, 1565, 1565, 1565, 1568, 1568, 1568,
-     1572, 1572, 1572, 1553, 2638, 1559, 1573, 1573, 1573, 1560,
-
-     1574, 1574, 1574, 1576, 1576, 1576, 2645, 2639, 1549, 1550,
-     1578, 1578, 1578, 1579, 1579, 1579, 1583, 1583, 1583, 1585,
-     1585, 1585, 1588, 1588, 1588, 1590, 1590, 1590, 1592, 1592,
-     1592, 1593, 1593, 1593, 1605, 1605, 1605, 1585, 1414, 2635,
-     1588, 1560, 1590, 1602, 1602, 1602, 1592, 1602, 1593, 2636,
-     1602, 2640, 1605, 1606, 1606, 1606, 1609, 1609, 1609, 1610,
-     1610, 1610, 1612, 1612, 1612, 1616, 1616, 1616, 2641, 1585,
-     1606, 1613, 1613, 1613, 2635, 1613, 2642, 2661, 1613, 1612,
-     1605, 2646, 2643, 1616, 2636, 2644, 1592, 1617, 1617, 1617,
-     1618, 1618, 1618, 2640, 1618, 2649, 1413, 1618, 1619, 1619,
-
-     1619, 1620, 1620, 1620, 1617, 1621, 1621, 1621, 1622, 1622,
-     1622, 2661, 1622, 2641, 2646, 1622, 1619, 2643, 1616, 1620,
-     2644, 2642, 1621, 1623, 1623, 1623, 1626, 1626, 1626, 2647,
-     1626, 2648, 2649, 1626, 2650, 1629, 1629, 1629, 2647, 1629,
-     2648, 1623, 1629, 1633, 1633, 1633, 1635, 1635, 1635, 2651,
-     2655, 1619, 1638, 1638, 1638, 2662, 1638, 2653, 1411, 1638,
-     2654, 1633, 1641, 1641, 1641, 1642, 1642, 1642, 2666, 1642,
-     1623, 2650, 1642, 1644, 1644, 1644, 2666, 1644, 2652, 1641,
-     1644, 1647, 1647, 1647, 1648, 1648, 1648, 2655, 1648, 2662,
-     2651, 1648, 1649, 1649, 1649, 1653, 1653, 1653, 1647, 1654,
-
-     1654, 1654, 2653, 1654, 2658, 2654, 1654, 1409, 1407, 1649,
-     1405, 2663, 1653, 1655, 1655, 1655, 1657, 1657, 1657, 2652,
-     1657, 2656, 2669, 1657, 1660, 1660, 1660, 1404, 1661, 1661,
-     1661, 1655, 1661, 2658, 2667, 1661, 1663, 1663, 1663, 2668,
-     1663, 1660, 2664, 1663, 1667, 1667, 1667, 1670, 1670, 1670,
-     1672, 1672, 1672, 1674, 1674, 1674, 2663, 1674, 2656, 2669,
-     1674, 2685, 1667, 2670, 1655, 1670, 1403, 1672, 1678, 1678,
-     1678, 1681, 1681, 1681, 1683, 1683, 1683, 1684, 1684, 1684,
-     2667, 1684, 2671, 1402, 1684, 2668, 1678, 2664, 2686, 1681,
-     2672, 1683, 1685, 1685, 1685, 2675, 1672, 1686, 1686, 1686,
-
-     2670, 1686, 1401, 2673, 1686, 1688, 1688, 1688, 2685, 1685,
-     1670, 1690, 1690, 1690, 1691, 1691, 1691, 1692, 1692, 1692,
-     2674, 1692, 2671, 1688, 1692, 1693, 1693, 1693, 2659, 1690,
-     2672, 1691, 1694, 1694, 1694, 2686, 1694, 2659, 2673, 1694,
-     2675, 2677, 1693, 1695, 1695, 1695, 1699, 1699, 1699, 1701,
-     1701, 1701, 1399, 1701, 2660, 2674, 1701, 1704, 1704, 1704,
-     1690, 1695, 2678, 2660, 1699, 1705, 1705, 1705, 2679, 1398,
-     1688, 1395, 1706, 1706, 1706, 1704, 1706, 2680, 2677, 1706,
-     1709, 1709, 1709, 1705, 1715, 1715, 1715, 1716, 1716, 1716,
-     1392, 1716, 2689, 1385, 1716, 1717, 1717, 1717, 1709, 2678,
-
-     2679, 1715, 1718, 1718, 1718, 1383, 2689, 1695, 1704, 2680,
-     1699, 1382, 1379, 1717, 1721, 1721, 1721, 1374, 1705, 1722,
-     1722, 1722, 1723, 1723, 1723, 1727, 1727, 1727, 1728, 1728,
-     1728, 1729, 1729, 1729, 1730, 1730, 1730, 1732, 1732, 1732,
-     1733, 1733, 1733, 1734, 1734, 1734, 1735, 1735, 1735, 1736,
-     1736, 1736, 1738, 1738, 1738, 1741, 1741, 1741, 1717, 1744,
-     1744, 1744, 1745, 1745, 1745, 2681, 1745, 1373, 1368, 1745,
-     1738, 1366, 1362, 1741, 2681, 2683, 1744, 1747, 1747, 1747,
-     1730, 1748, 1748, 1748, 1749, 1749, 1749, 2676, 1749, 1361,
-     1355, 1749, 1760, 1760, 1760, 1747, 1346, 2684, 1748, 1761,
-
-     1761, 1761, 1345, 1738, 1762, 1762, 1762, 2683, 1762, 1344,
-     1760, 1762, 1763, 1763, 1763, 2687, 1761, 1765, 1765, 1765,
-     1766, 1766, 1766, 1767, 1767, 1767, 1768, 1768, 1768, 2684,
-     1768, 2688, 2676, 1768, 1769, 1769, 1769, 1773, 1773, 1773,
-     1767, 1760, 1770, 1770, 1770, 2682, 1770, 2687, 2690, 1770,
-     1342, 1340, 1769, 1335, 2682, 1773, 1774, 1774, 1774, 2690,
-     1776, 1776, 1776, 2688, 1776, 1334, 1766, 1776, 1779, 1779,
-     1779, 1787, 1787, 1787, 1774, 1787, 1332, 1330, 1787, 1329,
-     1791, 1791, 1791, 1328, 1791, 1769, 1779, 1791, 1773, 1794,
-     1794, 1794, 1795, 1795, 1795, 1327, 1795, 1326, 1325, 1795,
-
-     1799, 1799, 1799, 1318, 1799, 1317, 1794, 1799, 1802, 1802,
-     1802, 1804, 1804, 1804, 1315, 1804, 1314, 1313, 1804, 1307,
-     1306, 1779, 1810, 1810, 1810, 1304, 1802, 1812, 1812, 1812,
-     1813, 1813, 1813, 1297, 1813, 1294, 1293, 1813, 1292, 1291,
-     1810, 1820, 1820, 1820, 1812, 1823, 1823, 1823, 1290, 1823,
-     1287, 1286, 1823, 1826, 1826, 1826, 1283, 1826, 1278, 1820,
-     1826, 1830, 1830, 1830, 1832, 1832, 1832, 1275, 1833, 1833,
-     1833, 1802, 1833, 1272, 1263, 1833, 1836, 1836, 1836, 1830,
-     1836, 1261, 1832, 1836, 1839, 1839, 1839, 1840, 1840, 1840,
-     1841, 1841, 1841, 1842, 1842, 1842, 1843, 1843, 1843, 1845,
-
-     1845, 1845, 1839, 1260, 1840, 1254, 1253, 1841, 1251, 1250,
-     1842, 1249, 1830, 1248, 1843, 1247, 1246, 1845, 1245, 1244,
-     1839, 1846, 1846, 1846, 1847, 1847, 1847, 1242, 1241, 1832,
-     1850, 1850, 1850, 1851, 1851, 1851, 1239, 1851, 1238, 1846,
-     1851, 1841, 1847, 1854, 1854, 1854, 1855, 1855, 1855, 1236,
-     1234, 1842, 1856, 1856, 1856, 1858, 1858, 1858, 1845, 1233,
-     1843, 1854, 1859, 1859, 1859, 1860, 1860, 1860, 1861, 1861,
-     1861, 1862, 1862, 1862, 1863, 1863, 1863, 1864, 1864, 1864,
-     1867, 1867, 1867, 1868, 1868, 1868, 1869, 1869, 1869, 1871,
-     1871, 1871, 1874, 1874, 1874, 1875, 1875, 1875, 1232, 1875,
-
-     1231, 1854, 1875, 1878, 1878, 1878, 1230, 1871, 1228, 1874,
-     1879, 1879, 1879, 1227, 1881, 1881, 1881, 1226, 1881, 1225,
-     1878, 1881, 1894, 1894, 1894, 1895, 1895, 1895, 1879, 1895,
-     1216, 1201, 1895, 1898, 1898, 1898, 1900, 1900, 1900, 1200,
-     1894, 1902, 1902, 1902, 1195, 1902, 1194, 1192, 1902, 1905,
-     1905, 1905, 1906, 1906, 1906, 1907, 1907, 1907, 1915, 1915,
-     1915, 1185, 1918, 1918, 1918, 1184, 1918, 1905, 1878, 1918,
-     1906, 1174, 1169, 1907, 1921, 1921, 1921, 1166, 1924, 1924,
-     1924, 1165, 1894, 1929, 1929, 1929, 1931, 1931, 1931, 1162,
-     1157, 1921, 1943, 1943, 1943, 1905, 1924, 1148, 1932, 1932,
-
-     1932, 1929, 1932, 1931, 1147, 1932, 1907, 1945, 1945, 1945,
-     1946, 1946, 1946, 1947, 1947, 1947, 1948, 1948, 1948, 1949,
-     1949, 1949, 1950, 1950, 1950, 1945, 1950, 1946, 1146, 1950,
-     1142, 1947, 1931, 1134, 1948, 1129, 1949, 1951, 1951, 1951,
+       44,   44,   44, 1228,   44,   44,   44,   44,   44,   50,
+       50,   50,   51,   51,   51,   52,   52,   52,  283,  283,
+      283,   55,   55,  291,  313,   50,   55,  548,   51,  338,
+      291,   52,  354,   44,   44,  417,   55, 1495,  417,  291,
+      313,   44,   53,   53,   53,   53,   53,   53,   53,   53,
+       53,   53,   53,   53,   53,   53,   53,  338,   53,   53,
+
+       53,   53,   53, 1498,  548,   55,   59,   59,   59,   60,
+       60,   60,  338,   61,   61,   61,   56,   56,   62,   62,
+       62,   56,   59,  354,  355,   60,  320,   53,   53,   61,
+      471,   56, 1499,  320,   62,   53,  366,  471,   53,  294,
+      294,  294,  320,  367,   53,   54,   54,   54,   54,   54,
+       54,   54,   54,   54,   54,   54,   54,   54,   54,   54,
+       56,   54,   54,   54,   54,   54,   63,   63,   63,   64,
+       64,   64,   65,   65,   65,  355,   66,   66,   66,   69,
+       69,   69,   63,  325,  347,   64,  360,  366,   65,  301,
+       54,   54,   66,  301,  367,   69,  485,  301,   54,  325,
+
+      347,   54,  360,  485,  246, 1503, 1510,   54,   57,   57,
+       57,   57,   57,   57,   57,   57,   57,   57,   57,   57,
+       57,   57,   57,  462,   57,   57,   57,   57,   57,   70,
+       70,   70,   73,   73,   73,   74,   74,   74,  463,   75,
+       75,   75,   76,   76,   76,   70,  246,  372,   73,  383,
+      378,   74,  246,   57,   57,   75,  246,  378,   76, 1511,
+     1512,  246,   57,  372,   57,  383,  378,   57,  305,  305,
+      305,  462,   57,   57,   58,   58,   58,   58,   58,   58,
+       58,   58,   58,   58,   58,   58,   58,   58,   58,  463,
+       58,   58,   58,   58,   58,   77,   77,   77,   78,   78,
+
+       78,   79,   79,   79,  528,   80,   80,   80,   81,   81,
+       81,   77, 1513,  394,   78,  389,  410,   79,  528,   58,
+       58,   80,  389, 1516,   81,  310,  310,  310,   58,  394,
+       58,  389,  410,   58,  319,  319,  319,  489,   58,   58,
+       67,   67,   67,   67,   67,   67,   67,   67,   67,   67,
+       67,   67,   67,   67,   67, 1520,   67,   67,   67,   67,
+       67,   82,   82,   82,   83,   83,   83,   84,   84,   84,
+      419,   85,   85,   85,   86,   86,   86,   82,  418, 1523,
+       83,  419,  419,   84,  489,   67,   67,   85,  427,  422,
+       86,  418,   67,  322,  322,  322,  422,   67,  330,  330,
+
+      330,  344,  344,  344,  427,  422,   67,   68,   68,   68,
+       68,   68,   68,   68,   68,   68,   68,   68,   68,   68,
+       68,   68,  562,   68,   68,   68,   68,   68,   87,   87,
+       87,   88,   88,   88,   89,   89,   89,  562,   90,   90,
+       90,   91,   91,   91,   87,  571,  584,   88,  571,  584,
+       89, 1525,   68,   68,   90,  443,  438,   91, 1527,   68,
+      353,  353,  353,  438,   68,  357,  357,  357,  365,  365,
+      365,  443,  438,   68,   71,   71,   71,   71,   71,   71,
+       71,   71,   71,   71,   71,   71,   71,   71,   71, 1528,
+       71,   71,   71,   71,   71,   92,   92,   92,   93,   93,
+
+       93,   94,   94,   94, 1529,   95,   95,   95,   96,   96,
+       96,   92,  454,  593,   93,  596,  593,   94,  596,   71,
+       71,   95,  513, 1532,   96,  369,  369,  369,  454,  403,
+       71,  377,  377,  377,  380,  380,  380, 1534,   71,   72,
+       72,   72,   72,   72,   72,   72,   72,   72,   72,   72,
+       72,   72,   72,   72,  549,   72,   72,   72,   72,   72,
+       97,   97,   97,   98,   98,   98,   99,   99,   99,  513,
+      100,  100,  100,  101,  101,  101,   97,  403,  468,   98,
+      403,  989,   99,  588,   72,   72,  100,  588,  481,  101,
+      102,  102,  102,  989,  468,   72,  388,  388,  388,  391,
+
+      391,  391, 1536,   72,  481,  549,  102,  103,  103,  103,
+      103,  103,  103,  103,  103,  103,  103,  103,  103,  103,
+      103,  103, 1541,  103,  103,  103,  103,  103,  105,  105,
+      105,  106,  106,  106,  107,  107,  107, 1546,  108,  108,
+      108,  402,  402,  402,  105,  494,  505,  106,  449,  500,
+      107, 1550,  103,  103,  108,  449,  500,  103,  407,  407,
+      407,  494,  505,  103,  449,  500,  103,  104,  104,  104,
+      104,  104,  104,  104,  104,  104,  104,  104,  104,  104,
+      104,  104, 1551,  104,  104,  104,  104,  104,  109,  109,
+      109,  110,  110,  110,  111,  111,  111, 1553,  112,  112,
+
+      112,  421,  421,  421,  109,  518,  533,  110,  600,  538,
+      111,  600,  104,  104,  112, 1565,  538,  104,  424,  424,
+      424,  518,  533,  104,  474,  538,  104,  113,  113,  113,
+      113,  113,  113,  113,  113,  113,  113,  113,  113,  113,
+      113,  113, 1568,  113,  113,  113,  113,  113,  115,  115,
+      115,  116,  116,  116,  117,  117,  117, 1000,  118,  118,
+      118,  119,  119,  119,  115,  543,  554,  116, 1562, 1000,
+      117,  474,  113,  113,  118,  474, 1569,  119,  437,  437,
+      437,  543,  554,  113,  440,  440,  440,  448,  448,  448,
+      451,  451,  451,  113,  114,  114,  114,  114,  114,  114,
+
+      114,  114,  114,  114,  114,  114,  114,  114,  114, 1562,
+      114,  114,  114,  114,  114,  120,  120,  120,  121,  121,
+      121,  122,  122,  122, 1570,  125,  125,  125,  126,  126,
+      126,  120,  671,  764,  121,  671,  589,  122,  895,  114,
+      114,  125,  589,  895,  126,  461,  461,  461,  589,  764,
+      114,  465,  465,  465,  473,  473,  473,  478,  478,  478,
+      114,  123,  123,  123,  123,  123,  123,  123,  123,  123,
+      123,  123,  123,  123,  123,  123, 1571,  123,  123,  123,
+      123,  123,  129,  129,  129,  130,  130,  130,  133,  133,
+      133, 1573,  134,  134,  134,  135,  135,  135,  129, 1574,
+
+     1576,  130, 1577,  590,  133,  676,  123,  123,  134,  676,
+     1578,  135,  487,  487,  487,  526,  590,  123,  491,  491,
+      491,  123,  124,  124,  124,  124,  124,  124,  124,  124,
+      124,  124,  124,  124,  124,  124,  124, 1563,  124,  124,
+      124,  124,  124,  136,  136,  136,  137,  137,  137,  138,
+      138,  138,  526,  139,  139,  139,  140,  140,  140,  136,
+      961, 1582,  137,  594,  961,  138,  526,  124,  124,  139,
+     1563, 1584,  140,  499,  499,  499,  594,  612,  124,  502,
+      502,  502,  124,  127,  127,  127,  127,  127,  127,  127,
+      127,  127,  127,  127,  127,  127,  127,  127, 1587,  127,
+
+      127,  127,  127,  127,  143,  143,  143,  144,  144,  144,
+      147,  147,  147,  612,  148,  148,  148,  151,  151,  151,
+      143, 1588, 1398,  144, 1589, 1591,  147, 1593,  127,  127,
+      148, 1561, 1594,  151,  511,  511,  511,  515,  515,  515,
+      525,  525,  525,  127,  530,  530,  530, 1398, 1561,  127,
+      128,  128,  128,  128,  128,  128,  128,  128,  128,  128,
+      128,  128,  128,  128,  128, 1596,  128,  128,  128,  128,
+      128,  152,  152,  152,  155,  155,  155,  156,  156,  156,
+     1033,  157,  157,  157,  158,  158,  158,  152, 1598, 1601,
+      155, 1602, 1033,  156, 1604,  128,  128,  157, 1605, 1606,
+
+      158,  537,  537,  537,  540,  540,  540,  547,  547,  547,
+      128,  551,  551,  551, 1608, 1614,  128,  131,  131,  131,
+      131,  131,  131,  131,  131,  131,  131,  131,  131,  131,
+      131,  131, 1615,  131,  131,  131,  131,  131,  159,  159,
+      159,  160,  160,  160,  161,  161,  161, 1603,  162,  162,
+      162,  559,  559,  559,  159, 1603, 1618,  160,  642,  560,
+      161,  645,  131,  131,  162,  131,  560,  131,  561,  561,
+      561,  642, 1607,  131,  645,  560,  570,  570,  570,  131,
+     1607, 1631,  131,  132,  132,  132,  132,  132,  132,  132,
+      132,  132,  132,  132,  132,  132,  132,  132, 1632,  132,
+
+      132,  132,  132,  132,  165,  165,  165,  166,  166,  166,
+      167,  167,  167,  598,  168,  168,  168, 1637, 1638,  598,
+      165, 1639, 1643,  166,  646,  598,  167,  878,  132,  132,
+      168,  132,  601,  132,  570,  602,  878,  646,  601,  132,
+     1644,  602, 1650,  878,  601,  132, 1657,  602,  132,  141,
+      141,  141,  141,  141,  141,  141,  141,  141,  141,  141,
+      141,  141,  141,  141,  141,  141,  141,  141,  141,  141,
+      141,  141,  141,  141,  141,  141,  141,  141,  141,  141,
+      141,  141,  141,  141,  141,  141,  141,  141,  141,  141,
+      141,  141,  141,  141,  141,  141,  141,  141,  141,  141,
+
+      141,  141,  141,  141,  141,  141,  141,  141,  141,  141,
+      141,  141,  141,  141,  141,  141,  141,  141,  141,  141,
+      141,  145,  145,  145,  145,  145,  145,  145,  145,  145,
+      145,  145,  145,  145,  145,  145,  145,  145,  145,  145,
+      145,  145,  145,  145,  145,  145,  145,  145,  145,  145,
+      145,  145,  145,  145,  145,  145,  145,  145,  145,  145,
+      145,  145,  145,  145,  145,  145,  145,  145,  145,  145,
+      145,  145,  145,  145,  145,  145,  145,  145,  145,  145,
+      145,  145,  145,  145,  145,  145,  145,  145,  145,  145,
+      145,  145,  145,  149,  149,  149,  149,  149,  149,  149,
+
+      149,  149,  149,  149,  149,  149,  149,  149, 1658,  149,
+      149,  149,  149,  149,  169,  169,  169,  170,  170,  170,
+      171,  171,  171, 1659,  172,  172,  172,  610,  610,  610,
+      169, 1663, 1669,  170, 1673,  626,  171, 1676,  149,  149,
+      172,  626, 1678,  149,  610, 1680, 1682,  626, 1683,  149,
+      150,  150,  150,  150,  150,  150,  150,  150,  150,  150,
+      150,  150,  150,  150,  150, 1684,  150,  150,  150,  150,
+      150,  175,  175,  175,  176,  176,  176,  177,  177,  177,
+     1687,  178,  178,  178,  618,  618,  618,  175, 1457, 1689,
+      176, 1694, 1696,  177, 1457,  150,  150,  178, 1457, 1703,
+
+      150,  618, 1457,  779,  779,  779,  150,  153,  153,  153,
+      153,  153,  153,  153,  153,  153,  153,  153,  153,  153,
+      153,  153, 1704,  153,  153,  153,  153,  153,  179,  179,
+      179,  180,  180,  180,  181,  181,  181, 1705,  182,  182,
+      182,  185,  185,  185,  179, 1707, 1721,  180, 1726, 1718,
+      181, 1727,  153,  153,  182, 1718,  153,  185,  767,  767,
+      767, 1731,  767,  153, 1732,  153,  779,  798,  798,  798,
+     1720, 1733,  153,  154,  154,  154,  154,  154,  154,  154,
+      154,  154,  154,  154,  154,  154,  154,  154, 1738,  154,
+      154,  154,  154,  154,  186,  186,  186,  189,  189,  189,
+
+      190,  190,  190, 1744,  191,  191,  191,  192,  192,  192,
+      186, 1746, 1747,  189, 1750, 1720,  190, 1753,  154,  154,
+      191, 1757,  154,  192,  837,  837,  837, 1758, 1759,  154,
+      798,  154, 1760,  843,  843,  843, 1761, 1762,  154,  163,
+      163,  163,  163,  163,  163,  163,  163,  163,  163,  163,
+      163,  163,  163,  163, 1763,  163,  163,  163,  163,  163,
+      193,  193,  193,  194,  194,  194,  195,  195,  195, 1764,
+      196,  196,  196,  199,  199,  199,  193, 1765, 1766,  194,
+     1771, 1787,  195, 1788,  163,  163,  196,  837, 1791,  199,
+      163,  809,  809,  809, 1789,  809,  843, 1792,  809,  976,
+
+      976,  976, 1789, 1793,  163,  164,  164,  164,  164,  164,
+      164,  164,  164,  164,  164,  164,  164,  164,  164,  164,
+     1797,  164,  164,  164,  164,  164,  200,  200,  200,  201,
+      201,  201,  202,  202,  202, 1790,  203,  203,  203,  204,
+      204,  204,  200, 1790, 1803,  201, 1804, 1805,  202, 1810,
+      164,  164,  203, 1814, 1815,  204,  164,  817,  817,  817,
+     1816,  817, 1818, 1821,  817,  996,  996,  996, 1822, 1825,
+      164,  173,  173,  173,  173,  173,  173,  173,  173,  173,
+      173,  173,  173,  173,  173,  173, 1826,  173,  173,  173,
+      173,  173,  205,  205,  205,  206,  206,  206,  209,  209,
+
+      209, 1719,  210,  210,  210,  213,  213,  213,  205, 1458,
+     1829,  206, 1823, 1836,  209, 1458,  173,  173,  210, 1458,
+     1823,  213,  173, 1458, 1838,  173,  833,  833,  833, 1851,
+      833, 1864, 1719,  833, 1855, 1856,  173,  174,  174,  174,
+      174,  174,  174,  174,  174,  174,  174,  174,  174,  174,
+      174,  174, 1872,  174,  174,  174,  174,  174,  214,  214,
+      214,  215,  215,  215,  216,  216,  216, 1824,  217,  217,
+      217,  218,  218,  218,  214, 1824, 1855,  215, 1873, 1877,
+      216, 1856,  174,  174,  217, 1879, 1891,  218,  174, 1892,
+     1893,  174,  848,  848,  848, 1894,  848, 1895, 1896,  848,
+
+     1897, 1898,  174,  183,  183,  183,  183,  183,  183,  183,
+      183,  183,  183,  183,  183,  183,  183,  183, 1899,  183,
+      183,  183,  183,  183,  219,  219,  219,  220,  220,  220,
+      223,  223,  223, 1900,  224,  224,  224,  331, 1906, 1908,
+      219,  339, 1915,  220, 1916,  332,  223,  331,  183,  183,
+      224, 1242, 1242, 1242,  183,  332, 1244, 1244, 1244,  183,
+      184,  184,  184,  184,  184,  184,  184,  184,  184,  184,
+      184,  184,  184,  184,  184,  331,  184,  184,  184,  184,
+      184,  331, 1917,  332,  331,  339,  339, 1918,  339, 1919,
+      331,  331, 1920, 1921,  339,  339,  332,  635,  635,  635,
+
+      332, 1923, 1244, 1924, 1929,  184,  184, 1930,  853,  853,
+      853,  184,  853, 1932,  635,  853,  184,  187,  187,  187,
+      187,  187,  187,  187,  187,  187,  187,  187,  187,  187,
+      187,  187, 1933,  187,  187,  187,  187,  187,  650,  650,
+      650,  655,  655,  655,  660,  660,  660,  672,  672,  672,
+      681,  681,  681, 1934, 1935,  650, 1942, 1943,  655, 1944,
+     1945,  660,  187,  187,  672, 1946, 1947,  681,  187, 1948,
+     1949,  187,  858,  858,  858, 1951,  858, 1971, 1975,  858,
+     1976, 1977,  187,  188,  188,  188,  188,  188,  188,  188,
+      188,  188,  188,  188,  188,  188,  188,  188, 1967,  188,
+
+      188,  188,  188,  188,  683,  683,  683,  698,  698,  698,
+      706,  706,  706,  711,  711,  711,  733,  733,  733, 1980,
+     1984,  683, 1985, 1986,  698, 1987, 1988,  706,  188,  188,
+      711, 1989, 1966,  733,  188, 1967, 1990,  188,  870,  870,
+      870, 1991,  870, 1992, 1993,  870, 1995, 1996,  188,  197,
+      197,  197,  197,  197,  197,  197,  197,  197,  197,  197,
+      197,  197,  197,  197, 1966,  197,  197,  197,  197,  197,
+      755,  755,  755,  759,  759,  759, 2001, 2002,  777,  777,
+      777,  778,  778,  778,  808,  808,  808,  755, 2003, 2005,
+      759,  805,  805,  805,  197,  197,  777, 2009, 2010,  778,
+
+     2013,  808,  197, 2017,  197, 2018,  197, 2020, 2023,  805,
+     1247, 1247, 1247, 2024,  197,  198,  198,  198,  198,  198,
+      198,  198,  198,  198,  198,  198,  198,  198,  198,  198,
+     2025,  198,  198,  198,  198,  198, 2026, 2028,  778,  812,
+      812,  812, 2031, 2033,  806,  806,  806,  813,  813,  813,
+      816,  816,  816, 2055,  818,  818,  818,  812, 2056, 2051,
+      198,  198,  806, 2050, 2057,  813, 2058,  816,  198, 2064,
+      198,  818,  198, 1250, 1250, 1250, 1259, 1259, 1259, 2065,
+      198,  207,  207,  207,  207,  207,  207,  207,  207,  207,
+      207,  207,  207,  207,  207,  207, 2051,  207,  207,  207,
+
+      207,  207, 2050,  806,  820,  820,  820,  824,  824,  824,
+      813,  830,  830,  830,  831,  831,  831, 2066,  825,  825,
+      825,  820,  832,  832,  832,  824,  207,  207, 2067,  830,
+     2068, 2069,  831,  880,  880,  880,  825,  880, 2070,  832,
+      880,  883,  883,  883, 2071,  883, 2072, 2073,  883,  207,
+      208,  208,  208,  208,  208,  208,  208,  208,  208,  208,
+      208,  208,  208,  208,  208,  825,  208,  208,  208,  208,
+      208,  835,  835,  835,  836,  836,  836,  831, 2075, 2076,
+      847,  847,  847,  850,  850,  850,  851,  851,  851,  835,
+     2080, 2086,  836, 2087, 2091,  208,  208,  847,  852,  852,
+
+      852,  850, 2094, 2061,  851,  898,  898,  898, 2052,  898,
+     2102,  836,  898, 2061, 2103,  852, 2061, 2104,  208,  211,
+      211,  211,  211,  211,  211,  211,  211,  211,  211,  211,
+      211,  211,  211,  211, 2128,  211,  211,  211,  211,  211,
+      855,  855,  855,  856,  856,  856,  857,  857,  857, 2062,
+     2052,  851,  860,  860,  860,  861,  861,  861,  855, 2062,
+     2129,  856, 2062,  857,  211,  211, 2130,  906,  906,  906,
+      860,  906, 2133,  861,  906,  211,  212,  212,  212,  212,
+      212,  212,  212,  212,  212,  212,  212,  212,  212,  212,
+      212, 2124,  212,  212,  212,  212,  212, 2134,  864,  864,
+
+      864,  865,  865,  865, 2135,  873,  873,  873,  856,  869,
+      869,  869,  874,  874,  874,  861,  864, 2135, 2136,  865,
+     2124,  212,  212,  873, 2137, 2140,  869, 1284, 1284, 1284,
+      874, 2141,  212,  221,  221,  221,  221,  221,  221,  221,
+      221,  221,  221,  221,  221,  221,  221,  221, 2142,  221,
+      221,  221,  221,  221,  879,  879,  879,  882,  882,  882,
+      884,  884,  884, 2143, 2145,  865,  892,  892,  892, 2146,
+     2138,  879,  874, 2147,  882, 2112, 2125,  884,  221,  221,
+      893,  893,  893, 2138,  892, 2112,  911,  911,  911,  221,
+      911, 2112, 2148,  911, 1295, 1295, 1295, 2126,  893, 2152,
+
+     2160,  221,  222,  222,  222,  222,  222,  222,  222,  222,
+      222,  222,  222,  222,  222,  222,  222, 2125,  222,  222,
+      222,  222,  222,  897,  897,  897,  899,  899,  899, 2161,
+     2162,  902,  902,  902,  903,  903,  903,  893, 2126, 2166,
+      897, 2113, 2174,  899,  905,  905,  905,  222,  222,  902,
+     2176, 2113,  903, 2184,  907,  907,  907, 2113,  222, 2185,
+     2186,  905, 2187, 2188,  908,  908,  908,  910,  910,  910,
+      222,  264,  907,  915,  915,  915, 2189, 2199,  264,  916,
+      916,  916,  908, 2194,  910,  903, 2200,  264,  264, 2204,
+     2205,  915,  917,  917,  917, 2206, 2207,  916, 1413, 1413,
+
+     1413,  918,  918,  918,  919,  919,  919, 2208, 2209,  917,
+      920,  920,  920, 2210, 2211,  264,  264,  264,  918, 2195,
+     2213,  919,  264,  264,  908,  264,  264, 2214,  920,  264,
+     2194,  264,  264,  264,  916,  921,  921,  921,  923,  923,
+      923,  924,  924,  924,  925,  925,  925, 2215,  926,  926,
+      926, 2216, 2217,  921, 2195,  923, 2218, 2219,  924, 2220,
+     2227,  925,  919, 2231, 2232,  926,  927,  927,  927, 2233,
+      928,  928,  928,  930,  930,  930,  931,  931,  931, 2234,
+      931, 2241, 2244,  931,  927,  932,  932,  932,  928, 2251,
+      930,  924,  933,  933,  933,  921,  934,  934,  934,  935,
+
+      935,  935, 2246,  932, 2247,  924,  926,  928, 2252, 2253,
+      933, 2254, 2246,  934, 2247, 2255,  935,  936,  936,  936,
+      937,  937,  937,  938,  938,  938,  943,  943,  943, 2249,
+      947,  947,  947, 2250,  936,  944,  944,  944,  937, 2249,
+     2256,  938, 2265, 2250,  943, 2266, 2267,  933,  947,  935,
+      948,  948,  948,  944,  949,  949,  949,  950,  950,  950,
+     2268,  950, 2269,  935,  950,  951,  951,  951,  948, 2258,
+     2270,  949,  952,  952,  952,  953,  953,  953,  954,  954,
+      954, 2271,  954,  951, 2272,  954,  956,  956,  956, 2275,
+      952, 2276,  953,  938,  957,  957,  957, 2278,  944,  972,
+
+      972,  972, 2279, 2258,  956,  973,  973,  973,  975,  975,
+      975, 2280,  957,  948, 1002, 1002, 1002,  972, 1003, 1003,
+     1003, 2282, 2289,  973, 2290, 2291,  975, 1004, 1004, 1004,
+     2293, 1002,  952, 1006, 1006, 1006, 1003, 1007, 1007, 1007,
+     1008, 1008, 1008, 2299, 1008, 1004, 2300, 1008, 1011, 1011,
+     1011, 1006, 2301, 2302, 1007,  975, 2303,  957, 1013, 1013,
+     1013, 1014, 1014, 1014, 2304, 1011, 1016, 1016, 1016, 2305,
+     1018, 1018, 1018, 2306, 1018, 2307, 1013, 1018, 2308, 1014,
+     2310, 2311, 1006, 2323, 1016, 1021, 1021, 1021, 1022, 1022,
+     1022, 2324, 1022, 2325, 2326, 1022, 2327, 1023, 1023, 1023,
+
+     2328, 2329, 1021, 1024, 1024, 1024, 2330, 2315, 1011, 1027,
+     1027, 1027, 2334, 1016, 1023, 1025, 1025, 1025, 2335, 1025,
+     1024, 2336, 1025, 1029, 1029, 1029, 1027, 1030, 1030, 1030,
+     1032, 1032, 1032, 1035, 1035, 1035, 1037, 1037, 1037, 2337,
+     2338, 1029, 1038, 1038, 1038, 1030, 2339, 2343, 1032, 2315,
+     1035, 1040, 1040, 1040, 1037, 1041, 1041, 1041, 2344, 1041,
+     1038, 2345, 1041, 1045, 1045, 1045, 1046, 1046, 1046, 1040,
+     1048, 1048, 1048, 1058, 1058, 1058, 2348, 1058, 2353, 2354,
+     1058, 1045, 2355, 2356, 1046, 1062, 1062, 1062, 1048, 1032,
+     1063, 1063, 1063, 1065, 1065, 1065, 2357, 2358, 1040, 2359,
+
+     1066, 1066, 1066, 1062, 1066, 2360, 2361, 1066, 1063, 2362,
+     2363, 1065, 1070, 1070, 1070, 1071, 1071, 1071, 1073, 1073,
+     1073, 1074, 1074, 1074, 2364, 1074, 2365, 2371, 1074, 2374,
+     1070, 2375, 2378, 1071, 2380, 2381, 1073, 1077, 1077, 1077,
+     1078, 1078, 1078, 1079, 1079, 1079, 1081, 1081, 1081, 1082,
+     1082, 1082, 2368, 1065, 1077, 1083, 1083, 1083, 1078, 2383,
+     2384, 1079, 2367, 2368, 1081, 2387, 1082, 1084, 1084, 1084,
+     2388, 2365, 1083, 1085, 1085, 1085, 2367, 2389, 1073, 1087,
+     1087, 1087, 2393, 1083, 2401, 1084, 1090, 1090, 1090, 2403,
+     2405, 1085, 1091, 1091, 1091, 2407, 1091, 1087, 2391, 1091,
+
+     1096, 1096, 1096, 1090, 1097, 1097, 1097, 1099, 1099, 1099,
+     2391, 2392, 1081, 1106, 1106, 1106, 2415, 1106, 1096, 2417,
+     1106, 2413, 1097, 2392, 2419, 1099, 1109, 1109, 1109, 1110,
+     1110, 1110, 2420, 1110, 2421, 2413, 1110, 1113, 1113, 1113,
+     1122, 1122, 1122, 1109, 1087, 1114, 1114, 1114, 2422, 1114,
+     2412, 2431, 1114, 2398, 1113, 1123, 1123, 1123, 1122, 1125,
+     1125, 1125, 1130, 1130, 1130, 2398, 1130, 2414, 2414, 1130,
+     2416, 1099, 2399, 1123, 1133, 1133, 1133, 1125, 1134, 1134,
+     1134, 2416, 1134, 2433, 2399, 1134, 1137, 1137, 1137, 2436,
+     2412, 1133, 1138, 1138, 1138, 1140, 1140, 1140, 1142, 1142,
+
+     1142, 2438, 1142, 2444, 1137, 1142, 1145, 1145, 1145, 2445,
+     1138, 2446, 2430, 1140, 1146, 1146, 1146, 1148, 1148, 1148,
+     1156, 1156, 1156, 2448, 1145, 1125, 1150, 1150, 1150, 2449,
+     1150, 2430, 1146, 1150, 2450, 1148, 2451, 2432, 1156, 1157,
+     1157, 1157, 1159, 1159, 1159, 2458, 1140, 1160, 1160, 1160,
+     2459, 1161, 1161, 1161, 2460, 1161, 2432, 1157, 1161, 2461,
+     1159, 1162, 1162, 1162, 1160, 1163, 1163, 1163, 2462, 1163,
+     2463, 2435, 1163, 1165, 1165, 1165, 2437, 2466, 1162, 1166,
+     1166, 1166, 2467, 1148, 1168, 1168, 1168, 1170, 1170, 1170,
+     2435, 1165, 1171, 1171, 1171, 2437, 1171, 1166, 2468, 1171,
+
+     2469, 1159, 1168, 2470, 1170, 1174, 1174, 1174, 1175, 1175,
+     1175, 2471, 1175, 2473, 2475, 1175, 1177, 1177, 1177, 1178,
+     1178, 1178, 1174, 1180, 1180, 1180, 1182, 1182, 1182, 2477,
+     1182, 2487, 2488, 1182, 1177, 2489, 2485, 1178, 1185, 1185,
+     1185, 1180, 1186, 1186, 1186, 1188, 1188, 1188, 2485, 2490,
+     1168, 1189, 1189, 1189, 2491, 2492, 1185, 1190, 1190, 1190,
+     1186, 1190, 2486, 1188, 1190, 1193, 1193, 1193, 1189, 1194,
+     1194, 1194, 2496, 1194, 2486, 2497, 1194, 1195, 1195, 1195,
+     2498, 2499, 1193, 1196, 1196, 1196, 1180, 1198, 1198, 1198,
+     1200, 1200, 1200, 2500, 2501, 1195, 1203, 1203, 1203, 2502,
+
+     2504, 1196, 2505, 2506, 1188, 1198, 2507, 1200, 1204, 1204,
+     1204, 1206, 1206, 1206, 1203, 1209, 1209, 1209, 1210, 1210,
+     1210, 1212, 1212, 1212, 2502, 2508, 1204, 2509, 2510, 1206,
+     1213, 1213, 1213, 1209, 1213, 2511, 1210, 1213, 2512, 1212,
+     1216, 1216, 1216, 1217, 1217, 1217, 2513, 2514, 1198, 1219,
+     1219, 1219, 1220, 1220, 1220, 2515, 1220, 2516, 1216, 1220,
+     2517, 1217, 1224, 1224, 1224, 2518, 2519, 1219, 1225, 1225,
+     1225, 1206, 2520, 2521, 1212, 1227, 1227, 1227, 2522, 2525,
+     1224, 1229, 1229, 1229, 2526, 2527, 1225, 1236, 1236, 1236,
+     1262, 1262, 1262, 1227, 1263, 1263, 1263, 2522, 1263, 1229,
+
+     1229, 1263, 1264, 1264, 1264, 1236, 2528, 1262, 1219, 1265,
+     1265, 1265, 1266, 1266, 1266, 2529, 1266, 2530, 2531, 1266,
+     1264, 1269, 1269, 1269, 2532, 2533, 1265, 1271, 1271, 1271,
+     2534, 1271, 2535, 2536, 1271, 1227, 1274, 1274, 1274, 1269,
+     1275, 1275, 1275, 2537, 1275, 2538, 2539, 1275, 1280, 1280,
+     1280, 2540, 1236, 1274, 1276, 1276, 1276, 2542, 1276, 1264,
+     2541, 1276, 1281, 1281, 1281, 1280, 1281, 2543, 2544, 1281,
+     1269, 1283, 1283, 1283, 1286, 1286, 1286, 1287, 1287, 1287,
+     2541, 1287, 2545, 2546, 1287, 1288, 1288, 1288, 2547, 1283,
+     2548, 1286, 1289, 1289, 1289, 1291, 1291, 1291, 1296, 1296,
+
+     1296, 2549, 1288, 1302, 1302, 1302, 1303, 1303, 1303, 2550,
+     1289, 2551, 2552, 1291, 1305, 1305, 1305, 1306, 1306, 1306,
+     1302, 1283, 2553, 2554, 1303, 2555, 1307, 1307, 1307, 2556,
+     1307, 2557, 1305, 1307, 1306, 1308, 1308, 1308, 1309, 1309,
+     1309, 1289, 2558, 2559, 1296, 1310, 1310, 1310, 2558, 1310,
+     2560, 2561, 1310, 1308, 2562, 1309, 1312, 1312, 1312, 1315,
+     1315, 1315, 2563, 1316, 1316, 1316, 2564, 1316, 2566, 1303,
+     1316, 1317, 1317, 1317, 1312, 2567, 1315, 1305, 1318, 1318,
+     1318, 1319, 1319, 1319, 1323, 1323, 1323, 2569, 1317, 1326,
+     1326, 1326, 2570, 2572, 1308, 1318, 1327, 1327, 1327, 1319,
+
+     1327, 1323, 2573, 1327, 2576, 2577, 1326, 1328, 1328, 1328,
+     2578, 1328, 2579, 2581, 1328, 2583, 1312, 1331, 1331, 1331,
+     1338, 1338, 1338, 2575, 1318, 1340, 1340, 1340, 1343, 1343,
+     1343, 2585, 1343, 2587, 1331, 1343, 2589, 2575, 1338, 1346,
+     1346, 1346, 1340, 1348, 1348, 1348, 1319, 1350, 1350, 1350,
+     1354, 1354, 1354, 1355, 1355, 1355, 1346, 1363, 1363, 1363,
+     2590, 1348, 1356, 1356, 1356, 1350, 1356, 1354, 2591, 1356,
+     2592, 1355, 1359, 1359, 1359, 1363, 1359, 2593, 2594, 1359,
+     1364, 1364, 1364, 2595, 1338, 1365, 1365, 1365, 2596, 1365,
+     2598, 2600, 1365, 1370, 1370, 1370, 1354, 1370, 2602, 2603,
+
+     1370, 1374, 1374, 1374, 2604, 2605, 1348, 2658, 2614, 1355,
+     1455, 2606, 1350, 1376, 1376, 1376, 1377, 1377, 1377, 1374,
+     1377, 2620, 1363, 1377, 2607, 2620, 1364, 2626, 1382, 1382,
+     1382, 1376, 1382, 1452, 2615, 1382, 1385, 1385, 1385, 1387,
+     1387, 1387, 1388, 1388, 1388, 2616, 1388, 2606, 2658, 1388,
+     1391, 1391, 1391, 2617, 1385, 2614, 1387, 1393, 1393, 1393,
+     2607, 1374, 1394, 1394, 1394, 1396, 1396, 1396, 1391, 1376,
+     1395, 1395, 1395, 2626, 1393, 1397, 1397, 1397, 2618, 2622,
+     1394, 2615, 1396, 1385, 1400, 1400, 1400, 2622, 1395, 1407,
+     1407, 1407, 2616, 1397, 1415, 1415, 1415, 2627, 2623, 1391,
+
+     2617, 2619, 1400, 1417, 1417, 1417, 2623, 1407, 1419, 1419,
+     1419, 1422, 1422, 1422, 1424, 1424, 1424, 1426, 1426, 1426,
+     1448, 2618, 1395, 1431, 1431, 1431, 1444, 1442, 1394, 1433,
+     1433, 1433, 1437, 1437, 1437, 1400, 1397, 2674, 1434, 1434,
+     1434, 1407, 1434, 2627, 2619, 1434, 1443, 1443, 1443, 2624,
+     1437, 1400, 1438, 1438, 1438, 2628, 1438, 2624, 2629, 1438,
+     1454, 1454, 1454, 1426, 1443, 1445, 1445, 1445, 2625, 1445,
+     2621, 2630, 1445, 2632, 2621, 1433, 2625, 1424, 1449, 1449,
+     1449, 2664, 1449, 2674, 1441, 1449, 1453, 1453, 1453, 1456,
+     1456, 1456, 2628, 1456, 2633, 2629, 1456, 1443, 1437, 1459,
+
+     1459, 1459, 1432, 2631, 1453, 1460, 1460, 1460, 2632, 1460,
+     2664, 2630, 1460, 1461, 1461, 1461, 1459, 1465, 1465, 1465,
+     1466, 1466, 1466, 1467, 1467, 1467, 1469, 1469, 1469, 2633,
+     2638, 1461, 1470, 1470, 1470, 1472, 1472, 1472, 1473, 1473,
+     1473, 1430, 1473, 2631, 2639, 1473, 1453, 1474, 1474, 1474,
+     2636, 2637, 1472, 1475, 1475, 1475, 1476, 1476, 1476, 1477,
+     1477, 1477, 2638, 1477, 1461, 1474, 1477, 1480, 1480, 1480,
+     1475, 1481, 1481, 1481, 1476, 1481, 2639, 2634, 1481, 1484,
+     1484, 1484, 1485, 1485, 1485, 1480, 1467, 2636, 2637, 1469,
+     1491, 1491, 1491, 2640, 1474, 1470, 1484, 1488, 1488, 1488,
+
+     1485, 1488, 2640, 1476, 1488, 2641, 2656, 1491, 1492, 1492,
+     1492, 2635, 1492, 2696, 2641, 1492, 1493, 1493, 1493, 1494,
+     1494, 1494, 2634, 1494, 2652, 2646, 1494, 2696, 1496, 1496,
+     1496, 2657, 1480, 1493, 1497, 1497, 1497, 1500, 1500, 1500,
+     1501, 1501, 1501, 2656, 1501, 1485, 1496, 1501, 1502, 1502,
+     1502, 1504, 1504, 1504, 1500, 1504, 2635, 2652, 1504, 1507,
+     1507, 1507, 1508, 1508, 1508, 1502, 1508, 2646, 2657, 1508,
+     1509, 1509, 1509, 1514, 1514, 1514, 1507, 1515, 1515, 1515,
+     1517, 1517, 1517, 1429, 1518, 1518, 1518, 1509, 1518, 1428,
+     1514, 1518, 1519, 1519, 1519, 1515, 1427, 1517, 1521, 1521,
+
+     1521, 1522, 1522, 1522, 2647, 1522, 2642, 2653, 1522, 1519,
+     1524, 1524, 1524, 2644, 1425, 1521, 1526, 1526, 1526, 1530,
+     1530, 1530, 1531, 1531, 1531, 2645, 1531, 2672, 1524, 1531,
+     1533, 1533, 1533, 2643, 1526, 2672, 1530, 1535, 1535, 1535,
+     2653, 2642, 1515, 1537, 1537, 1537, 2647, 2644, 1533, 1538,
+     1538, 1538, 1539, 1539, 1539, 1535, 1540, 1540, 1540, 2645,
+     1537, 1542, 1542, 1542, 2650, 2651, 1538, 1526, 2643, 1539,
+     1543, 1543, 1543, 2648, 1540, 1544, 1544, 1544, 1423, 1542,
+     1545, 1545, 1545, 1552, 1552, 1552, 2668, 1543, 1535, 1547,
+     1547, 1547, 1544, 1547, 1421, 2649, 1547, 2654, 1545, 2650,
+
+     2651, 1552, 1554, 1554, 1554, 2655, 2654, 1542, 1420, 1555,
+     1555, 1555, 2666, 1555, 2655, 1539, 1555, 2665, 2648, 1554,
+     2668, 2666, 1540, 1556, 1556, 1556, 2659, 1557, 1557, 1557,
+     1558, 1558, 1558, 1418, 1552, 1559, 1559, 1559, 1416, 1559,
+     2649, 1556, 1559, 2662, 1545, 1557, 2665, 1558, 1560, 1560,
+     1560, 1566, 1566, 1566, 1567, 1567, 1567, 1572, 1572, 1572,
+     1575, 1575, 1575, 1579, 1579, 1579, 1560, 2659, 1566, 1580,
+     1580, 1580, 1567, 1581, 1581, 1581, 1583, 1583, 1583, 2660,
+     2662, 1556, 1557, 1585, 1585, 1585, 1586, 1586, 1586, 1590,
+     1590, 1590, 1592, 1592, 1592, 1595, 1595, 1595, 1597, 1597,
+
+     1597, 1599, 1599, 1599, 1600, 1600, 1600, 1612, 1612, 1612,
+     1592, 1414, 2661, 1595, 1567, 1597, 1609, 1609, 1609, 1599,
+     1609, 1600, 2686, 1609, 2660, 1612, 1613, 1613, 1613, 1616,
+     1616, 1616, 1617, 1617, 1617, 1619, 1619, 1619, 1623, 1623,
+     1623, 2667, 1592, 1613, 1620, 1620, 1620, 2663, 1620, 2670,
+     2667, 1620, 1619, 1612, 2686, 2680, 1623, 2661, 2675, 1599,
+     1624, 1624, 1624, 1625, 1625, 1625, 2671, 1625, 2669, 1412,
+     1625, 1626, 1626, 1626, 1627, 1627, 1627, 1624, 1628, 1628,
+     1628, 1629, 1629, 1629, 2663, 1629, 2676, 1411, 1629, 1626,
+     2680, 1623, 1627, 2677, 2670, 1628, 1630, 1630, 1630, 1633,
+
+     1633, 1633, 2669, 1633, 2675, 2673, 1633, 2684, 1636, 1636,
+     1636, 2671, 1636, 2673, 1630, 1636, 1640, 1640, 1640, 1642,
+     1642, 1642, 2678, 2676, 1626, 1645, 1645, 1645, 2681, 1645,
+     2677, 1410, 1645, 2682, 1640, 1648, 1648, 1648, 1649, 1649,
+     1649, 2679, 1649, 1630, 2684, 1649, 1651, 1651, 1651, 2683,
+     1651, 2687, 1648, 1651, 1654, 1654, 1654, 1655, 1655, 1655,
+     2690, 1655, 2678, 2681, 1655, 1656, 1656, 1656, 1660, 1660,
+     1660, 1654, 1661, 1661, 1661, 2685, 1661, 1409, 2682, 1661,
+     1408, 2679, 1656, 2687, 2692, 1660, 1662, 1662, 1662, 1664,
+     1664, 1664, 2690, 1664, 2683, 1406, 1664, 1667, 1667, 1667,
+
+     2691, 1668, 1668, 1668, 1662, 1668, 2688, 2694, 1668, 1670,
+     1670, 1670, 2685, 1670, 1667, 2688, 1670, 1674, 1674, 1674,
+     1677, 1677, 1677, 1679, 1679, 1679, 1681, 1681, 1681, 2693,
+     1681, 2692, 2691, 1681, 1405, 1674, 2695, 1662, 1677, 2694,
+     1679, 1685, 1685, 1685, 1688, 1688, 1688, 1690, 1690, 1690,
+     1691, 1691, 1691, 1402, 1691, 1399, 1392, 1691, 1390, 1685,
+     1389, 1386, 1688, 1381, 1690, 1692, 1692, 1692, 2695, 1679,
+     1693, 1693, 1693, 1380, 1693, 1375, 2693, 1693, 1695, 1695,
+     1695, 1373, 1692, 1677, 1697, 1697, 1697, 1698, 1698, 1698,
+     1699, 1699, 1699, 1369, 1699, 1368, 1695, 1699, 1700, 1700,
+
+     1700, 2689, 1697, 2697, 1698, 1701, 1701, 1701, 1362, 1701,
+     2689, 1353, 1701, 1352, 2697, 1700, 1702, 1702, 1702, 1706,
+     1706, 1706, 1708, 1708, 1708, 1351, 1708, 1349, 1347, 1708,
+     1711, 1711, 1711, 1697, 1702, 1342, 1341, 1706, 1712, 1712,
+     1712, 1339, 1337, 1695, 1336, 1713, 1713, 1713, 1711, 1713,
+     1335, 1334, 1713, 1716, 1716, 1716, 1712, 1722, 1722, 1722,
+     1723, 1723, 1723, 1333, 1723, 1332, 1325, 1723, 1724, 1724,
+     1724, 1716, 1324, 1322, 1722, 1725, 1725, 1725, 1321, 1320,
+     1702, 1711, 1314, 1706, 1313, 1311, 1724, 1728, 1728, 1728,
+     1304, 1712, 1729, 1729, 1729, 1730, 1730, 1730, 1734, 1734,
+
+     1734, 1735, 1735, 1735, 1736, 1736, 1736, 1737, 1737, 1737,
+     1739, 1739, 1739, 1740, 1740, 1740, 1741, 1741, 1741, 1742,
+     1742, 1742, 1743, 1743, 1743, 1745, 1745, 1745, 1748, 1748,
+     1748, 1724, 1751, 1751, 1751, 1752, 1752, 1752, 1301, 1752,
+     1300, 1299, 1752, 1745, 1298, 1297, 1748, 1294, 1293, 1751,
+     1754, 1754, 1754, 1737, 1755, 1755, 1755, 1756, 1756, 1756,
+     1290, 1756, 1285, 1282, 1756, 1767, 1767, 1767, 1754, 1279,
+     1270, 1755, 1768, 1768, 1768, 1268, 1745, 1769, 1769, 1769,
+     1267, 1769, 1261, 1767, 1769, 1770, 1770, 1770, 1260, 1768,
+     1772, 1772, 1772, 1773, 1773, 1773, 1774, 1774, 1774, 1775,
+
+     1775, 1775, 1258, 1775, 1257, 1256, 1775, 1776, 1776, 1776,
+     1780, 1780, 1780, 1774, 1767, 1777, 1777, 1777, 1255, 1777,
+     1254, 1253, 1777, 1252, 1251, 1776, 1249, 1248, 1780, 1781,
+     1781, 1781, 1246, 1783, 1783, 1783, 1245, 1783, 1243, 1773,
+     1783, 1786, 1786, 1786, 1794, 1794, 1794, 1781, 1794, 1241,
+     1240, 1794, 1239, 1798, 1798, 1798, 1238, 1798, 1776, 1786,
+     1798, 1780, 1801, 1801, 1801, 1802, 1802, 1802, 1237, 1802,
+     1235, 1234, 1802, 1806, 1806, 1806, 1233, 1806, 1232, 1801,
+     1806, 1809, 1809, 1809, 1811, 1811, 1811, 1223, 1811, 1208,
+     1207, 1811, 1202, 1201, 1786, 1817, 1817, 1817, 1199, 1809,
+
+     1819, 1819, 1819, 1820, 1820, 1820, 1192, 1820, 1191, 1181,
+     1820, 1176, 1173, 1817, 1827, 1827, 1827, 1819, 1830, 1830,
+     1830, 1172, 1830, 1169, 1164, 1830, 1833, 1833, 1833, 1155,
+     1833, 1154, 1827, 1833, 1837, 1837, 1837, 1839, 1839, 1839,
+     1153, 1840, 1840, 1840, 1809, 1840, 1149, 1141, 1840, 1843,
+     1843, 1843, 1837, 1843, 1136, 1839, 1843, 1846, 1846, 1846,
+     1847, 1847, 1847, 1848, 1848, 1848, 1849, 1849, 1849, 1850,
+     1850, 1850, 1852, 1852, 1852, 1846, 1135, 1847, 1129, 1128,
+     1848, 1127, 1126, 1849, 1121, 1837, 1120, 1850, 1119, 1118,
+     1852, 1117, 1116, 1846, 1853, 1853, 1853, 1854, 1854, 1854,
+
+     1115, 1105, 1839, 1857, 1857, 1857, 1858, 1858, 1858, 1104,
+     1858, 1103, 1853, 1858, 1848, 1854, 1861, 1861, 1861, 1862,
+     1862, 1862, 1102, 1101, 1849, 1863, 1863, 1863, 1865, 1865,
+     1865, 1852, 1100, 1850, 1861, 1866, 1866, 1866, 1867, 1867,
+     1867, 1868, 1868, 1868, 1869, 1869, 1869, 1870, 1870, 1870,
+     1871, 1871, 1871, 1874, 1874, 1874, 1875, 1875, 1875, 1876,
+     1876, 1876, 1878, 1878, 1878, 1881, 1881, 1881, 1882, 1882,
+     1882, 1095, 1882, 1094, 1861, 1882, 1885, 1885, 1885, 1089,
+     1878, 1088, 1881, 1886, 1886, 1886, 1069, 1888, 1888, 1888,
+     1061, 1888, 1057, 1885, 1888, 1901, 1901, 1901, 1902, 1902,
+
+     1902, 1886, 1902, 1056, 1055, 1902, 1905, 1905, 1905, 1907,
+     1907, 1907, 1054, 1901, 1909, 1909, 1909, 1053, 1909, 1052,
+     1051, 1909, 1912, 1912, 1912, 1913, 1913, 1913, 1914, 1914,
+     1914, 1922, 1922, 1922, 1050, 1925, 1925, 1925, 1049, 1925,
+     1912, 1885, 1925, 1913, 1044, 1036, 1914, 1928, 1928, 1928,
+     1034, 1931, 1931, 1931, 1028, 1901, 1936, 1936, 1936, 1938,
+     1938, 1938, 1026, 1017, 1928, 1950, 1950, 1950, 1912, 1931,
+     1012, 1939, 1939, 1939, 1936, 1939, 1938, 1001, 1939, 1914,
      1952, 1952, 1952, 1953, 1953, 1953, 1954, 1954, 1954, 1955,
-     1955, 1955, 1128, 1122, 1951, 1121, 1120, 1952, 1961, 1961,
-     1961, 1953, 1956, 1956, 1956, 1119, 1114, 1955, 1958, 1958,
-     1958, 1113, 1947, 1963, 1963, 1963, 1948, 1962, 1962, 1962,
-     1956, 1965, 1965, 1965, 1112, 1111, 1958, 1966, 1966, 1966,
-     1110, 1952, 1967, 1967, 1967, 1962, 1109, 1971, 1971, 1971,
-
-     1974, 1974, 1974, 1975, 1975, 1975, 1108, 1975, 1098, 1097,
-     1975, 1976, 1976, 1976, 1955, 1971, 1096, 1974, 1987, 1987,
-     1987, 1990, 1990, 1990, 1991, 1991, 1991, 1095, 1976, 1958,
-     1993, 1993, 1993, 2000, 2000, 2000, 1987, 1094, 1093, 1990,
-     1088, 1087, 1991, 2001, 2001, 2001, 1082, 1081, 1993, 1062,
-     2000, 2004, 2004, 2004, 2005, 2005, 2005, 1054, 2005, 1050,
-     1049, 2005, 2007, 2007, 2007, 1048, 1976, 1047, 2004, 2008,
-     2008, 2008, 2012, 2012, 2012, 1046, 1045, 1987, 1044, 2007,
-     2014, 2014, 2014, 2023, 2023, 2023, 1990, 2008, 1043, 2012,
-     1042, 2015, 2015, 2015, 1037, 2015, 1029, 2014, 2015, 1027,
-
-     2023, 2025, 2025, 2025, 2027, 2027, 2027, 2029, 2029, 2029,
-     2030, 2030, 2030, 1021, 2030, 1019, 1010, 2030, 2031, 2031,
-     2031, 1005, 2027,  994, 2029, 2032, 2032, 2032, 2033, 2033,
-     2033,  992, 2033,  991,  990, 2033, 2031, 2036, 2036, 2036,
-     2037, 2037, 2037, 2032, 2037,  988,  987, 2037, 2038, 2038,
-     2038, 2039, 2039, 2039, 2036, 2041, 2041, 2041, 2042, 2042,
-     2042, 2046, 2046, 2046,  986, 2038, 2052, 2052, 2052, 2039,
-     2053, 2053, 2053,  985, 2053,  984, 2042, 2053,  983, 2046,
-     2056, 2056, 2056, 2052, 2067, 2067, 2067, 2070, 2070, 2070,
-      981, 2032, 2071, 2071, 2071,  980,  979, 2056, 2074, 2074,
-
-     2074,  978, 2067,  977,  976, 2070, 2077, 2077, 2077,  975,
-     2071,  974, 2078, 2078, 2078, 2074, 2078,  973,  972, 2078,
-     2081, 2081, 2081, 2077, 2081,  971,  970, 2081, 2085, 2085,
-     2085, 2086, 2086, 2086,  964, 2086,  963,  962, 2086,  959,
-     2056,  958,  957, 2067,  955, 2085, 2088, 2088, 2088, 2089,
-     2089, 2089, 2090, 2090, 2090,  951, 2090, 2070,  948, 2090,
-     2091, 2091, 2091, 2088,  939,  938, 2089, 2092, 2092, 2092,
-      935, 2092,  934,  933, 2092,  932,  922, 2091, 2100, 2100,
-     2100, 2101, 2101, 2101,  915, 2101,  907,  906, 2101, 2102,
-     2102, 2102, 2103, 2103, 2103, 2100, 2104, 2104, 2104,  905,
-
-     2104,  902,  897, 2104,  894,  893, 2102,  889,  887, 2103,
-     2107, 2107, 2107, 2109, 2109, 2109, 2110, 2110, 2110,  884,
-     2110,  883,  882, 2110, 2113, 2113, 2113,  881, 2107,  880,
-      879, 2109, 2114, 2114, 2114,  878, 2114,  874,  870, 2114,
-      869, 2113, 2115, 2115, 2115, 2120, 2120, 2120, 2124, 2124,
-     2124, 2125, 2125, 2125,  868, 2125,  865,  864, 2125,  861,
-     2115,  860, 2132, 2132, 2132, 2124, 2143, 2143, 2143, 2144,
-     2144, 2144, 2146, 2146, 2146, 2148, 2148, 2148, 2109, 2132,
-     2147, 2147, 2147,  859, 2143,  856,  855, 2149, 2149, 2149,
-     2146, 2149, 2148,  852, 2149,  847,  842, 2147, 2150, 2150,
-
-     2150,  839, 2150,  838,  837, 2150, 2156, 2156, 2156,  835,
-     2156,  834,  833, 2156, 2160, 2160, 2160, 2143, 2161, 2161,
-     2161, 2132, 2161,  832,  831, 2161, 2147,  827, 2162, 2162,
-     2162, 2160, 2162, 2146,  822, 2162, 2165, 2165, 2165, 2166,
-     2166, 2166,  821, 2166,  820,  819, 2166, 2168, 2168, 2168,
-     2170, 2170, 2170, 2165, 2170,  816,  815, 2170, 2173, 2173,
-     2173, 2174, 2174, 2174, 2168, 2174,  814,  812, 2174, 2175,
-     2175, 2175, 2176, 2176, 2176, 2173, 2176,  808,  804, 2176,
-     2183, 2183, 2183, 2184, 2184, 2184, 2175, 2184,  803,  800,
-     2184, 2189, 2189, 2189, 2190, 2190, 2190,  797, 2183, 2191,
-
-     2191, 2191,  796, 2194, 2194, 2194,  795, 2194, 2189, 2189,
-     2194, 2205, 2205, 2205, 2214, 2214, 2214, 2215, 2215, 2215,
-     2216, 2216, 2216, 2217, 2217, 2217,  794,  793, 2205,  792,
-      790, 2183, 2214, 2218, 2218, 2218, 2219, 2219, 2219,  789,
-     2219, 2217,  788, 2219, 2221, 2221, 2221,  787, 2221,  786,
-     2218, 2221, 2228, 2228, 2228,  785, 2228,  784,  783, 2228,
-     2231, 2231, 2231, 2214, 2231,  782,  781, 2231, 2235, 2235,
-     2235, 2236, 2236, 2236, 2217, 2236,  780,  779, 2236, 2238,
-     2238, 2238,  778, 2238,  777, 2235, 2238, 2241, 2241, 2241,
-      776, 2241,  775,  774, 2241, 2250, 2250, 2250, 2252, 2252,
-
-     2252, 2253, 2253, 2253, 2254, 2254, 2254,  773, 2254,  769,
-      768, 2254,  766, 2250,  765, 2252, 2252,  764, 2253, 2253,
-      763,  762, 2254, 2255, 2255, 2255, 2256, 2256, 2256, 2257,
-     2257, 2257, 2266, 2266, 2266, 2267, 2267, 2267,  758, 2267,
-      756,  755, 2267, 2276, 2276, 2276, 2277, 2277, 2277, 2266,
-     2278, 2278, 2278, 2279, 2279, 2279,  754, 2279,  753,  749,
-     2279, 2276, 2285, 2285, 2285, 2287, 2287, 2287, 2278, 2288,
-     2288, 2288,  745, 2288,  744,  741, 2288,  740,  739, 2285,
-      738,  737, 2287, 2291, 2291, 2291, 2306, 2306, 2306, 2309,
-     2309, 2309, 2310, 2310, 2310,  736, 2310,  733,  732, 2310,
-
-     2291, 2314, 2314, 2314, 2306,  731, 2309, 2309, 2276,  730,
-     2310, 2311, 2311, 2311,  727, 2311,  725,  722, 2311, 2315,
-     2315, 2315, 2333, 2333, 2333, 2334, 2334, 2334,  721, 2311,
-     2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312,  720,
-     2333, 2312,  719, 2334,  718,  715, 2312, 2312, 2312, 2312,
-     2312, 2324, 2324, 2324,  714, 2324,  713,  712, 2324, 2340,
-     2340, 2340,  711, 2340,  708,  707, 2340,  706,  705, 2339,
-     2339, 2339, 2342, 2342, 2342, 2312, 2312, 2313, 2313, 2313,
-     2313, 2313, 2313, 2313, 2313, 2313, 2339,  703, 2313, 2342,
-     2344, 2344, 2344, 2313, 2313, 2313, 2313, 2313, 2343, 2343,
-
-     2343,  700, 2343,  698,  695, 2343,  694, 2344, 2345, 2345,
-     2345,  693, 2345,  692,  690, 2345,  689, 2359, 2359, 2359,
-      688, 2359, 2313, 2313, 2359,  685,  684, 2378, 2378, 2378,
-     2411, 2411, 2411,  683,  682, 2359, 2362, 2362, 2362, 2362,
-     2362, 2362, 2362, 2362, 2362, 2378,  681, 2362, 2411, 2411,
-      680,  679, 2362, 2362, 2362, 2362, 2362, 2383, 2383, 2383,
-      678, 2383,  677,  675, 2383, 2387, 2387, 2387,  673, 2387,
-      672,  668, 2387, 2390, 2390, 2390,  667, 2390,  666,  663,
-     2390, 2362, 2362, 2363, 2363, 2363, 2363, 2363, 2363, 2363,
-     2363, 2363,  660,  659, 2363, 2420, 2420, 2420,  658, 2363,
-
-     2363, 2363, 2363, 2363, 2421, 2421, 2421, 2422, 2422, 2422,
-      655,  654, 2420, 2427, 2427, 2427, 2436, 2436, 2436,  650,
-      649, 2421,  645,  644, 2422, 2440, 2440, 2440, 2363, 2363,
-     2427, 2445, 2445, 2445, 2436, 2446, 2446, 2446,  642, 2446,
-      637,  636, 2446, 2440, 2447, 2447, 2447,  634, 2445, 2448,
-     2448, 2448,  633, 2448,  632,  631, 2448, 2449, 2449, 2449,
-      630, 2447, 2450, 2450, 2450,  629, 2450,  625,  624, 2450,
-     2457, 2457, 2457,  623, 2449,  622, 2440, 2458, 2458, 2458,
-      618, 2458,  617,  616, 2458,  615,  614, 2457, 2465, 2465,
-     2465, 2471, 2471, 2471,  613, 2471,  612,  610, 2471,  607,
-
-     2474, 2474, 2474,  606, 2474,  604, 2465, 2474, 2477, 2477,
-     2477,  602, 2477,  599,  598, 2477, 2486, 2486, 2486,  592,
-     2486,  590,  588, 2486,  585, 2465, 2581, 2581, 2581, 2590,
-     2590, 2590,  584, 2590,  580,  579, 2590, 2691, 2691, 2691,
-     2692, 2692, 2692,  578, 2581,  576,  575, 2590,  574,  573,
-      572,  569,  568,  567,  566, 2691,  565,  559, 2692, 2695,
-     2695, 2695, 2695, 2695, 2695, 2695, 2695, 2695, 2696, 2696,
-     2696, 2696, 2696, 2696, 2696, 2696, 2696, 2697, 2697, 2697,
-     2697, 2697, 2697, 2697, 2697, 2697, 2698, 2698, 2698, 2698,
-     2698, 2698, 2698, 2698, 2698, 2699, 2699, 2699, 2699, 2699,
-
-     2699, 2699, 2699, 2699, 2700, 2700, 2700, 2700, 2700, 2700,
-     2700, 2700, 2700, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
-     2701, 2701, 2702, 2702, 2702, 2702, 2702, 2702, 2702, 2702,
+     1955, 1955, 1956, 1956, 1956, 1957, 1957, 1957, 1952, 1957,
+
+     1953,  999, 1957,  998, 1954, 1938,  997, 1955,  995, 1956,
+     1958, 1958, 1958, 1959, 1959, 1959, 1960, 1960, 1960, 1961,
+     1961, 1961, 1962, 1962, 1962,  994,  993, 1958,  992,  991,
+     1959, 1968, 1968, 1968, 1960, 1963, 1963, 1963,  990,  988,
+     1962, 1965, 1965, 1965,  987, 1954, 1970, 1970, 1970, 1955,
+     1969, 1969, 1969, 1963, 1972, 1972, 1972,  986,  985, 1965,
+     1973, 1973, 1973,  984, 1959, 1974, 1974, 1974, 1969,  983,
+     1978, 1978, 1978, 1981, 1981, 1981, 1982, 1982, 1982,  982,
+     1982,  981,  980, 1982, 1983, 1983, 1983, 1962, 1978,  979,
+     1981, 1994, 1994, 1994, 1997, 1997, 1997, 1998, 1998, 1998,
+
+      978, 1983, 1965, 2000, 2000, 2000, 2007, 2007, 2007, 1994,
+      977,  971, 1997,  970,  969, 1998, 2008, 2008, 2008,  966,
+      965, 2000,  964, 2007, 2011, 2011, 2011, 2012, 2012, 2012,
+      962, 2012,  958,  955, 2012, 2014, 2014, 2014,  946, 1983,
+      945, 2011, 2015, 2015, 2015, 2019, 2019, 2019,  942,  941,
+     1994,  940, 2014, 2021, 2021, 2021, 2030, 2030, 2030, 1997,
+     2015,  939, 2019,  929, 2022, 2022, 2022,  922, 2022,  914,
+     2021, 2022,  913, 2030, 2032, 2032, 2032, 2034, 2034, 2034,
+     2036, 2036, 2036, 2037, 2037, 2037,  912, 2037,  909,  904,
+     2037, 2038, 2038, 2038,  901, 2034,  900, 2036, 2039, 2039,
+
+     2039, 2040, 2040, 2040,  896, 2040,  894,  891, 2040, 2038,
+     2043, 2043, 2043, 2044, 2044, 2044, 2039, 2044,  890,  889,
+     2044, 2045, 2045, 2045, 2046, 2046, 2046, 2043, 2048, 2048,
+     2048, 2049, 2049, 2049, 2053, 2053, 2053,  888, 2045, 2059,
+     2059, 2059, 2046, 2060, 2060, 2060,  887, 2060,  886, 2049,
+     2060,  885, 2053, 2063, 2063, 2063, 2059, 2074, 2074, 2074,
+     2077, 2077, 2077,  881, 2039, 2078, 2078, 2078,  877,  876,
+     2063, 2081, 2081, 2081,  875, 2074,  872,  871, 2077, 2084,
+     2084, 2084,  868, 2078,  867, 2085, 2085, 2085, 2081, 2085,
+      866,  863, 2085, 2088, 2088, 2088, 2084, 2088,  862,  859,
+
+     2088, 2092, 2092, 2092, 2093, 2093, 2093,  854, 2093,  849,
+      846, 2093,  845, 2063,  844,  842, 2074,  841, 2092, 2095,
+     2095, 2095, 2096, 2096, 2096, 2097, 2097, 2097,  840, 2097,
+     2077,  839, 2097, 2098, 2098, 2098, 2095,  838,  834, 2096,
+     2099, 2099, 2099,  829, 2099,  828,  827, 2099,  826,  823,
+     2098, 2107, 2107, 2107, 2108, 2108, 2108,  822, 2108,  821,
+      819, 2108, 2109, 2109, 2109, 2110, 2110, 2110, 2107, 2111,
+     2111, 2111,  815, 2111,  811,  810, 2111,  807,  804, 2109,
+      803,  802, 2110, 2114, 2114, 2114, 2116, 2116, 2116, 2117,
+     2117, 2117,  801, 2117,  800,  799, 2117, 2120, 2120, 2120,
+
+      797, 2114,  796,  795, 2116, 2121, 2121, 2121,  794, 2121,
+      793,  792, 2121,  791, 2120, 2122, 2122, 2122, 2127, 2127,
+     2127, 2131, 2131, 2131, 2132, 2132, 2132,  790, 2132,  789,
+      788, 2132,  787, 2122,  786, 2139, 2139, 2139, 2131, 2150,
+     2150, 2150, 2151, 2151, 2151, 2153, 2153, 2153, 2155, 2155,
+     2155, 2116, 2139, 2154, 2154, 2154,  785, 2150,  784,  783,
+     2156, 2156, 2156, 2153, 2156, 2155,  782, 2156,  781,  780,
+     2154, 2157, 2157, 2157,  776, 2157,  775,  773, 2157, 2163,
+     2163, 2163,  772, 2163,  771,  770, 2163, 2167, 2167, 2167,
+     2150, 2168, 2168, 2168, 2139, 2168,  769,  765, 2168, 2154,
+
+      763, 2169, 2169, 2169, 2167, 2169, 2153,  762, 2169, 2172,
+     2172, 2172, 2173, 2173, 2173,  761, 2173,  760,  756, 2173,
+     2175, 2175, 2175, 2177, 2177, 2177, 2172, 2177,  752,  751,
+     2177, 2180, 2180, 2180, 2181, 2181, 2181, 2175, 2181,  748,
+      747, 2181, 2182, 2182, 2182, 2183, 2183, 2183, 2180, 2183,
+      746,  745, 2183, 2190, 2190, 2190, 2191, 2191, 2191, 2182,
+     2191,  744,  743, 2191, 2196, 2196, 2196, 2197, 2197, 2197,
+      740, 2190, 2198, 2198, 2198,  739, 2201, 2201, 2201,  738,
+     2201, 2196, 2196, 2201, 2212, 2212, 2212, 2221, 2221, 2221,
+     2222, 2222, 2222, 2223, 2223, 2223, 2224, 2224, 2224,  737,
+
+      734, 2212,  732,  729, 2190, 2221, 2225, 2225, 2225, 2226,
+     2226, 2226,  728, 2226, 2224,  727, 2226, 2228, 2228, 2228,
+      726, 2228,  725, 2225, 2228, 2235, 2235, 2235,  722, 2235,
+      721,  720, 2235, 2238, 2238, 2238, 2221, 2238,  719,  718,
+     2238, 2242, 2242, 2242, 2243, 2243, 2243, 2224, 2243,  715,
+      714, 2243, 2245, 2245, 2245,  713, 2245,  712, 2242, 2245,
+     2248, 2248, 2248,  710, 2248,  707,  705, 2248, 2257, 2257,
+     2257, 2259, 2259, 2259, 2260, 2260, 2260, 2261, 2261, 2261,
+      702, 2261,  701,  700, 2261,  699, 2257,  697, 2259, 2259,
+      696, 2260, 2260,  695,  692, 2261, 2262, 2262, 2262, 2263,
+
+     2263, 2263, 2264, 2264, 2264, 2273, 2273, 2273, 2274, 2274,
+     2274,  691, 2274,  690,  689, 2274, 2283, 2283, 2283, 2284,
+     2284, 2284, 2273, 2285, 2285, 2285, 2286, 2286, 2286,  688,
+     2286,  687,  686, 2286, 2283, 2292, 2292, 2292, 2294, 2294,
+     2294, 2285, 2295, 2295, 2295,  685, 2295,  684,  682, 2295,
+      680,  679, 2292,  675,  674, 2294, 2298, 2298, 2298, 2313,
+     2313, 2313, 2316, 2316, 2316, 2317, 2317, 2317,  673, 2317,
+      670,  667, 2317, 2298, 2321, 2321, 2321, 2313,  666, 2316,
+     2316, 2283,  665, 2317, 2318, 2318, 2318,  662, 2318,  661,
+      657, 2318, 2322, 2322, 2322, 2340, 2340, 2340, 2341, 2341,
+
+     2341,  656, 2318, 2319, 2319, 2319, 2319, 2319, 2319, 2319,
+     2319, 2319,  652, 2340, 2319,  651, 2341,  649,  644, 2319,
+     2319, 2319, 2319, 2319, 2331, 2331, 2331,  643, 2331,  641,
+      640, 2331, 2347, 2347, 2347,  639, 2347,  638,  637, 2347,
+      636,  632, 2346, 2346, 2346, 2349, 2349, 2349, 2319, 2319,
+     2320, 2320, 2320, 2320, 2320, 2320, 2320, 2320, 2320, 2346,
+      631, 2320, 2349, 2351, 2351, 2351, 2320, 2320, 2320, 2320,
+     2320, 2350, 2350, 2350,  630, 2350,  629,  625, 2350,  624,
+     2351, 2352, 2352, 2352,  623, 2352,  622,  621, 2352,  620,
+     2366, 2366, 2366,  619, 2366, 2320, 2320, 2366,  617,  614,
+
+     2385, 2385, 2385, 2418, 2418, 2418,  613,  611, 2366, 2369,
+     2369, 2369, 2369, 2369, 2369, 2369, 2369, 2369, 2385,  609,
+     2369, 2418, 2418,  606,  605, 2369, 2369, 2369, 2369, 2369,
+     2390, 2390, 2390,  599, 2390,  597,  595, 2390, 2394, 2394,
+     2394,  592, 2394,  591,  587, 2394, 2397, 2397, 2397,  586,
+     2397,  585,  583, 2397, 2369, 2369, 2370, 2370, 2370, 2370,
+     2370, 2370, 2370, 2370, 2370,  582,  581, 2370, 2427, 2427,
+     2427,  580, 2370, 2370, 2370, 2370, 2370, 2428, 2428, 2428,
+     2429, 2429, 2429,  579,  576, 2427, 2434, 2434, 2434, 2443,
+     2443, 2443,  575,  574, 2428,  573,  572, 2429, 2447, 2447,
+
+     2447, 2370, 2370, 2434, 2452, 2452, 2452, 2443, 2453, 2453,
+     2453,  566, 2453,  565,  563, 2453, 2447, 2454, 2454, 2454,
+      557, 2452, 2455, 2455, 2455,  556, 2455,  552,  545, 2455,
+     2456, 2456, 2456,  541, 2454, 2457, 2457, 2457,  535, 2457,
+      531,  527, 2457, 2464, 2464, 2464,  523, 2456,  522, 2447,
+     2465, 2465, 2465,  521, 2465,  520,  516, 2465,  512,  509,
+     2464, 2472, 2472, 2472, 2478, 2478, 2478,  508, 2478,  507,
+      503, 2478,  497, 2481, 2481, 2481,  496, 2481,  492, 2472,
+     2481, 2484, 2484, 2484,  488, 2484,  484,  483, 2484, 2493,
+     2493, 2493,  479, 2493,  476,  475, 2493,  470, 2472, 2588,
+
+     2588, 2588, 2597, 2597, 2597,  466, 2597,  458,  457, 2597,
+     2698, 2698, 2698, 2699, 2699, 2699,  456, 2588,  452,  446,
+     2597,  445,  441,  435,  434,  433,  432,  431, 2698,  430,
+      429, 2699, 2702, 2702, 2702, 2702, 2702, 2702, 2702, 2702,
      2702, 2703, 2703, 2703, 2703, 2703, 2703, 2703, 2703, 2703,
      2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2704, 2705,
      2705, 2705, 2705, 2705, 2705, 2705, 2705, 2705, 2706, 2706,
      2706, 2706, 2706, 2706, 2706, 2706, 2706, 2707, 2707, 2707,
      2707, 2707, 2707, 2707, 2707, 2707, 2708, 2708, 2708, 2708,
      2708, 2708, 2708, 2708, 2708, 2709, 2709, 2709, 2709, 2709,
-     2709, 2709, 2709, 2709, 2710, 2710, 2710, 2710, 2710, 2710,
 
+     2709, 2709, 2709, 2709, 2710, 2710, 2710, 2710, 2710, 2710,
      2710, 2710, 2710, 2711, 2711, 2711, 2711, 2711, 2711, 2711,
      2711, 2711, 2712, 2712, 2712, 2712, 2712, 2712, 2712, 2712,
      2712, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713, 2713,
@@ -3280,8 +3291,8 @@ static yyconst flex_int16_t yy_chk[9692] =
      2717, 2717, 2717, 2717, 2717, 2717, 2718, 2718, 2718, 2718,
      2718, 2718, 2718, 2718, 2718, 2719, 2719, 2719, 2719, 2719,
      2719, 2719, 2719, 2719, 2720, 2720, 2720, 2720, 2720, 2720,
-     2720, 2720, 2720, 2721, 2721, 2721, 2721, 2721, 2721, 2721,
 
+     2720, 2720, 2720, 2721, 2721, 2721, 2721, 2721, 2721, 2721,
      2721, 2721, 2722, 2722, 2722, 2722, 2722, 2722, 2722, 2722,
      2722, 2723, 2723, 2723, 2723, 2723, 2723, 2723, 2723, 2723,
      2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2724, 2725,
@@ -3291,8 +3302,8 @@ static yyconst flex_int16_t yy_chk[9692] =
      2728, 2728, 2728, 2728, 2728, 2729, 2729, 2729, 2729, 2729,
      2729, 2729, 2729, 2729, 2730, 2730, 2730, 2730, 2730, 2730,
      2730, 2730, 2730, 2731, 2731, 2731, 2731, 2731, 2731, 2731,
-     2731, 2731, 2732, 2732, 2732, 2732, 2732, 2732, 2732, 2732,
 
+     2731, 2731, 2732, 2732, 2732, 2732, 2732, 2732, 2732, 2732,
      2732, 2733, 2733, 2733, 2733, 2733, 2733, 2733, 2733, 2733,
      2734, 2734, 2734, 2734, 2734, 2734, 2734, 2734, 2734, 2735,
      2735, 2735, 2735, 2735, 2735, 2735, 2735, 2735, 2736, 2736,
@@ -3302,283 +3313,289 @@ static yyconst flex_int16_t yy_chk[9692] =
      2739, 2739, 2739, 2739, 2740, 2740, 2740, 2740, 2740, 2740,
      2740, 2740, 2740, 2741, 2741, 2741, 2741, 2741, 2741, 2741,
      2741, 2741, 2742, 2742, 2742, 2742, 2742, 2742, 2742, 2742,
-     2742, 2743, 2743, 2743, 2743, 2743, 2743, 2743, 2743, 2743,
 
+     2742, 2743, 2743, 2743, 2743, 2743, 2743, 2743, 2743, 2743,
      2744, 2744, 2744, 2744, 2744, 2744, 2744, 2744, 2744, 2745,
-     2745, 2745,  558,  556,  550, 2745, 2746, 2746, 2746,  549,
-      545,  541, 2746, 2747, 2747, 2747,  538,  534,  528, 2747,
-     2748, 2748, 2748,  524,  516,  515, 2748, 2749, 2749, 2749,
-      514,  513,  509, 2749, 2750, 2750, 2750,  505,  502,  501,
-     2750, 2751, 2751, 2751,  500,  496,  490, 2751, 2752, 2752,
-     2752,  489,  485,  481, 2752, 2753, 2753, 2753,  477,  476,
-      472, 2753, 2754, 2754, 2754,  469,  468,  463, 2754, 2755,
-     2755, 2755,  459,  455,  451, 2755, 2756, 2756, 2756,  450,
-      449,  445, 2756, 2757, 2757, 2757,  439,  438,  434, 2757,
-
-     2758, 2758, 2758,  428,  427,  426, 2758, 2759, 2759, 2759,
-      425,  424,  423, 2759, 2760, 2760, 2760,  422,  418,  409,
-     2760, 2761, 2761, 2761,  408,  407,  405, 2761, 2762, 2762,
-     2762,  401,  393,  392, 2762, 2763, 2763, 2763,  391,  390,
-      389, 2763, 2764, 2764, 2764,  385,  379,  378, 2764, 2765,
-     2765, 2765,  374,  368,  367, 2765, 2766, 2766, 2766,  363,
-      359,  356, 2766, 2767, 2767, 2767,  355,  351,  347, 2767,
-     2768, 2768, 2768, 2768, 2768, 2768, 2768,  344, 2768, 2769,
-     2769, 2769,  343,  342,  338, 2769, 2770,  334,  328,  321,
-     2770, 2771, 2771, 2771,  320,  316,  310, 2771, 2772,  309,
-
-      308,  304, 2772, 2773, 2773, 2773,  301,  300,  295, 2773,
-     2774,  293,  292,  288, 2774, 2775, 2775, 2775,  285,  283,
-      282, 2775, 2776,  281,  277,  271, 2776, 2777, 2777, 2777,
-      267,  263,  255, 2777, 2778,  251,  247,  246, 2778, 2779,
-     2779, 2779,  245,  239,  238, 2779, 2780,  236,  233,  221,
-     2780, 2781, 2781, 2781,    0,    0,    0, 2781, 2782,    0,
-        0,    0, 2782, 2783, 2783, 2783,    0,    0,    0, 2783,
-     2784,    0,    0,    0, 2784, 2785, 2785, 2785,    0,    0,
-        0, 2785, 2786,    0,    0,    0, 2786, 2787, 2787, 2787,
-        0,    0,    0, 2787, 2788,    0,    0,    0, 2788, 2789,
-
-     2789, 2789,    0,    0,    0, 2789, 2790,    0,    0,    0,
-     2790, 2791, 2791, 2791,    0,    0,    0, 2791, 2792,    0,
-        0,    0, 2792, 2793, 2793, 2793,    0,    0,    0, 2793,
-     2794,    0,    0,    0, 2794, 2795, 2795, 2795,    0,    0,
-        0, 2795, 2796,    0,    0,    0, 2796, 2797, 2797, 2797,
-        0,    0,    0, 2797, 2798,    0,    0,    0, 2798, 2799,
-     2799, 2799,    0,    0,    0, 2799, 2800,    0,    0,    0,
-     2800, 2801, 2801, 2801,    0,    0,    0, 2801, 2802,    0,
-        0,    0, 2802, 2803, 2803, 2803,    0,    0,    0, 2803,
-     2804,    0,    0,    0, 2804, 2805, 2805, 2805,    0,    0,
-
-        0, 2805, 2806,    0,    0,    0, 2806, 2807, 2807, 2807,
-        0,    0,    0, 2807, 2808,    0,    0,    0, 2808, 2809,
-     2809, 2809,    0,    0,    0, 2809, 2810,    0,    0,    0,
-     2810, 2811, 2811, 2811,    0,    0,    0, 2811, 2812,    0,
-        0,    0, 2812, 2813, 2813, 2813,    0,    0,    0, 2813,
-     2814,    0,    0,    0, 2814, 2815, 2815, 2815, 2815, 2815,
-     2815, 2815, 2815, 2815, 2816,    0,    0,    0,    0, 2816,
-     2817, 2817, 2817,    0,    0,    0, 2817, 2818, 2818, 2818,
-     2818,    0,    0, 2818, 2818, 2819, 2819, 2819,    0,    0,
-        0, 2819, 2820, 2820, 2820, 2820,    0,    0, 2820, 2820,
-
-     2821, 2821, 2821,    0,    0,    0, 2821, 2822, 2822, 2822,
-     2822,    0,    0, 2822, 2822, 2823, 2823, 2823,    0,    0,
-        0, 2823, 2824, 2824, 2824, 2824,    0,    0, 2824, 2824,
-     2825, 2825, 2825,    0,    0,    0, 2825, 2826, 2826, 2826,
-     2826,    0,    0, 2826, 2826, 2827, 2827, 2827,    0,    0,
-        0, 2827, 2828, 2828, 2828, 2828,    0,    0, 2828, 2828,
-     2829, 2829, 2829,    0,    0,    0, 2829, 2830, 2830, 2830,
-     2830,    0,    0, 2830, 2830, 2831, 2831, 2831,    0,    0,
-        0, 2831, 2832, 2832, 2832, 2832,    0,    0, 2832, 2832,
-     2833, 2833, 2833,    0,    0,    0, 2833, 2834, 2834, 2834,
-
-     2834,    0,    0, 2834, 2834, 2835, 2835, 2835,    0,    0,
-        0, 2835, 2836, 2836, 2836, 2836,    0,    0, 2836, 2836,
-     2837, 2837, 2837,    0,    0,    0, 2837, 2838, 2838, 2838,
-     2838,    0,    0, 2838, 2838, 2839, 2839, 2839,    0,    0,
-        0, 2839, 2840, 2840, 2840, 2840,    0,    0, 2840, 2840,
-     2841, 2841, 2841,    0,    0,    0, 2841, 2842, 2842, 2842,
-     2842,    0,    0, 2842, 2842, 2843, 2843, 2843,    0,    0,
-        0, 2843, 2844, 2844, 2844, 2844,    0,    0, 2844, 2844,
-     2845, 2845, 2845,    0,    0,    0, 2845, 2846, 2846, 2846,
-     2846,    0,    0, 2846, 2846, 2847, 2847, 2847, 2847,    0,
-
-     2847,    0, 2847, 2848, 2848, 2848, 2848,    0,    0, 2848,
-     2848, 2849, 2849, 2849, 2849,    0, 2849,    0, 2849, 2850,
-     2850, 2850, 2850,    0,    0, 2850, 2850, 2851, 2851, 2851,
-        0,    0,    0, 2851, 2852, 2852, 2852, 2852,    0,    0,
-     2852, 2852, 2853, 2853, 2853, 2853,    0, 2853,    0, 2853,
-     2854, 2854, 2854, 2854,    0,    0, 2854, 2854, 2855, 2855,
-     2855,    0,    0,    0, 2855, 2856, 2856, 2856, 2856,    0,
-        0, 2856, 2856, 2857, 2857, 2857,    0,    0,    0, 2857,
-     2858, 2858, 2858, 2858,    0,    0, 2858, 2858, 2859, 2859,
-     2859, 2859,    0,    0, 2859, 2859, 2860, 2860, 2860,    0,
-
-        0,    0, 2860, 2861, 2861, 2861, 2861,    0,    0, 2861,
-     2861, 2862, 2862, 2862, 2862, 2862, 2862, 2862, 2862, 2862,
-     2863,    0, 2863,    0,    0, 2863, 2864, 2864, 2864,    0,
+     2745, 2745, 2745, 2745, 2745, 2745, 2745, 2745, 2746, 2746,
+     2746, 2746, 2746, 2746, 2746, 2746, 2746, 2747, 2747, 2747,
+     2747, 2747, 2747, 2747, 2747, 2747, 2748, 2748, 2748, 2748,
+     2748, 2748, 2748, 2748, 2748, 2749, 2749, 2749, 2749, 2749,
+     2749, 2749, 2749, 2749, 2750, 2750, 2750, 2750, 2750, 2750,
+     2750, 2750, 2750, 2751, 2751, 2751, 2751, 2751, 2751, 2751,
+     2751, 2751, 2752, 2752, 2752,  425,  416,  415, 2752, 2753,
+     2753, 2753,  414,  412,  408, 2753, 2754, 2754, 2754,  404,
+
+      400,  399, 2754, 2755, 2755, 2755,  398,  397,  396, 2755,
+     2756, 2756, 2756,  392,  386,  385, 2756, 2757, 2757, 2757,
+      381,  375,  374, 2757, 2758, 2758, 2758,  370,  363,  362,
+     2758, 2759, 2759, 2759,  358,  351,  350, 2759, 2760, 2760,
+     2760,  349,  345,  341, 2760, 2761, 2761, 2761,  335,  328,
+      327, 2761, 2762, 2762, 2762,  323,  317,  316, 2762, 2763,
+     2763, 2763,  315,  311,  302, 2763, 2764, 2764, 2764,  300,
+      299,  295, 2764, 2765, 2765, 2765,  292,  290,  289, 2765,
+     2766, 2766, 2766,  288,  284,  280, 2766, 2767, 2767, 2767,
+      277,  273,  270, 2767, 2768, 2768, 2768,  269,  261,  257,
+
+     2768, 2769, 2769, 2769,  253,  252,  251, 2769, 2770, 2770,
+     2770,  245,  244,  242, 2770, 2771, 2771, 2771,  239,  227,
+        0, 2771, 2772, 2772, 2772,    0,    0,    0, 2772, 2773,
+     2773, 2773,    0,    0,    0, 2773, 2774, 2774, 2774,    0,
+        0,    0, 2774, 2775, 2775, 2775, 2775, 2775, 2775, 2775,
+        0, 2775, 2776, 2776, 2776,    0,    0,    0, 2776, 2777,
+        0,    0,    0, 2777, 2778, 2778, 2778,    0,    0,    0,
+     2778, 2779,    0,    0,    0, 2779, 2780, 2780, 2780,    0,
+        0,    0, 2780, 2781,    0,    0,    0, 2781, 2782, 2782,
+     2782,    0,    0,    0, 2782, 2783,    0,    0,    0, 2783,
+
+     2784, 2784, 2784,    0,    0,    0, 2784, 2785,    0,    0,
+        0, 2785, 2786, 2786, 2786,    0,    0,    0, 2786, 2787,
+        0,    0,    0, 2787, 2788, 2788, 2788,    0,    0,    0,
+     2788, 2789,    0,    0,    0, 2789, 2790, 2790, 2790,    0,
+        0,    0, 2790, 2791,    0,    0,    0, 2791, 2792, 2792,
+     2792,    0,    0,    0, 2792, 2793,    0,    0,    0, 2793,
+     2794, 2794, 2794,    0,    0,    0, 2794, 2795,    0,    0,
+        0, 2795, 2796, 2796, 2796,    0,    0,    0, 2796, 2797,
+        0,    0,    0, 2797, 2798, 2798, 2798,    0,    0,    0,
+     2798, 2799,    0,    0,    0, 2799, 2800, 2800, 2800,    0,
+
+        0,    0, 2800, 2801,    0,    0,    0, 2801, 2802, 2802,
+     2802,    0,    0,    0, 2802, 2803,    0,    0,    0, 2803,
+     2804, 2804, 2804,    0,    0,    0, 2804, 2805,    0,    0,
+        0, 2805, 2806, 2806, 2806,    0,    0,    0, 2806, 2807,
+        0,    0,    0, 2807, 2808, 2808, 2808,    0,    0,    0,
+     2808, 2809,    0,    0,    0, 2809, 2810, 2810, 2810,    0,
+        0,    0, 2810, 2811,    0,    0,    0, 2811, 2812, 2812,
+     2812,    0,    0,    0, 2812, 2813,    0,    0,    0, 2813,
+     2814, 2814, 2814,    0,    0,    0, 2814, 2815,    0,    0,
+        0, 2815, 2816, 2816, 2816,    0,    0,    0, 2816, 2817,
+
+        0,    0,    0, 2817, 2818, 2818, 2818,    0,    0,    0,
+     2818, 2819,    0,    0,    0, 2819, 2820, 2820, 2820,    0,
+        0,    0, 2820, 2821,    0,    0,    0, 2821, 2822, 2822,
+     2822, 2822, 2822, 2822, 2822, 2822, 2822, 2823,    0,    0,
+        0,    0, 2823, 2824, 2824, 2824,    0,    0,    0, 2824,
+     2825, 2825, 2825, 2825,    0,    0, 2825, 2825, 2826, 2826,
+     2826,    0,    0,    0, 2826, 2827, 2827, 2827, 2827,    0,
+        0, 2827, 2827, 2828, 2828, 2828,    0,    0,    0, 2828,
+     2829, 2829, 2829, 2829,    0,    0, 2829, 2829, 2830, 2830,
+     2830,    0,    0,    0, 2830, 2831, 2831, 2831, 2831,    0,
+
+        0, 2831, 2831, 2832, 2832, 2832,    0,    0,    0, 2832,
+     2833, 2833, 2833, 2833,    0,    0, 2833, 2833, 2834, 2834,
+     2834,    0,    0,    0, 2834, 2835, 2835, 2835, 2835,    0,
+        0, 2835, 2835, 2836, 2836, 2836,    0,    0,    0, 2836,
+     2837, 2837, 2837, 2837,    0,    0, 2837, 2837, 2838, 2838,
+     2838,    0,    0,    0, 2838, 2839, 2839, 2839, 2839,    0,
+        0, 2839, 2839, 2840, 2840, 2840,    0,    0,    0, 2840,
+     2841, 2841, 2841, 2841,    0,    0, 2841, 2841, 2842, 2842,
+     2842,    0,    0,    0, 2842, 2843, 2843, 2843, 2843,    0,
+        0, 2843, 2843, 2844, 2844, 2844,    0,    0,    0, 2844,
+
+     2845, 2845, 2845, 2845,    0,    0, 2845, 2845, 2846, 2846,
+     2846,    0,    0,    0, 2846, 2847, 2847, 2847, 2847,    0,
+        0, 2847, 2847, 2848, 2848, 2848,    0,    0,    0, 2848,
+     2849, 2849, 2849, 2849,    0,    0, 2849, 2849, 2850, 2850,
+     2850,    0,    0,    0, 2850, 2851, 2851, 2851, 2851,    0,
+        0, 2851, 2851, 2852, 2852, 2852,    0,    0,    0, 2852,
+     2853, 2853, 2853, 2853,    0,    0, 2853, 2853, 2854, 2854,
+     2854, 2854,    0, 2854,    0, 2854, 2855, 2855, 2855, 2855,
+        0,    0, 2855, 2855, 2856, 2856, 2856, 2856,    0, 2856,
+        0, 2856, 2857, 2857, 2857, 2857,    0,    0, 2857, 2857,
+
+     2858, 2858, 2858,    0,    0,    0, 2858, 2859, 2859, 2859,
+     2859,    0,    0, 2859, 2859, 2860, 2860, 2860, 2860,    0,
+     2860,    0, 2860, 2861, 2861, 2861, 2861,    0,    0, 2861,
+     2861, 2862, 2862, 2862,    0,    0,    0, 2862, 2863, 2863,
+     2863, 2863,    0,    0, 2863, 2863, 2864, 2864, 2864,    0,
         0,    0, 2864, 2865, 2865, 2865, 2865,    0,    0, 2865,
-     2865, 2866, 2866, 2866, 2866,    0, 2866,    0, 2866, 2867,
-     2867, 2867, 2867,    0,    0, 2867, 2867, 2868, 2868, 2868,
-     2868,    0, 2868,    0, 2868, 2869, 2869, 2869, 2869,    0,
-        0, 2869, 2869, 2870, 2870, 2870,    0,    0,    0, 2870,
-     2871, 2871, 2871, 2871,    0,    0, 2871, 2871, 2872, 2872,
-     2872,    0,    0,    0, 2872, 2873, 2873, 2873, 2873,    0,
-
-        0, 2873, 2873, 2874, 2874, 2874,    0,    0,    0, 2874,
-     2875, 2875, 2875, 2875,    0,    0, 2875, 2875, 2876, 2876,
-     2876,    0,    0,    0, 2876, 2877, 2877, 2877, 2877,    0,
-        0, 2877, 2877, 2878, 2878, 2878,    0,    0,    0, 2878,
-     2879, 2879, 2879, 2879,    0,    0, 2879, 2879, 2880, 2880,
-     2880, 2880,    0, 2880,    0, 2880, 2881, 2881, 2881, 2881,
-        0,    0, 2881, 2881, 2882, 2882, 2882, 2882,    0, 2882,
-        0, 2882, 2883, 2883, 2883, 2883,    0,    0, 2883, 2883,
-     2884, 2884, 2884,    0,    0,    0, 2884, 2885, 2885, 2885,
-     2885,    0,    0, 2885, 2885, 2886, 2886, 2886,    0,    0,
-
-        0, 2886, 2887, 2887, 2887, 2887,    0,    0, 2887, 2887,
-     2888, 2888, 2888,    0,    0,    0, 2888, 2889, 2889, 2889,
-     2889,    0,    0, 2889, 2889, 2890, 2890, 2890,    0,    0,
-        0, 2890, 2891, 2891, 2891, 2891,    0,    0, 2891, 2891,
-     2892, 2892, 2892,    0,    0,    0, 2892, 2893, 2893, 2893,
-     2893,    0,    0, 2893, 2893, 2894, 2894, 2894,    0,    0,
-        0, 2894, 2895, 2895, 2895, 2895,    0,    0, 2895, 2895,
-     2896, 2896, 2896,    0,    0,    0, 2896, 2897, 2897, 2897,
-     2897,    0,    0, 2897, 2897, 2898, 2898, 2898,    0,    0,
-        0, 2898, 2899, 2899, 2899, 2899,    0,    0, 2899, 2899,
-
-     2900, 2900, 2900,    0,    0,    0, 2900, 2901, 2901, 2901,
-     2901,    0,    0, 2901, 2901, 2902, 2902, 2902,    0,    0,
-        0, 2902, 2903, 2903, 2903, 2903,    0,    0, 2903, 2903,
-     2904, 2904, 2904,    0,    0,    0, 2904, 2905, 2905, 2905,
-     2905,    0,    0, 2905, 2905, 2906, 2906, 2906, 2906,    0,
+     2865, 2866, 2866, 2866, 2866,    0,    0, 2866, 2866, 2867,
+     2867, 2867,    0,    0,    0, 2867, 2868, 2868, 2868, 2868,
+        0,    0, 2868, 2868, 2869, 2869, 2869, 2869, 2869, 2869,
+     2869, 2869, 2869, 2870,    0, 2870,    0,    0, 2870, 2871,
+
+     2871, 2871,    0,    0,    0, 2871, 2872, 2872, 2872, 2872,
+        0,    0, 2872, 2872, 2873, 2873, 2873, 2873,    0, 2873,
+        0, 2873, 2874, 2874, 2874, 2874,    0,    0, 2874, 2874,
+     2875, 2875, 2875, 2875,    0, 2875,    0, 2875, 2876, 2876,
+     2876, 2876,    0,    0, 2876, 2876, 2877, 2877, 2877,    0,
+        0,    0, 2877, 2878, 2878, 2878, 2878,    0,    0, 2878,
+     2878, 2879, 2879, 2879,    0,    0,    0, 2879, 2880, 2880,
+     2880, 2880,    0,    0, 2880, 2880, 2881, 2881, 2881,    0,
+        0,    0, 2881, 2882, 2882, 2882, 2882,    0,    0, 2882,
+     2882, 2883, 2883, 2883,    0,    0,    0, 2883, 2884, 2884,
+
+     2884, 2884,    0,    0, 2884, 2884, 2885, 2885, 2885,    0,
+        0,    0, 2885, 2886, 2886, 2886, 2886,    0,    0, 2886,
+     2886, 2887, 2887, 2887, 2887,    0, 2887,    0, 2887, 2888,
+     2888, 2888, 2888,    0,    0, 2888, 2888, 2889, 2889, 2889,
+     2889,    0, 2889,    0, 2889, 2890, 2890, 2890, 2890,    0,
+        0, 2890, 2890, 2891, 2891, 2891,    0,    0,    0, 2891,
+     2892, 2892, 2892, 2892,    0,    0, 2892, 2892, 2893, 2893,
+     2893,    0,    0,    0, 2893, 2894, 2894, 2894, 2894,    0,
+        0, 2894, 2894, 2895, 2895, 2895,    0,    0,    0, 2895,
+     2896, 2896, 2896, 2896,    0,    0, 2896, 2896, 2897, 2897,
+
+     2897,    0,    0,    0, 2897, 2898, 2898, 2898, 2898,    0,
+        0, 2898, 2898, 2899, 2899, 2899,    0,    0,    0, 2899,
+     2900, 2900, 2900, 2900,    0,    0, 2900, 2900, 2901, 2901,
+     2901,    0,    0,    0, 2901, 2902, 2902, 2902, 2902,    0,
+        0, 2902, 2902, 2903, 2903, 2903,    0,    0,    0, 2903,
+     2904, 2904, 2904, 2904,    0,    0, 2904, 2904, 2905, 2905,
+     2905,    0,    0,    0, 2905, 2906, 2906, 2906, 2906,    0,
         0, 2906, 2906, 2907, 2907, 2907,    0,    0,    0, 2907,
      2908, 2908, 2908, 2908,    0,    0, 2908, 2908, 2909, 2909,
-     2909, 2909, 2909, 2909, 2909, 2909, 2909, 2910, 2910, 2910,
-     2910, 2910, 2910, 2910, 2910, 2910, 2911, 2911, 2911,    0,
-        0,    0, 2911, 2912, 2912, 2912, 2912,    0,    0, 2912,
-
-     2912, 2913, 2913, 2913, 2913,    0,    0, 2913, 2913, 2914,
-     2914, 2914,    0,    0,    0, 2914, 2915, 2915, 2915, 2915,
-        0,    0, 2915, 2915, 2916, 2916, 2916,    0,    0,    0,
-     2916, 2917, 2917, 2917, 2917,    0,    0, 2917, 2917, 2918,
+     2909,    0,    0,    0, 2909, 2910, 2910, 2910, 2910,    0,
+
+        0, 2910, 2910, 2911, 2911, 2911,    0,    0,    0, 2911,
+     2912, 2912, 2912, 2912,    0,    0, 2912, 2912, 2913, 2913,
+     2913, 2913,    0,    0, 2913, 2913, 2914, 2914, 2914,    0,
+        0,    0, 2914, 2915, 2915, 2915, 2915,    0,    0, 2915,
+     2915, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
+     2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2918,
      2918, 2918,    0,    0,    0, 2918, 2919, 2919, 2919, 2919,
-        0,    0, 2919, 2919, 2920, 2920, 2920,    0,    0,    0,
-     2920, 2921, 2921, 2921,    0,    0,    0, 2921, 2922, 2922,
-     2922, 2922,    0,    0, 2922, 2922, 2923, 2923, 2923,    0,
-        0,    0, 2923, 2924, 2924, 2924, 2924,    0,    0, 2924,
-     2924, 2925, 2925, 2925, 2925,    0,    0, 2925, 2925, 2926,
-
-     2926, 2926,    0,    0,    0, 2926, 2927, 2927, 2927, 2927,
-        0,    0, 2927, 2927, 2928, 2928, 2928,    0,    0,    0,
+        0,    0, 2919, 2919, 2920, 2920, 2920, 2920,    0,    0,
+     2920, 2920, 2921, 2921, 2921,    0,    0,    0, 2921, 2922,
+     2922, 2922, 2922,    0,    0, 2922, 2922, 2923, 2923, 2923,
+
+        0,    0,    0, 2923, 2924, 2924, 2924, 2924,    0,    0,
+     2924, 2924, 2925, 2925, 2925,    0,    0,    0, 2925, 2926,
+     2926, 2926, 2926,    0,    0, 2926, 2926, 2927, 2927, 2927,
+        0,    0,    0, 2927, 2928, 2928, 2928,    0,    0,    0,
      2928, 2929, 2929, 2929, 2929,    0,    0, 2929, 2929, 2930,
      2930, 2930,    0,    0,    0, 2930, 2931, 2931, 2931, 2931,
-        0,    0, 2931, 2931, 2932, 2932, 2932,    0,    0,    0,
-     2932, 2933, 2933, 2933, 2933,    0,    0, 2933, 2933, 2934,
-     2934, 2934,    0,    0,    0, 2934, 2935, 2935, 2935, 2935,
-        0,    0, 2935, 2935, 2936, 2936, 2936,    0,    0,    0,
-     2936, 2937, 2937, 2937, 2937,    0,    0, 2937, 2937, 2938,
-     2938, 2938,    0,    0,    0, 2938, 2939, 2939, 2939, 2939,
-
-        0,    0, 2939, 2939, 2940, 2940, 2940,    0,    0,    0,
-     2940, 2941, 2941, 2941, 2941,    0,    0, 2941, 2941, 2942,
-     2942, 2942,    0,    0,    0, 2942, 2943, 2943, 2943, 2943,
-        0,    0, 2943, 2943, 2944, 2944, 2944,    0,    0,    0,
-     2944, 2945, 2945, 2945, 2945,    0,    0, 2945, 2945, 2946,
-     2946, 2946,    0,    0,    0, 2946, 2947, 2947, 2947, 2947,
-        0,    0, 2947, 2947, 2948, 2948, 2948, 2948,    0, 2948,
-        0, 2948, 2949, 2949, 2949, 2949,    0,    0, 2949, 2949,
-     2950, 2950, 2950, 2950,    0,    0, 2950, 2950, 2951, 2951,
-     2951, 2951,    0, 2951,    0, 2951, 2952, 2952, 2952, 2952,
-
-        0,    0, 2952, 2952, 2953, 2953, 2953, 2953, 2953, 2953,
-     2953, 2953, 2953, 2954, 2954, 2954, 2954, 2954, 2954, 2954,
-     2954, 2954, 2955, 2955, 2955,    0,    0,    0, 2955, 2956,
-     2956, 2956, 2956,    0,    0, 2956, 2956, 2957, 2957, 2957,
-     2957,    0,    0, 2957, 2957, 2958, 2958, 2958,    0,    0,
-        0, 2958, 2959, 2959, 2959, 2959,    0,    0, 2959, 2959,
-     2960, 2960, 2960,    0,    0,    0, 2960, 2961, 2961, 2961,
-     2961,    0,    0, 2961, 2961, 2962, 2962, 2962,    0,    0,
-        0, 2962, 2963, 2963, 2963, 2963,    0,    0, 2963, 2963,
-     2964, 2964, 2964,    0,    0,    0, 2964, 2965, 2965, 2965,
+        0,    0, 2931, 2931, 2932, 2932, 2932, 2932,    0,    0,
+     2932, 2932, 2933, 2933, 2933,    0,    0,    0, 2933, 2934,
+     2934, 2934, 2934,    0,    0, 2934, 2934, 2935, 2935, 2935,
+        0,    0,    0, 2935, 2936, 2936, 2936, 2936,    0,    0,
+
+     2936, 2936, 2937, 2937, 2937,    0,    0,    0, 2937, 2938,
+     2938, 2938, 2938,    0,    0, 2938, 2938, 2939, 2939, 2939,
+        0,    0,    0, 2939, 2940, 2940, 2940, 2940,    0,    0,
+     2940, 2940, 2941, 2941, 2941,    0,    0,    0, 2941, 2942,
+     2942, 2942, 2942,    0,    0, 2942, 2942, 2943, 2943, 2943,
+        0,    0,    0, 2943, 2944, 2944, 2944, 2944,    0,    0,
+     2944, 2944, 2945, 2945, 2945,    0,    0,    0, 2945, 2946,
+     2946, 2946, 2946,    0,    0, 2946, 2946, 2947, 2947, 2947,
+        0,    0,    0, 2947, 2948, 2948, 2948, 2948,    0,    0,
+     2948, 2948, 2949, 2949, 2949,    0,    0,    0, 2949, 2950,
+
+     2950, 2950, 2950,    0,    0, 2950, 2950, 2951, 2951, 2951,
+        0,    0,    0, 2951, 2952, 2952, 2952, 2952,    0,    0,
+     2952, 2952, 2953, 2953, 2953,    0,    0,    0, 2953, 2954,
+     2954, 2954, 2954,    0,    0, 2954, 2954, 2955, 2955, 2955,
+     2955,    0, 2955,    0, 2955, 2956, 2956, 2956, 2956,    0,
+        0, 2956, 2956, 2957, 2957, 2957, 2957,    0,    0, 2957,
+     2957, 2958, 2958, 2958, 2958,    0, 2958,    0, 2958, 2959,
+     2959, 2959, 2959,    0,    0, 2959, 2959, 2960, 2960, 2960,
+     2960, 2960, 2960, 2960, 2960, 2960, 2961, 2961, 2961, 2961,
+     2961, 2961, 2961, 2961, 2961, 2962, 2962, 2962,    0,    0,
 
-        0,    0,    0, 2965, 2966, 2966, 2966, 2966,    0,    0,
-     2966, 2966, 2967, 2967, 2967, 2967,    0, 2967,    0, 2967,
+        0, 2962, 2963, 2963, 2963, 2963,    0,    0, 2963, 2963,
+     2964, 2964, 2964, 2964,    0,    0, 2964, 2964, 2965, 2965,
+     2965,    0,    0,    0, 2965, 2966, 2966, 2966, 2966,    0,
+        0, 2966, 2966, 2967, 2967, 2967,    0,    0,    0, 2967,
      2968, 2968, 2968, 2968,    0,    0, 2968, 2968, 2969, 2969,
-     2969, 2969,    0,    0, 2969, 2969, 2970, 2970, 2970, 2970,
-        0, 2970,    0, 2970, 2971, 2971, 2971, 2971,    0,    0,
-     2971, 2971, 2972, 2972, 2972,    0,    0,    0, 2972, 2973,
-     2973, 2973, 2973,    0,    0, 2973, 2973, 2974, 2974, 2974,
-        0,    0,    0, 2974, 2975, 2975, 2975, 2975,    0,    0,
-     2975, 2975, 2976, 2976, 2976,    0,    0,    0, 2976, 2977,
-     2977, 2977, 2977,    0,    0, 2977, 2977, 2978, 2978, 2978,
-
-        0,    0,    0, 2978, 2979, 2979, 2979, 2979,    0,    0,
-     2979, 2979, 2980, 2980, 2980,    0,    0,    0, 2980, 2981,
-     2981, 2981, 2981,    0,    0, 2981, 2981, 2982, 2982, 2982,
-        0,    0,    0, 2982, 2983, 2983, 2983, 2983,    0,    0,
-     2983, 2983, 2984, 2984, 2984, 2984,    0, 2984,    0, 2984,
-     2985, 2985, 2985, 2985,    0,    0, 2985, 2985, 2986, 2986,
-     2986,    0,    0,    0, 2986, 2987, 2987, 2987, 2987,    0,
-        0, 2987, 2987, 2988, 2988, 2988, 2988,    0, 2988,    0,
-     2988, 2989, 2989, 2989, 2989,    0,    0, 2989, 2989, 2990,
-     2990, 2990,    0,    0,    0, 2990, 2991, 2991, 2991, 2991,
-
-        0,    0, 2991, 2991, 2992, 2992, 2992, 2992,    0,    0,
-     2992, 2992, 2993, 2993, 2993, 2993,    0,    0, 2993, 2993,
-     2994, 2994, 2994, 2994,    0,    0, 2994, 2994, 2995, 2995,
-     2995, 2995, 2995, 2995, 2995, 2995, 2995, 2996, 2996, 2996,
-     2996, 2996, 2996, 2996, 2996, 2996, 2997, 2997, 2997, 2997,
-        0, 2997,    0, 2997, 2998, 2998, 2998, 2998,    0,    0,
-     2998, 2998, 2999, 2999, 2999, 2999,    0,    0, 2999, 2999,
-     3000, 3000, 3000,    0,    0,    0, 3000, 3001, 3001, 3001,
-     3001,    0,    0, 3001, 3001, 3002, 3002, 3002,    0,    0,
-        0, 3002, 3003, 3003, 3003, 3003,    0,    0, 3003, 3003,
-
-     3004, 3004, 3004, 3004,    0, 3004,    0, 3004, 3005, 3005,
-     3005, 3005,    0,    0, 3005, 3005, 3006, 3006, 3006, 3006,
-        0, 3006,    0, 3006, 3007, 3007, 3007, 3007,    0, 3007,
-        0, 3007, 3008, 3008, 3008, 3008,    0,    0, 3008, 3008,
-     3009, 3009, 3009, 3009,    0,    0, 3009, 3009, 3010, 3010,
-     3010, 3010,    0,    0, 3010, 3010, 3011, 3011, 3011, 3011,
-        0,    0, 3011, 3011, 3012, 3012, 3012,    0,    0,    0,
-     3012, 3013, 3013, 3013,    0,    0,    0, 3013, 3014, 3014,
-     3014, 3014,    0,    0, 3014, 3014, 3015, 3015, 3015,    0,
-        0,    0, 3015, 3016, 3016, 3016,    0,    0,    0, 3016,
-
-     3017, 3017, 3017, 3017,    0,    0, 3017, 3017, 3018, 3018,
-     3018,    0,    0,    0, 3018, 3019, 3019, 3019,    0,    0,
-        0, 3019, 3020, 3020, 3020, 3020,    0,    0, 3020, 3020,
-     3021, 3021, 3021,    0,    0,    0, 3021, 3022, 3022, 3022,
-     3022,    0,    0, 3022, 3022, 3023, 3023, 3023,    0,    0,
-        0, 3023, 3024, 3024, 3024, 3024,    0,    0, 3024, 3024,
-     3025, 3025, 3025, 3025,    0,    0, 3025, 3025, 3026, 3026,
+     2969,    0,    0,    0, 2969, 2970, 2970, 2970, 2970,    0,
+        0, 2970, 2970, 2971, 2971, 2971,    0,    0,    0, 2971,
+     2972, 2972, 2972,    0,    0,    0, 2972, 2973, 2973, 2973,
+     2973,    0,    0, 2973, 2973, 2974, 2974, 2974, 2974,    0,
+     2974,    0, 2974, 2975, 2975, 2975, 2975,    0,    0, 2975,
+
+     2975, 2976, 2976, 2976, 2976,    0,    0, 2976, 2976, 2977,
+     2977, 2977, 2977,    0, 2977,    0, 2977, 2978, 2978, 2978,
+     2978,    0,    0, 2978, 2978, 2979, 2979, 2979,    0,    0,
+        0, 2979, 2980, 2980, 2980, 2980,    0,    0, 2980, 2980,
+     2981, 2981, 2981,    0,    0,    0, 2981, 2982, 2982, 2982,
+     2982,    0,    0, 2982, 2982, 2983, 2983, 2983,    0,    0,
+        0, 2983, 2984, 2984, 2984, 2984,    0,    0, 2984, 2984,
+     2985, 2985, 2985,    0,    0,    0, 2985, 2986, 2986, 2986,
+     2986,    0,    0, 2986, 2986, 2987, 2987, 2987,    0,    0,
+        0, 2987, 2988, 2988, 2988, 2988,    0,    0, 2988, 2988,
+
+     2989, 2989, 2989,    0,    0,    0, 2989, 2990, 2990, 2990,
+     2990,    0,    0, 2990, 2990, 2991, 2991, 2991, 2991,    0,
+     2991,    0, 2991, 2992, 2992, 2992, 2992,    0,    0, 2992,
+     2992, 2993, 2993, 2993,    0,    0,    0, 2993, 2994, 2994,
+     2994, 2994,    0,    0, 2994, 2994, 2995, 2995, 2995, 2995,
+        0, 2995,    0, 2995, 2996, 2996, 2996, 2996,    0,    0,
+     2996, 2996, 2997, 2997, 2997,    0,    0,    0, 2997, 2998,
+     2998, 2998, 2998,    0,    0, 2998, 2998, 2999, 2999, 2999,
+     2999,    0,    0, 2999, 2999, 3000, 3000, 3000, 3000,    0,
+        0, 3000, 3000, 3001, 3001, 3001, 3001,    0,    0, 3001,
+
+     3001, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002,
+     3003, 3003, 3003, 3003, 3003, 3003, 3003, 3003, 3003, 3004,
+     3004, 3004, 3004,    0, 3004,    0, 3004, 3005, 3005, 3005,
+     3005,    0,    0, 3005, 3005, 3006, 3006, 3006, 3006,    0,
+        0, 3006, 3006, 3007, 3007, 3007,    0,    0,    0, 3007,
+     3008, 3008, 3008, 3008,    0,    0, 3008, 3008, 3009, 3009,
+     3009,    0,    0,    0, 3009, 3010, 3010, 3010, 3010,    0,
+        0, 3010, 3010, 3011, 3011, 3011, 3011,    0, 3011,    0,
+     3011, 3012, 3012, 3012, 3012,    0,    0, 3012, 3012, 3013,
+     3013, 3013, 3013,    0, 3013,    0, 3013, 3014, 3014, 3014,
+
+     3014,    0, 3014,    0, 3014, 3015, 3015, 3015, 3015,    0,
+        0, 3015, 3015, 3016, 3016, 3016, 3016,    0,    0, 3016,
+     3016, 3017, 3017, 3017, 3017,    0,    0, 3017, 3017, 3018,
+     3018, 3018, 3018,    0,    0, 3018, 3018, 3019, 3019, 3019,
+        0,    0,    0, 3019, 3020, 3020, 3020,    0,    0,    0,
+     3020, 3021, 3021, 3021, 3021,    0,    0, 3021, 3021, 3022,
+     3022, 3022,    0,    0,    0, 3022, 3023, 3023, 3023,    0,
+        0,    0, 3023, 3024, 3024, 3024, 3024,    0,    0, 3024,
+     3024, 3025, 3025, 3025,    0,    0,    0, 3025, 3026, 3026,
      3026,    0,    0,    0, 3026, 3027, 3027, 3027, 3027,    0,
-        0, 3027, 3027, 3028, 3028, 3028, 3028,    0,    0, 3028,
-     3028, 3029, 3029, 3029, 3029,    0,    0, 3029, 3029, 3030,
-
-     3030, 3030, 3030, 3030, 3030, 3030, 3030, 3030, 3031, 3031,
-     3031, 3031, 3031, 3031, 3031, 3031, 3031, 3032, 3032, 3032,
-     3032,    0,    0, 3032, 3032, 3033, 3033, 3033, 3033,    0,
-        0, 3033, 3033, 3034, 3034, 3034,    0,    0,    0, 3034,
-     3035, 3035, 3035,    0,    0,    0, 3035, 3036, 3036, 3036,
-     3036,    0,    0, 3036, 3036, 3037, 3037, 3037, 3037,    0,
-        0, 3037, 3037, 3038, 3038, 3038, 3038,    0,    0, 3038,
-     3038, 3039, 3039, 3039, 3039,    0,    0, 3039, 3039, 3040,
-     3040, 3040, 3040,    0,    0, 3040, 3040, 3041, 3041, 3041,
-        0,    0,    0, 3041, 3042, 3042, 3042,    0,    0,    0,
-
-     3042, 3043, 3043, 3043, 3043,    0,    0, 3043, 3043, 3044,
-     3044, 3044,    0,    0,    0, 3044, 3045, 3045, 3045,    0,
-        0,    0, 3045, 3046, 3046, 3046, 3046,    0,    0, 3046,
-     3046, 3047, 3047, 3047,    0,    0,    0, 3047, 3048, 3048,
-     3048,    0,    0,    0, 3048, 3049, 3049, 3049,    0,    0,
-        0, 3049, 3050, 3050, 3050, 3050,    0,    0, 3050, 3050,
-     3051, 3051, 3051,    0,    0,    0, 3051, 3052, 3052, 3052,
-     3052,    0,    0, 3052, 3052, 3053, 3053, 3053, 3053,    0,
-        0, 3053, 3053, 3054, 3054, 3054, 3054,    0, 3054,    0,
-     3054, 3055, 3055, 3055, 3055,    0,    0, 3055, 3055, 3056,
-
-     3056, 3056, 3056,    0,    0, 3056, 3056, 3057, 3057, 3057,
-     3057,    0,    0, 3057, 3057, 3058, 3058, 3058, 3058, 3058,
-     3058, 3058, 3058, 3058, 3059, 3059, 3059, 3059, 3059, 3059,
-     3059, 3059, 3059, 3060, 3060, 3060, 3060,    0,    0, 3060,
-     3060, 3061, 3061, 3061, 3061,    0,    0, 3061, 3061, 3062,
-     3062, 3062,    0,    0,    0, 3062, 3063, 3063, 3063, 3063,
-        0, 3063,    0, 3063, 3064, 3064, 3064, 3064, 3064, 3064,
-     3064, 3064, 3064, 3065, 3065, 3065, 3065, 3065, 3065, 3065,
-     3065, 3065, 3066, 3066, 3066, 3066, 3066, 3066, 3066, 3066,
-     3066, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067, 3067,
-
-     3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3068, 3069,
-     3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694, 2694,
-     2694
 
+        0, 3027, 3027, 3028, 3028, 3028,    0,    0,    0, 3028,
+     3029, 3029, 3029, 3029,    0,    0, 3029, 3029, 3030, 3030,
+     3030,    0,    0,    0, 3030, 3031, 3031, 3031, 3031,    0,
+        0, 3031, 3031, 3032, 3032, 3032, 3032,    0,    0, 3032,
+     3032, 3033, 3033, 3033,    0,    0,    0, 3033, 3034, 3034,
+     3034, 3034,    0,    0, 3034, 3034, 3035, 3035, 3035, 3035,
+        0,    0, 3035, 3035, 3036, 3036, 3036, 3036,    0,    0,
+     3036, 3036, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037,
+     3037, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038,
+     3039, 3039, 3039, 3039,    0,    0, 3039, 3039, 3040, 3040,
+
+     3040, 3040,    0,    0, 3040, 3040, 3041, 3041, 3041,    0,
+        0,    0, 3041, 3042, 3042, 3042,    0,    0,    0, 3042,
+     3043, 3043, 3043, 3043,    0,    0, 3043, 3043, 3044, 3044,
+     3044, 3044,    0,    0, 3044, 3044, 3045, 3045, 3045, 3045,
+        0,    0, 3045, 3045, 3046, 3046, 3046, 3046,    0,    0,
+     3046, 3046, 3047, 3047, 3047, 3047,    0,    0, 3047, 3047,
+     3048, 3048, 3048,    0,    0,    0, 3048, 3049, 3049, 3049,
+        0,    0,    0, 3049, 3050, 3050, 3050, 3050,    0,    0,
+     3050, 3050, 3051, 3051, 3051,    0,    0,    0, 3051, 3052,
+     3052, 3052,    0,    0,    0, 3052, 3053, 3053, 3053, 3053,
+
+        0,    0, 3053, 3053, 3054, 3054, 3054,    0,    0,    0,
+     3054, 3055, 3055, 3055,    0,    0,    0, 3055, 3056, 3056,
+     3056,    0,    0,    0, 3056, 3057, 3057, 3057, 3057,    0,
+        0, 3057, 3057, 3058, 3058, 3058,    0,    0,    0, 3058,
+     3059, 3059, 3059, 3059,    0,    0, 3059, 3059, 3060, 3060,
+     3060, 3060,    0,    0, 3060, 3060, 3061, 3061, 3061, 3061,
+        0, 3061,    0, 3061, 3062, 3062, 3062, 3062,    0,    0,
+     3062, 3062, 3063, 3063, 3063, 3063,    0,    0, 3063, 3063,
+     3064, 3064, 3064, 3064,    0,    0, 3064, 3064, 3065, 3065,
+     3065, 3065, 3065, 3065, 3065, 3065, 3065, 3066, 3066, 3066,
+
+     3066, 3066, 3066, 3066, 3066, 3066, 3067, 3067, 3067, 3067,
+        0,    0, 3067, 3067, 3068, 3068, 3068, 3068,    0,    0,
+     3068, 3068, 3069, 3069, 3069,    0,    0,    0, 3069, 3070,
+     3070, 3070, 3070,    0, 3070,    0, 3070, 3071, 3071, 3071,
+     3071, 3071, 3071, 3071, 3071, 3071, 3072, 3072, 3072, 3072,
+     3072, 3072, 3072, 3072, 3072, 3073, 3073, 3073, 3073, 3073,
+     3073, 3073, 3073, 3073, 3074, 3074, 3074, 3074, 3074, 3074,
+     3074, 3074, 3074, 3075, 3075, 3075, 3075, 3075, 3075, 3075,
+     3075, 3075, 3076, 3076, 3076, 3076, 3076, 3076, 3076, 3076,
+     3076, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2701,
+     2701, 2701, 2701, 2701
     } ;
 
 /* Table of booleans, true if rule could match eol. */
@@ -4138,94 +4155,97 @@ const char* *surfxml_statenames=NULL;
 #define S_surfxml_platform_8 19
 #define E_surfxml_platform 20
 #define AL_surfxml_include 21
-#define E_surfxml_include 22
-#define AL_surfxml_trace 23
-#define IN_trace 24
-#define AL_surfxml_random 25
-#define S_surfxml_random 26
-#define S_surfxml_random_1 27
-#define S_surfxml_random_2 28
-#define E_surfxml_random 29
-#define AL_surfxml_trace_connect 30
-#define E_surfxml_trace_connect 31
-#define AL_surfxml_AS 32
-#define S_surfxml_AS 33
-#define S_surfxml_AS_1 34
-#define S_surfxml_AS_2 35
-#define S_surfxml_AS_3 36
-#define S_surfxml_AS_4 37
-#define S_surfxml_AS_5 38
-#define S_surfxml_AS_6 39
-#define S_surfxml_AS_7 40
-#define S_surfxml_AS_8 41
-#define S_surfxml_AS_9 42
-#define S_surfxml_AS_10 43
-#define S_surfxml_AS_11 44
-#define S_surfxml_AS_12 45
-#define S_surfxml_AS_13 46
-#define E_surfxml_AS 47
-#define AL_surfxml_storage_type 48
-#define S_surfxml_storage_type 49
-#define S_surfxml_storage_type_1 50
-#define S_surfxml_storage_type_2 51
-#define E_surfxml_storage_type 52
-#define AL_surfxml_storage 53
-#define S_surfxml_storage 54
-#define S_surfxml_storage_1 55
-#define S_surfxml_storage_2 56
-#define E_surfxml_storage 57
-#define AL_surfxml_mount 58
-#define E_surfxml_mount 59
-#define AL_surfxml_mstorage 60
-#define E_surfxml_mstorage 61
-#define AL_surfxml_host 62
-#define S_surfxml_host 63
-#define S_surfxml_host_1 64
-#define S_surfxml_host_2 65
-#define E_surfxml_host 66
-#define AL_surfxml_cluster 67
-#define E_surfxml_cluster 68
-#define AL_surfxml_peer 69
-#define E_surfxml_peer 70
-#define AL_surfxml_router 71
-#define E_surfxml_router 72
-#define AL_surfxml_link 73
-#define S_surfxml_link 74
-#define S_surfxml_link_1 75
-#define S_surfxml_link_2 76
-#define E_surfxml_link 77
-#define AL_surfxml_route 78
-#define S_surfxml_route 79
-#define S_surfxml_route_1 80
-#define S_surfxml_route_2 81
-#define E_surfxml_route 82
-#define AL_surfxml_ASroute 83
-#define S_surfxml_ASroute 84
-#define S_surfxml_ASroute_1 85
-#define S_surfxml_ASroute_2 86
-#define E_surfxml_ASroute 87
-#define AL_surfxml_link_ctn 88
-#define E_surfxml_link_ctn 89
-#define AL_surfxml_bypassRoute 90
-#define S_surfxml_bypassRoute 91
-#define S_surfxml_bypassRoute_1 92
-#define S_surfxml_bypassRoute_2 93
-#define E_surfxml_bypassRoute 94
-#define AL_surfxml_process 95
-#define S_surfxml_process 96
-#define S_surfxml_process_1 97
-#define S_surfxml_process_2 98
-#define E_surfxml_process 99
-#define AL_surfxml_argument 100
-#define E_surfxml_argument 101
-#define AL_surfxml_config 102
-#define S_surfxml_config 103
-#define S_surfxml_config_1 104
-#define S_surfxml_config_2 105
-#define E_surfxml_config 106
-#define AL_surfxml_prop 107
-#define E_surfxml_prop 108
-#define IMPOSSIBLE 109
+#define S_surfxml_include 22
+#define S_surfxml_include_1 23
+#define S_surfxml_include_2 24
+#define E_surfxml_include 25
+#define AL_surfxml_trace 26
+#define IN_trace 27
+#define AL_surfxml_random 28
+#define S_surfxml_random 29
+#define S_surfxml_random_1 30
+#define S_surfxml_random_2 31
+#define E_surfxml_random 32
+#define AL_surfxml_trace_connect 33
+#define E_surfxml_trace_connect 34
+#define AL_surfxml_AS 35
+#define S_surfxml_AS 36
+#define S_surfxml_AS_1 37
+#define S_surfxml_AS_2 38
+#define S_surfxml_AS_3 39
+#define S_surfxml_AS_4 40
+#define S_surfxml_AS_5 41
+#define S_surfxml_AS_6 42
+#define S_surfxml_AS_7 43
+#define S_surfxml_AS_8 44
+#define S_surfxml_AS_9 45
+#define S_surfxml_AS_10 46
+#define S_surfxml_AS_11 47
+#define S_surfxml_AS_12 48
+#define S_surfxml_AS_13 49
+#define E_surfxml_AS 50
+#define AL_surfxml_storage_type 51
+#define S_surfxml_storage_type 52
+#define S_surfxml_storage_type_1 53
+#define S_surfxml_storage_type_2 54
+#define E_surfxml_storage_type 55
+#define AL_surfxml_storage 56
+#define S_surfxml_storage 57
+#define S_surfxml_storage_1 58
+#define S_surfxml_storage_2 59
+#define E_surfxml_storage 60
+#define AL_surfxml_mount 61
+#define E_surfxml_mount 62
+#define AL_surfxml_mstorage 63
+#define E_surfxml_mstorage 64
+#define AL_surfxml_host 65
+#define S_surfxml_host 66
+#define S_surfxml_host_1 67
+#define S_surfxml_host_2 68
+#define E_surfxml_host 69
+#define AL_surfxml_cluster 70
+#define E_surfxml_cluster 71
+#define AL_surfxml_peer 72
+#define E_surfxml_peer 73
+#define AL_surfxml_router 74
+#define E_surfxml_router 75
+#define AL_surfxml_link 76
+#define S_surfxml_link 77
+#define S_surfxml_link_1 78
+#define S_surfxml_link_2 79
+#define E_surfxml_link 80
+#define AL_surfxml_route 81
+#define S_surfxml_route 82
+#define S_surfxml_route_1 83
+#define S_surfxml_route_2 84
+#define E_surfxml_route 85
+#define AL_surfxml_ASroute 86
+#define S_surfxml_ASroute 87
+#define S_surfxml_ASroute_1 88
+#define S_surfxml_ASroute_2 89
+#define E_surfxml_ASroute 90
+#define AL_surfxml_link_ctn 91
+#define E_surfxml_link_ctn 92
+#define AL_surfxml_bypassRoute 93
+#define S_surfxml_bypassRoute 94
+#define S_surfxml_bypassRoute_1 95
+#define S_surfxml_bypassRoute_2 96
+#define E_surfxml_bypassRoute 97
+#define AL_surfxml_process 98
+#define S_surfxml_process 99
+#define S_surfxml_process_1 100
+#define S_surfxml_process_2 101
+#define E_surfxml_process 102
+#define AL_surfxml_argument 103
+#define E_surfxml_argument 104
+#define AL_surfxml_config 105
+#define S_surfxml_config 106
+#define S_surfxml_config_1 107
+#define S_surfxml_config_2 108
+#define E_surfxml_config 109
+#define AL_surfxml_prop 110
+#define E_surfxml_prop 111
+#define IMPOSSIBLE 112
 
 #ifndef YY_NO_UNISTD_H
 /* Special case for "unistd.h", since it is non-ANSI. We include it way
@@ -4473,6 +4493,9 @@ YY_DECL
   surfxml_statenames[S_surfxml_platform_8] = "platform";
   surfxml_statenames[E_surfxml_platform] = "platform";
   surfxml_statenames[AL_surfxml_include] = NULL;
+  surfxml_statenames[S_surfxml_include] = "include";
+  surfxml_statenames[S_surfxml_include_1] = "include";
+  surfxml_statenames[S_surfxml_include_2] = "include";
   surfxml_statenames[E_surfxml_include] = "include";
   surfxml_statenames[AL_surfxml_trace] = NULL;
   surfxml_statenames[IN_trace] = "trace";
@@ -4615,13 +4638,13 @@ yy_match:
                        while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
                                {
                                yy_current_state = (int) yy_def[yy_current_state];
-                               if ( yy_current_state >= 2695 )
+                               if ( yy_current_state >= 2702 )
                                        yy_c = yy_meta[(unsigned int) yy_c];
                                }
                        yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
                        ++yy_cp;
                        }
-               while ( yy_base[yy_current_state] != 9619 );
+               while ( yy_base[yy_current_state] != 9692 );
 
 yy_find_action:
                yy_act = yy_accept[yy_current_state];
@@ -4845,7 +4868,7 @@ case 31:
 YY_RULE_SETUP
 {
   if (!AX_surfxml_include_file) FAIL("Required attribute `file' not set for `include' element.");
-  LEAVE; STag_surfxml_include();surfxml_pcdata_ix = 0; ENTER(E_surfxml_include);
+  LEAVE; STag_surfxml_include();surfxml_pcdata_ix = 0; ENTER(S_surfxml_include);
  }
        YY_BREAK
 case 32:
@@ -4856,8 +4879,8 @@ YY_RULE_SETUP
   switch (YY_START) {
    case S_surfxml_AS_11: case S_surfxml_AS_10: case S_surfxml_AS: SET(S_surfxml_AS_11); break;
    case S_surfxml_AS_2: case S_surfxml_AS_3: SET(S_surfxml_AS_3); break;
-   case S_surfxml_platform_5: SET(S_surfxml_platform_6); break;
-   case S_surfxml_platform_1: case S_surfxml_platform: case S_surfxml_platform_6: case S_surfxml_platform_8: case S_surfxml_platform_7: case S_surfxml_platform_3: case S_surfxml_platform_4: SET(S_surfxml_platform_8); break;
+   case S_surfxml_platform_5: case S_surfxml_platform_1: case S_surfxml_platform: case S_surfxml_platform_6: case S_surfxml_platform_3: SET(S_surfxml_platform_6); break;
+   case S_surfxml_include: case S_surfxml_include_2: case S_surfxml_include_1: SET(S_surfxml_include_2); break;
   }
  }
        YY_BREAK
@@ -4883,8 +4906,8 @@ YY_RULE_SETUP
   switch (YY_START) {
    case S_surfxml_AS_11: case S_surfxml_AS_10: case S_surfxml_AS: SET(S_surfxml_AS_11); break;
    case S_surfxml_AS_2: case S_surfxml_AS_3: SET(S_surfxml_AS_3); break;
-   case S_surfxml_platform_5: SET(S_surfxml_platform_6); break;
-   case S_surfxml_platform_1: case S_surfxml_platform: case S_surfxml_platform_6: case S_surfxml_platform_8: case S_surfxml_platform_7: case S_surfxml_platform_3: case S_surfxml_platform_4: SET(S_surfxml_platform_8); break;
+   case S_surfxml_platform_5: case S_surfxml_platform_1: case S_surfxml_platform: case S_surfxml_platform_6: case S_surfxml_platform_3: SET(S_surfxml_platform_6); break;
+   case S_surfxml_include: case S_surfxml_include_2: case S_surfxml_include_1: SET(S_surfxml_include_2); break;
   }
  }
        YY_BREAK
@@ -4898,6 +4921,8 @@ YY_RULE_SETUP
 FAIL("Unexpected character `%c': `</include>' expected.",surf_parse_text[0]);
        YY_BREAK
 case YY_STATE_EOF(E_surfxml_include):
+case YY_STATE_EOF(S_surfxml_include):
+case YY_STATE_EOF(S_surfxml_include_2):
 if(!ETag_surfxml_include_state()) FAIL("Premature EOF: `</include>' expected.");
        YY_BREAK
 
@@ -4971,6 +4996,7 @@ YY_RULE_SETUP
    case S_surfxml_AS_1: case S_surfxml_AS_5: case S_surfxml_AS_3: SET(S_surfxml_AS_6); break;
    case S_surfxml_platform_6: case S_surfxml_platform_5: case S_surfxml_platform_1: case S_surfxml_platform: case S_surfxml_platform_3: SET(S_surfxml_platform_6); break;
    case S_surfxml_AS_12: case S_surfxml_AS_9: case S_surfxml_AS_13: SET(S_surfxml_AS_13); break;
+   case S_surfxml_include: case S_surfxml_include_2: case S_surfxml_include_1: SET(S_surfxml_include_2); break;
   }
  }
        YY_BREAK
@@ -5002,6 +5028,7 @@ YY_RULE_SETUP
    case S_surfxml_AS_1: case S_surfxml_AS_5: case S_surfxml_AS_3: SET(S_surfxml_AS_6); break;
    case S_surfxml_platform_6: case S_surfxml_platform_5: case S_surfxml_platform_1: case S_surfxml_platform: case S_surfxml_platform_3: SET(S_surfxml_platform_6); break;
    case S_surfxml_AS_12: case S_surfxml_AS_9: case S_surfxml_AS_13: SET(S_surfxml_AS_13); break;
+   case S_surfxml_include: case S_surfxml_include_2: case S_surfxml_include_1: SET(S_surfxml_include_2); break;
   }
  }
        YY_BREAK
@@ -5300,6 +5327,7 @@ YY_RULE_SETUP
    case S_surfxml_AS_1: case S_surfxml_AS_5: case S_surfxml_AS_3: SET(S_surfxml_AS_6); break;
    case S_surfxml_platform_6: case S_surfxml_platform_5: case S_surfxml_platform_1: case S_surfxml_platform: case S_surfxml_platform_3: SET(S_surfxml_platform_6); break;
    case S_surfxml_AS_12: case S_surfxml_AS_9: case S_surfxml_AS_13: SET(S_surfxml_AS_13); break;
+   case S_surfxml_include: case S_surfxml_include_2: case S_surfxml_include_1: SET(S_surfxml_include_2); break;
   }
  }
        YY_BREAK
@@ -5329,6 +5357,7 @@ YY_RULE_SETUP
    case S_surfxml_AS_1: case S_surfxml_AS_5: case S_surfxml_AS_3: SET(S_surfxml_AS_6); break;
    case S_surfxml_platform_6: case S_surfxml_platform_5: case S_surfxml_platform_1: case S_surfxml_platform: case S_surfxml_platform_3: SET(S_surfxml_platform_6); break;
    case S_surfxml_AS_12: case S_surfxml_AS_9: case S_surfxml_AS_13: SET(S_surfxml_AS_13); break;
+   case S_surfxml_include: case S_surfxml_include_2: case S_surfxml_include_1: SET(S_surfxml_include_2); break;
   }
  }
        YY_BREAK
@@ -5399,6 +5428,7 @@ YY_RULE_SETUP
   switch (YY_START) {
    case S_surfxml_AS_2: case S_surfxml_AS: case S_surfxml_AS_3: SET(S_surfxml_AS_3); break;
    case S_surfxml_platform_6: case S_surfxml_platform_5: case S_surfxml_platform_1: case S_surfxml_platform: case S_surfxml_platform_3: SET(S_surfxml_platform_6); break;
+   case S_surfxml_include: case S_surfxml_include_2: case S_surfxml_include_1: SET(S_surfxml_include_2); break;
   }
  }
        YY_BREAK
@@ -5424,6 +5454,7 @@ YY_RULE_SETUP
   switch (YY_START) {
    case S_surfxml_AS_2: case S_surfxml_AS: case S_surfxml_AS_3: SET(S_surfxml_AS_3); break;
    case S_surfxml_platform_6: case S_surfxml_platform_5: case S_surfxml_platform_1: case S_surfxml_platform: case S_surfxml_platform_3: SET(S_surfxml_platform_6); break;
+   case S_surfxml_include: case S_surfxml_include_2: case S_surfxml_include_1: SET(S_surfxml_include_2); break;
   }
  }
        YY_BREAK
@@ -6247,6 +6278,7 @@ YY_RULE_SETUP
   switch (YY_START) {
    case S_surfxml_AS_2: case S_surfxml_AS: case S_surfxml_AS_3: SET(S_surfxml_AS_3); break;
    case S_surfxml_platform_6: case S_surfxml_platform_5: case S_surfxml_platform_1: case S_surfxml_platform: case S_surfxml_platform_3: SET(S_surfxml_platform_6); break;
+   case S_surfxml_include: case S_surfxml_include_2: case S_surfxml_include_1: SET(S_surfxml_include_2); break;
   }
  }
        YY_BREAK
@@ -6272,6 +6304,7 @@ YY_RULE_SETUP
   switch (YY_START) {
    case S_surfxml_AS_2: case S_surfxml_AS: case S_surfxml_AS_3: SET(S_surfxml_AS_3); break;
    case S_surfxml_platform_6: case S_surfxml_platform_5: case S_surfxml_platform_1: case S_surfxml_platform: case S_surfxml_platform_3: SET(S_surfxml_platform_6); break;
+   case S_surfxml_include: case S_surfxml_include_2: case S_surfxml_include_1: SET(S_surfxml_include_2); break;
   }
  }
        YY_BREAK
@@ -6420,6 +6453,7 @@ YY_RULE_SETUP
   switch (YY_START) {
    case S_surfxml_AS_2: case S_surfxml_AS: case S_surfxml_AS_3: SET(S_surfxml_AS_3); break;
    case S_surfxml_platform_6: case S_surfxml_platform_5: case S_surfxml_platform_1: case S_surfxml_platform: case S_surfxml_platform_3: SET(S_surfxml_platform_6); break;
+   case S_surfxml_include: case S_surfxml_include_2: case S_surfxml_include_1: SET(S_surfxml_include_2); break;
   }
  }
        YY_BREAK
@@ -6445,6 +6479,7 @@ YY_RULE_SETUP
   switch (YY_START) {
    case S_surfxml_AS_2: case S_surfxml_AS: case S_surfxml_AS_3: SET(S_surfxml_AS_3); break;
    case S_surfxml_platform_6: case S_surfxml_platform_5: case S_surfxml_platform_1: case S_surfxml_platform: case S_surfxml_platform_3: SET(S_surfxml_platform_6); break;
+   case S_surfxml_include: case S_surfxml_include_2: case S_surfxml_include_1: SET(S_surfxml_include_2); break;
   }
  }
        YY_BREAK
@@ -7721,6 +7756,7 @@ case YY_STATE_EOF(ROOT_surfxml_platform):
 case YY_STATE_EOF(S_surfxml_platform_2):
 case YY_STATE_EOF(S_surfxml_platform_5):
 case YY_STATE_EOF(S_surfxml_platform_7):
+case YY_STATE_EOF(S_surfxml_include_1):
 case YY_STATE_EOF(S_surfxml_random_1):
 case YY_STATE_EOF(S_surfxml_AS_2):
 case YY_STATE_EOF(S_surfxml_AS_5):
@@ -8027,7 +8063,7 @@ static int yy_get_next_buffer (void)
                while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
                        {
                        yy_current_state = (int) yy_def[yy_current_state];
-                       if ( yy_current_state >= 2695 )
+                       if ( yy_current_state >= 2702 )
                                yy_c = yy_meta[(unsigned int) yy_c];
                        }
                yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
@@ -8055,11 +8091,11 @@ static int yy_get_next_buffer (void)
        while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
                {
                yy_current_state = (int) yy_def[yy_current_state];
-               if ( yy_current_state >= 2695 )
+               if ( yy_current_state >= 2702 )
                        yy_c = yy_meta[(unsigned int) yy_c];
                }
        yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
-       yy_is_jam = (yy_current_state == 2694);
+       yy_is_jam = (yy_current_state == 2701);
 
        return yy_is_jam ? 0 : yy_current_state;
 }
index 3386132..49eb817 100644 (file)
@@ -12,6 +12,7 @@
 #include "surf/surf_resource.h"
 #include "xbt/xbt_os_thread.h"
 
+XBT_LOG_NEW_CATEGORY(surf, "All SURF categories");
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_kernel, surf,
                                 "Logging specific to SURF (kernel)");
 
@@ -288,23 +289,6 @@ double generic_maxmin_share_resources(xbt_swag_t running_actions,
   return min;
 }
 
-XBT_LOG_EXTERNAL_CATEGORY(surf_cpu);
-XBT_LOG_EXTERNAL_CATEGORY(surf_kernel);
-XBT_LOG_EXTERNAL_CATEGORY(surf_lagrange);
-XBT_LOG_EXTERNAL_CATEGORY(surf_lagrange_dichotomy);
-XBT_LOG_EXTERNAL_CATEGORY(surf_maxmin);
-XBT_LOG_EXTERNAL_CATEGORY(surf_network);
-XBT_LOG_EXTERNAL_CATEGORY(surf_trace);
-XBT_LOG_EXTERNAL_CATEGORY(surf_parse);
-XBT_LOG_EXTERNAL_CATEGORY(surf_timer);
-XBT_LOG_EXTERNAL_CATEGORY(surf_workstation);
-XBT_LOG_EXTERNAL_CATEGORY(surf_config);
-XBT_LOG_EXTERNAL_CATEGORY(surf_route);
-
-#ifdef HAVE_GTNETS
-XBT_LOG_EXTERNAL_CATEGORY(surf_network_gtnets);
-#endif
-
 static XBT_INLINE void routing_asr_host_free(void *p)
 {
   network_element_t elm = p;
@@ -334,24 +318,6 @@ void surf_init(int *argc, char **argv)
   SURF_LINK_LEVEL = xbt_lib_add_level(link_lib,surf_resource_free);
   SURF_STORAGE_LEVEL = xbt_lib_add_level(storage_lib,surf_resource_free);
 
-  /* Connect our log channels: that must be done manually under windows */
-  XBT_LOG_CONNECT(surf_cpu, surf);
-  XBT_LOG_CONNECT(surf_kernel, surf);
-  XBT_LOG_CONNECT(surf_lagrange, surf);
-  XBT_LOG_CONNECT(surf_lagrange_dichotomy, surf_lagrange);
-  XBT_LOG_CONNECT(surf_maxmin, surf);
-  XBT_LOG_CONNECT(surf_network, surf);
-  XBT_LOG_CONNECT(surf_trace, surf);
-  XBT_LOG_CONNECT(surf_parse, surf);
-  XBT_LOG_CONNECT(surf_timer, surf);
-  XBT_LOG_CONNECT(surf_workstation, surf);
-  XBT_LOG_CONNECT(surf_config, surf);
-  XBT_LOG_CONNECT(surf_route, surf);
-
-#ifdef HAVE_GTNETS
-  XBT_LOG_CONNECT(surf_network_gtnets, surf);
-#endif
-
   xbt_init(argc, argv);
   if (!model_list)
     model_list = xbt_dynar_new(sizeof(surf_model_private_t), NULL);
index f73f501..7de2320 100644 (file)
@@ -7,6 +7,7 @@
 /* surf_config: configuration infrastructure for the simulation world       */
 
 #include "xbt/config.h"
+#include "xbt/log.h"
 #include "xbt/str.h"
 #include "surf/surf_private.h"
 #include "surf/surf_routing.h" /* COORD_HOST_LEVEL and COORD_ASR_LEVEL */
@@ -17,105 +18,66 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_config, surf,
 
 xbt_cfg_t _surf_cfg_set = NULL;
 
-static void LOG_help(void)
-{
-  printf("Description of the logging output:\n"
-"\n   Threshold configuration: --log=CATEGORY_NAME.thres:PRIORITY_LEVEL\n"
-"      CATEGORY_NAME: defined in code with function 'XBT_LOG_NEW_CATEGORY'\n"
-"      PRIORITY_LEVEL: the level to print (trace,debug,verbose,info,warning,error,critical)\n"
-"         -> trace: enter and return of some functions\n"
-"         -> debug: crufty output\n"
-"         -> verbose: verbose output for the user wanting more\n"
-"         -> info: output about the regular functionning\n"
-"         -> warning: minor issue encountered\n"
-"         -> error: issue encountered\n"
-"         -> critical: major issue encountered\n"
-"\n   Format configuration: --log=CATEGORY_NAME.fmt:OPTIONS\n"
-"     OPTIONS may be:\n"
-"         -> %%%%: the %% char\n"
-"         -> %%n: platform-dependent line separator (LOG4J compatible)\n"
-"         -> %%e: plain old space (SimGrid extension)\n"
-"\n"
-"         -> %%m: user-provided message\n"
-"\n"
-"         -> %%c: Category name (LOG4J compatible)\n"
-"         -> %%p: Priority name (LOG4J compatible)\n"
-"\n"
-"         -> %%h: Hostname (SimGrid extension)\n"
-"         -> %%P: Process name (SimGrid extension)\n"
-"         -> %%t: Thread \"name\" (LOG4J compatible -- actually the address of the thread in memory)\n"
-"         -> %%i: Process PID (SimGrid extension -- this is a 'i' as in 'i'dea)\n"
-"\n"
-"         -> %%F: file name where the log event was raised (LOG4J compatible)\n"
-"         -> %%l: location where the log event was raised (LOG4J compatible, like '%%F:%%L' -- this is a l as in 'l'etter)\n"
-"         -> %%L: line number where the log event was raised (LOG4J compatible)\n"
-"         -> %%M: function name (LOG4J compatible -- called method name here of course).\n"
-"                 Defined only when using gcc because there is no __FUNCTION__ elsewhere.\n"
-"\n"
-"         -> %%b: full backtrace (Called %%throwable in LOG4J). Defined only under windows or when using the GNU libc because\n"
-"                 backtrace() is not defined elsewhere, and we only have a fallback for windows boxes, not mac ones for example.\n"
-"         -> %%B: short backtrace (only the first line of the %%b). Called %%throwable{short} in LOG4J; defined where %%b is.\n"
-"\n"
-"         -> %%d: date (UNIX-like epoch)\n"
-"         -> %%r: application age (time elapsed since the beginning of the application)\n");
-}
-
 /* Parse the command line, looking for options */
 static void surf_config_cmd_line(int *argc, char **argv)
 {
+  int shall_exit = 0;
   int i, j;
   char *opt;
 
-  for (i = 1; i < *argc; i++) {
-    int remove_it = 0;
+  for (j = i = 1; i < *argc; i++) {
     if (!strncmp(argv[i], "--cfg=", strlen("--cfg="))) {
       opt = strchr(argv[i], '=');
       opt++;
 
       xbt_cfg_set_parse(_surf_cfg_set, opt);
       XBT_DEBUG("Did apply '%s' as config setting", opt);
-      remove_it = 1;
-    } else if (!strncmp(argv[i], "--cfg-help", strlen("--cfg-help") + 1) ||
-               !strncmp(argv[i], "--help", strlen("--help") + 1)) {
+    } else if (!strcmp(argv[i], "--cfg-help") || !strcmp(argv[i], "--help")) {
       printf
           ("Description of the configuration accepted by this simulator:\n");
       xbt_cfg_help(_surf_cfg_set);
-      printf("\nYou can also use --help-models to see the details of all models known by this simulator.\n");
+      printf(
+"\n"
+"You can also use --help-models to see the details of all models known by this simulator.\n"
 #ifdef HAVE_TRACING
-      printf("\nYou can also use --help-tracing to see the details of all tracing options known by this simulator.\n");
+"\n"
+"You can also use --help-tracing to see the details of all tracing options known by this simulator.\n"
 #endif
-      printf("\nYou can also use --help-logs to see the details of logging output.\n\n");
-      exit(0);
-    } else if (!strncmp(argv[i], "--help-models", strlen("--help-models") + 1)) {
+"\n"
+"You can also use --help-logs and --help-log-categories to see the details of logging output.\n"
+"\n"
+        );
+      shall_exit = 1;
+    } else if (!strcmp(argv[i], "--help-models")) {
+      int k;
+
       model_help("workstation", surf_workstation_model_description);
       printf("\n");
       model_help("CPU", surf_cpu_model_description);
       printf("\n");
       model_help("network", surf_network_model_description);
       printf("\nLong description of all optimization levels accepted by the models of this simulator:\n");
-      for (i = 0; surf_optimization_mode_description[i].name; i++)
-        printf("  %s: %s\n", surf_optimization_mode_description[i].name, surf_optimization_mode_description[i].description);
-      printf("Both network and CPU models have 'Lazy' as default optimization level\n");
-      exit(0);
-    } else if (!strncmp(argv[i], "--help-logs", strlen("--help-logs") + 1)) {
-      LOG_help ();
-      exit(0);
+      for (k = 0; surf_optimization_mode_description[k].name; k++)
+        printf("  %s: %s\n",
+               surf_optimization_mode_description[k].name,
+               surf_optimization_mode_description[k].description);
+      printf("Both network and CPU models have 'Lazy' as default optimization level\n\n");
+      shall_exit = 1;
 #ifdef HAVE_TRACING
-    } else if (!strncmp(argv[i], "--help-tracing", strlen("--help-tracing") + 1)) {
+    } else if (!strcmp(argv[i], "--help-tracing")) {
       TRACE_help (1);
-      exit(0);
+      shall_exit = 1;
 #endif
-    }
-    if (remove_it) {            /*remove this from argv */
-      for (j = i + 1; j < *argc; j++) {
-        argv[j - 1] = argv[j];
-      }
-
-      argv[j - 1] = NULL;
-      (*argc)--;
-      i--;                      /* compensate effect of next loop incrementation */
+    } else {
+      argv[j++] = argv[i];
     }
   }
+  if (j < *argc) {
+    argv[j] = NULL;
+    *argc = j;
+  }
+  if (shall_exit)
+    exit(0);
 }
 
 
index d2de87b..6ce1552 100644 (file)
@@ -95,7 +95,7 @@ struct s_model_type routing_models[] = {
   {"DijkstraCache",
    "Dijkstra routing data (fast initialization, fast lookup, small memory requirements, shortest path routing only)",
    model_dijkstracache_create, model_dijkstra_both_end},
-  {"none", "No routing (usable with Constant network only)",
+  {"none", "No routing (Unless you know what you are doing, avoid using this mode in combination with a non Constant network model).",
    model_none_create,  NULL},
   {"RuleBased", "Rule-Based routing data (...)",
    model_rulebased_create, NULL},
index d4a598d..cc1ef3c 100644 (file)
@@ -15,6 +15,7 @@ static xbt_dynar_t none_get_onelink_routes(AS_t rc) {
 static void none_get_route_and_latency(AS_t rc, network_element_t src, network_element_t dst,
                                        route_t res,double *lat)
 {
+  *lat = 0.0;
 }
 
 static route_t none_get_bypass_route(AS_t rc,
index d23457a..5920947 100644 (file)
@@ -181,7 +181,7 @@ static xbt_dynar_t surf_parsed_filename_stack = NULL;
 
 void STag_surfxml_include(void)
 {
-  XBT_INFO("STag_surfxml_include '%s'",A_surfxml_include_file);
+  XBT_DEBUG("STag_surfxml_include '%s'",A_surfxml_include_file);
   xbt_dynar_push(surf_parsed_filename_stack,&surf_parsed_filename); // save old file name
   surf_parsed_filename = xbt_strdup(A_surfxml_include_file);
 
@@ -216,22 +216,22 @@ void ETag_surfxml_include(void) {
 int ETag_surfxml_include_state(void)
 {
   fflush(NULL);
-  XBT_INFO("ETag_surfxml_include_state '%s'",A_surfxml_include_file);
+  XBT_DEBUG("ETag_surfxml_include_state '%s'",A_surfxml_include_file);
 
-  if(!xbt_dynar_is_empty(surf_input_buffer_stack)) // nope, that's a true premature EOF. Let the parser die verbosely.
-         return 1;
+  if(xbt_dynar_is_empty(surf_input_buffer_stack)) // nope, that's a true premature EOF. Let the parser die verbosely.
+         return 0;
 
   // Yeah, we were in an <include> Restore state and proceed.
   fclose(surf_file_to_parse);
   xbt_dynar_pop(surf_file_to_parse_stack, &surf_file_to_parse);
   surf_parse_pop_buffer_state();
-  xbt_dynar_pop(surf_input_buffer_stack,surf_input_buffer);
+  xbt_dynar_pop(surf_input_buffer_stack,&surf_input_buffer);
 
   // Restore the filename for error messages
   free(surf_parsed_filename);
   xbt_dynar_pop(surf_parsed_filename_stack,&surf_parsed_filename);
 
-  return 0;
+  return 1;
 }
 
 
@@ -615,8 +615,8 @@ void surf_parse_open(const char *file)
   if (!surf_file_to_parse_stack)
     surf_file_to_parse_stack = xbt_dynar_new(sizeof(FILE *), NULL);
 
-  if (!surf_file_to_parse_stack)
-    surf_parsed_filename_stack = xbt_dynar_new(sizeof(FILE *), xbt_free_f);
+  if (!surf_parsed_filename_stack)
+    surf_parsed_filename_stack = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
   surf_parsed_filename = xbt_strdup(file);
 
   surf_file_to_parse = surf_fopen(file, "r");
index 2b65a73..049aa7f 100644 (file)
@@ -1359,8 +1359,7 @@ xbt_cfg_get_peer_at(xbt_cfg_t cfg, const char *name, int pos,
 #include "xbt.h"
 #include "xbt/ex.h"
 
-XBT_LOG_EXTERNAL_CATEGORY(xbt_cfg);
-XBT_LOG_DEFAULT_CATEGORY(xbt_cfg);
+XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(xbt_cfg);
 
 XBT_TEST_SUITE("config", "Configuration support");
 
index ba295af..0dac216 100644 (file)
@@ -11,7 +11,7 @@
 #include "datadesc_private.h"
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_ddt_create, xbt_ddt,
-                                "Creating new datadescriptions");
+                                "Creating new data descriptions");
 
 /*** prototypes ***/
 static xbt_dd_cat_field_t
index 13b84d0..d39a728 100644 (file)
@@ -741,8 +741,7 @@ void xbt_dict_postexit(void)
 #include "xbt/ex.h"
 #include "portable.h"
 
-XBT_LOG_EXTERNAL_CATEGORY(xbt_dict);
-XBT_LOG_DEFAULT_CATEGORY(xbt_dict);
+XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(xbt_dict);
 
 XBT_TEST_SUITE("dict", "Dict data container");
 
index a83c005..7141a17 100644 (file)
@@ -12,7 +12,6 @@
 
 #include <string.h>             /* strlen() */
 
-XBT_LOG_EXTERNAL_CATEGORY(xbt_dict);
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_dict_cursor, xbt_dict,
                                 "To traverse dictionaries");
 
index 1d5084e..540c7d9 100644 (file)
@@ -8,7 +8,6 @@
 
 #include "dict_private.h"       /* prototypes of this module */
 
-XBT_LOG_EXTERNAL_CATEGORY(xbt_dict);
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_dict_elm, xbt_dict,
                                 "Dictionaries internals");
 
index 0574b41..7e6f015 100644 (file)
@@ -784,8 +784,7 @@ XBT_INLINE int xbt_dynar_compare(xbt_dynar_t d1, xbt_dynar_t d2,
 #define NB_ELEM 5000
 
 XBT_TEST_SUITE("dynar", "Dynar data container");
-XBT_LOG_EXTERNAL_CATEGORY(xbt_dyn);
-XBT_LOG_DEFAULT_CATEGORY(xbt_dyn);
+XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(xbt_dyn);
 
 XBT_TEST_UNIT("int", test_dynar_int, "Dynars of integers")
 {
index 160a41f..240a974 100644 (file)
@@ -81,6 +81,7 @@ xbt_edge_t xbt_graph_new_edge(xbt_graph_t g,
   return edge;
 }
 
+/** @brief Get the edge connecting src and dst */
 xbt_edge_t xbt_graph_get_edge(xbt_graph_t g, xbt_node_t src,
                               xbt_node_t dst)
 {
@@ -102,21 +103,25 @@ xbt_edge_t xbt_graph_get_edge(xbt_graph_t g, xbt_node_t src,
   return NULL;
 }
 
+/** @brief Get the user data associated to a node */
 void *xbt_graph_node_get_data(xbt_node_t node)
 {
   return node->data;
 }
 
+/** @brief Set the user data associated to a node */
 void xbt_graph_node_set_data(xbt_node_t node, void *data)
 {
   node->data = data;
 }
 
+/** @brief Get the user data associated to a edge */
 void *xbt_graph_edge_get_data(xbt_edge_t edge)
 {
   return edge->data;
 }
 
+/** @brief Set the user data associated to a edge */
 void xbt_graph_edge_set_data(xbt_edge_t edge, void *data)
 {
   edge->data = data;
@@ -286,9 +291,10 @@ void xbt_graph_edge_set_length(xbt_edge_t e, double length)
 
 }
 
-double xbt_graph_edge_get_length(xbt_edge_t e)
+/** @brief Get the length of a edge */
+double xbt_graph_edge_get_length(xbt_edge_t edge)
 {
-  return e->length;
+  return edge->length;
 }
 
 
@@ -664,16 +670,30 @@ void xbt_graph_export_graphviz(xbt_graph_t g, const char *filename,
           "  node [width=.3, height=.3, style=filled, color=skyblue]\n\n");
 
   xbt_dynar_foreach(g->nodes, cursor, node) {
-    fprintf(file, "  \"%p\" ", node);
-    if ((node_name) && ((name = node_name(node))))
-      fprintf(file, "[label=\"%s\"]", name);
-    fprintf(file, ";\n");
+    if (node_name){
+      fprintf(file, "  \"%s\";\n", node_name(node));
+    }else{
+      fprintf(file, "  \"%p\";\n", node);
+    }
   }
   xbt_dynar_foreach(g->edges, cursor, edge) {
-    if (g->directed)
-      fprintf(file, "  \"%p\" -> \"%p\"", edge->src, edge->dst);
-    else
-      fprintf(file, "  \"%p\" -- \"%p\"", edge->src, edge->dst);
+    const char *c;
+    const char *c_dir = "->";
+    const char *c_ndir = "--";
+    if (g->directed){
+      c = c_dir;
+    }else{
+      c = c_ndir;
+    }
+    const char *src_name, *dst_name;
+    if (node_name){
+      src_name = node_name(edge->src);
+      dst_name = node_name(edge->dst);
+      fprintf(file, "  \"%s\" %s \"%s\"", src_name, c, dst_name);
+    }else{
+      fprintf(file, "  \"%p\" %s \"%p\"", edge->src, c, edge->dst);
+    }
+
     if ((edge_name) && ((name = edge_name(edge))))
       fprintf(file, "[label=\"%s\"]", name);
     fprintf(file, ";\n");
index b5fdebf..5df5166 100644 (file)
@@ -507,20 +507,13 @@ const char *xbt_log_priority_names[8] = {
 
 s_xbt_log_category_t _XBT_LOGV(XBT_LOG_ROOT_CAT) = {
   NULL /*parent */ , NULL /* firstChild */ , NULL /* nextSibling */ ,
-      "root",
+      "root", "The common ancestor for all categories",
       0 /*initialized */, xbt_log_priority_uninitialized /* threshold */ ,
       0 /* isThreshInherited */ ,
       NULL /* appender */ , NULL /* layout */ ,
       0                         /* additivity */
 };
 
-XBT_LOG_NEW_CATEGORY(xbt, "All XBT categories (simgrid toolbox)");
-XBT_LOG_NEW_CATEGORY(surf, "All SURF categories");
-XBT_LOG_NEW_CATEGORY(msg, "All MSG categories");
-XBT_LOG_NEW_CATEGORY(simix, "All SIMIX categories");
-XBT_LOG_NEW_CATEGORY(mc, "All MC categories");
-XBT_LOG_NEW_CATEGORY(bindings, "All bindings categories");
-
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(log, xbt,
                                 "Loggings from the logging mechanism itself");
 
@@ -535,35 +528,213 @@ void xbt_log_preinit(void)
   log_cat_init_mutex = xbt_os_rmutex_init();
 }
 
+static void xbt_log_connect_categories(void)
+{
+  /* Connect our log channels: that must be done manually under windows */
+  /* Also permit that they are correctly listed by xbt_log_help_categories() */
+
+  /* amok */
+  XBT_LOG_CONNECT(amok);
+  XBT_LOG_CONNECT(amok_bw);
+  XBT_LOG_CONNECT(amok_bw_sat);
+  XBT_LOG_CONNECT(amok_pm);
+
+  /* gras */
+  XBT_LOG_CONNECT(gras);
+  XBT_LOG_CONNECT(gras_modules);
+  XBT_LOG_CONNECT(gras_msg);
+  XBT_LOG_CONNECT(gras_msg_read);
+  XBT_LOG_CONNECT(gras_msg_rpc);
+  XBT_LOG_CONNECT(gras_timer);
+  XBT_LOG_CONNECT(gras_trp);
+  XBT_LOG_CONNECT(gras_trp_file);
+  XBT_LOG_CONNECT(gras_virtu);
+  XBT_LOG_CONNECT(gras_virtu_emul);
+  XBT_LOG_CONNECT(gras_virtu_process);
+
+  /* xbt */
+  XBT_LOG_CONNECT(xbt);
+  XBT_LOG_CONNECT(graphxml_parse);
+  XBT_LOG_CONNECT(log);
+  XBT_LOG_CONNECT(mm_diff);
+  XBT_LOG_CONNECT(module);
+  XBT_LOG_CONNECT(peer);
+  XBT_LOG_CONNECT(replay);
+  XBT_LOG_CONNECT(strbuff);
+  XBT_LOG_CONNECT(xbt_cfg);
+  XBT_LOG_CONNECT(xbt_dict);
+  XBT_LOG_CONNECT(xbt_dict_cursor);
+  XBT_LOG_CONNECT(xbt_dict_elm);
+#ifdef XBT_USE_DEPRECATED
+  XBT_LOG_CONNECT(xbt_dict_multi);
+#endif
+  XBT_LOG_CONNECT(xbt_ddt);
+  XBT_LOG_CONNECT(xbt_ddt_cbps);
+  XBT_LOG_CONNECT(xbt_ddt_convert);
+  XBT_LOG_CONNECT(xbt_ddt_create);
+  XBT_LOG_CONNECT(xbt_ddt_exchange);
+  XBT_LOG_CONNECT(xbt_ddt_parse);
+  XBT_LOG_CONNECT(xbt_ddt_lexer);
+  XBT_LOG_CONNECT(xbt_dyn);
+  XBT_LOG_CONNECT(xbt_ex);
+  XBT_LOG_CONNECT(xbt_fifo);
+  XBT_LOG_CONNECT(xbt_graph);
+  XBT_LOG_CONNECT(xbt_lib);
+  XBT_LOG_CONNECT(xbt_mallocator);
+  XBT_LOG_CONNECT(xbt_matrix);
+  XBT_LOG_CONNECT(xbt_parmap);
+  XBT_LOG_CONNECT(xbt_parmap_unit);
+  XBT_LOG_CONNECT(xbt_queue);
+  XBT_LOG_CONNECT(xbt_set);
+  XBT_LOG_CONNECT(xbt_sync);
+  XBT_LOG_CONNECT(xbt_sync_os);
+  XBT_LOG_CONNECT(xbt_trp);
+  XBT_LOG_CONNECT(xbt_trp_meas);
+  XBT_LOG_CONNECT(xbt_trp_tcp);
+
+#ifdef simgrid_EXPORTS
+  /* The following categories are only defined in libsimgrid */
+
+  /* gras (sg) */
+  XBT_LOG_CONNECT(gras_trp_sg);
+
+  /* bindings */
+#ifdef HAVE_LUA
+  XBT_LOG_CONNECT(bindings);
+  XBT_LOG_CONNECT(lua);
+  XBT_LOG_CONNECT(lua_comm);
+  XBT_LOG_CONNECT(lua_host);
+  XBT_LOG_CONNECT(lua_platf);
+  XBT_LOG_CONNECT(lua_process);
+  XBT_LOG_CONNECT(lua_state_cloner);
+  XBT_LOG_CONNECT(lua_task);
+  XBT_LOG_CONNECT(lua_utils);
+#endif
+
+  /* instr */
+#ifdef HAVE_TRACING
+  XBT_LOG_CONNECT(instr);
+  XBT_LOG_CONNECT(instr_paje_trace);
+  XBT_LOG_CONNECT(instr_smpi);
+  XBT_LOG_CONNECT(instr_surf);
+#endif
+
+  /* jedule */
+#ifdef HAVE_JEDULE
+  XBT_LOG_CONNECT(jedule);
+  XBT_LOG_CONNECT(jed_out);
+  XBT_LOG_CONNECT(jed_sd);
+#endif
+
+  /* mc */
+#ifdef HAVE_MC
+  XBT_LOG_CONNECT(mc);
+  XBT_LOG_CONNECT(mc_checkpoint);
+  XBT_LOG_CONNECT(mc_dpor);
+  XBT_LOG_CONNECT(mc_global);
+  XBT_LOG_CONNECT(mc_liveness);
+  XBT_LOG_CONNECT(mc_memory);
+  XBT_LOG_CONNECT(mc_memory_map);
+  XBT_LOG_CONNECT(mc_request);
+#endif
+
+  /* msg */
+  XBT_LOG_CONNECT(msg);
+  XBT_LOG_CONNECT(msg_action);
+  XBT_LOG_CONNECT(msg_gos);
+  XBT_LOG_CONNECT(msg_kernel);
+  XBT_LOG_CONNECT(msg_mailbox);
+  XBT_LOG_CONNECT(msg_process);
+  XBT_LOG_CONNECT(msg_task);
+
+  /* simdag */
+  XBT_LOG_CONNECT(sd);
+  XBT_LOG_CONNECT(sd_daxparse);
+#ifdef HAVE_GRAPHVIZ
+  XBT_LOG_CONNECT(sd_dotparse);
+#endif
+  XBT_LOG_CONNECT(sd_kernel);
+  XBT_LOG_CONNECT(sd_task);
+  XBT_LOG_CONNECT(sd_workstation);
+
+  /* simix */
+  XBT_LOG_CONNECT(simix);
+  XBT_LOG_CONNECT(simix_context);
+  XBT_LOG_CONNECT(simix_deployment);
+  XBT_LOG_CONNECT(simix_environment);
+  XBT_LOG_CONNECT(simix_host);
+  XBT_LOG_CONNECT(simix_io);
+  XBT_LOG_CONNECT(simix_kernel);
+  XBT_LOG_CONNECT(simix_network);
+  XBT_LOG_CONNECT(simix_process);
+  XBT_LOG_CONNECT(simix_smurf);
+  XBT_LOG_CONNECT(simix_synchro);
+
+  /* smpi */
+  /* SMPI categories are connected in smpi_global.c */
+
+  /* surf */
+  XBT_LOG_CONNECT(surf);
+  XBT_LOG_CONNECT(random);
+  XBT_LOG_CONNECT(surf_config);
+  XBT_LOG_CONNECT(surf_cpu);
+  XBT_LOG_CONNECT(surf_cpu_ti);
+  XBT_LOG_CONNECT(surf_kernel);
+  XBT_LOG_CONNECT(surf_lagrange);
+  XBT_LOG_CONNECT(surf_lagrange_dichotomy);
+  XBT_LOG_CONNECT(surf_maxmin);
+  XBT_LOG_CONNECT(surf_network);
+#ifdef HAVE_GTNETS
+  XBT_LOG_CONNECT(surf_network_gtnets);
+#endif
+#ifdef HAVE_NS3
+  XBT_LOG_CONNECT(surf_network_ns3);
+#endif
+  XBT_LOG_CONNECT(surf_parse);
+  XBT_LOG_CONNECT(surf_route);
+  XBT_LOG_CONNECT(surf_routing_generic);
+  XBT_LOG_CONNECT(surf_route_cluster);
+  XBT_LOG_CONNECT(surf_route_dijkstra);
+  XBT_LOG_CONNECT(surf_route_floyd);
+  XBT_LOG_CONNECT(surf_route_full);
+  XBT_LOG_CONNECT(surf_route_none);
+  XBT_LOG_CONNECT(surf_route_rulebased);
+  XBT_LOG_CONNECT(surf_route_vivaldi);
+  XBT_LOG_CONNECT(surf_storage);
+  XBT_LOG_CONNECT(surf_trace);
+  XBT_LOG_CONNECT(surf_workstation);
+
+#endif /* simgrid_EXPORTS */
+}
+
+static void xbt_log_help(void);
+static void xbt_log_help_categories(void);
+
 /** @brief Get all logging settings from the command line
  *
  * xbt_log_control_set() is called on each string we got from cmd line
  */
 void xbt_log_init(int *argc, char **argv)
 {
+  unsigned help_requested = 0;  /* 1: logs; 2: categories */
   int i, j;
   char *opt;
 
   //    _XBT_LOGV(log).threshold = xbt_log_priority_debug; /* uncomment to set the LOG category to debug directly */
 
+  xbt_log_connect_categories();
+
   /* Set logs and init log submodule */
   for (j = i = 1; i < *argc; i++) {
-    if (!strncmp(argv[i], "--log=", strlen("--log=")) ||
-        !strncmp(argv[i], "--gras-log=", strlen("--gras-log=")) ||
-        !strncmp(argv[i], "--surf-log=", strlen("--surf-log=")) ||
-        !strncmp(argv[i], "--msg-log=", strlen("--msg-log=")) ||
-        !strncmp(argv[i], "--simix-log=", strlen("--simix-log=")) ||
-        !strncmp(argv[i], "--xbt-log=", strlen("--xbt-log="))) {
-
-      if (strncmp(argv[i], "--log=", strlen("--log=")))
-        XBT_WARN
-            ("Option %.*s is deprecated and will disapear in the future. Use --log instead.",
-             (int) (strchr(argv[i], '=') - argv[i]), argv[i]);
-
+    if (!strncmp(argv[i], "--log=", strlen("--log="))) {
       opt = strchr(argv[i], '=');
       opt++;
       xbt_log_control_set(opt);
       XBT_DEBUG("Did apply '%s' as log setting", opt);
+    } else if (!strcmp(argv[i], "--help-logs")) {
+      help_requested |= 1;
+    } else if (!strcmp(argv[i], "--help-log-categories")) {
+      help_requested |= 2;
     } else {
       argv[j++] = argv[i];
     }
@@ -572,6 +743,14 @@ void xbt_log_init(int *argc, char **argv)
     argv[j] = NULL;
     *argc = j;
   }
+
+  if (help_requested) {
+    if (help_requested & 1)
+      xbt_log_help();
+    if (help_requested & 2)
+      xbt_log_help_categories();
+    exit(0);
+  }
 }
 
 static void log_cat_exit(xbt_log_category_t cat)
@@ -1105,3 +1284,104 @@ void xbt_log_additivity_set(xbt_log_category_t cat, int additivity)
 {
   cat->additivity = additivity;
 }
+
+static void xbt_log_help(void)
+{
+  printf(
+"Description of the logging output:\n"
+"\n"
+"   Threshold configuration: --log=CATEGORY_NAME.thres:PRIORITY_LEVEL\n"
+"      CATEGORY_NAME: defined in code with function 'XBT_LOG_NEW_CATEGORY'\n"
+"      PRIORITY_LEVEL: the level to print (trace,debug,verbose,info,warning,error,critical)\n"
+"         -> trace: enter and return of some functions\n"
+"         -> debug: crufty output\n"
+"         -> verbose: verbose output for the user wanting more\n"
+"         -> info: output about the regular functionning\n"
+"         -> warning: minor issue encountered\n"
+"         -> error: issue encountered\n"
+"         -> critical: major issue encountered\n"
+"\n"
+"   Format configuration: --log=CATEGORY_NAME.fmt:OPTIONS\n"
+"      OPTIONS may be:\n"
+"         -> %%%%: the %% char\n"
+"         -> %%n: platform-dependent line separator (LOG4J compatible)\n"
+"         -> %%e: plain old space (SimGrid extension)\n"
+"\n"
+"         -> %%m: user-provided message\n"
+"\n"
+"         -> %%c: Category name (LOG4J compatible)\n"
+"         -> %%p: Priority name (LOG4J compatible)\n"
+"\n"
+"         -> %%h: Hostname (SimGrid extension)\n"
+"         -> %%P: Process name (SimGrid extension)\n"
+"         -> %%t: Thread \"name\" (LOG4J compatible -- actually the address of the thread in memory)\n"
+"         -> %%i: Process PID (SimGrid extension -- this is a 'i' as in 'i'dea)\n"
+"\n"
+"         -> %%F: file name where the log event was raised (LOG4J compatible)\n"
+"         -> %%l: location where the log event was raised (LOG4J compatible, like '%%F:%%L' -- this is a l as in 'l'etter)\n"
+"         -> %%L: line number where the log event was raised (LOG4J compatible)\n"
+"         -> %%M: function name (LOG4J compatible -- called method name here of course).\n"
+"                 Defined only when using gcc because there is no __FUNCTION__ elsewhere.\n"
+"\n"
+"         -> %%b: full backtrace (Called %%throwable in LOG4J). Defined only under windows or when using the GNU libc because\n"
+"                 backtrace() is not defined elsewhere, and we only have a fallback for windows boxes, not mac ones for example.\n"
+"         -> %%B: short backtrace (only the first line of the %%b). Called %%throwable{short} in LOG4J; defined where %%b is.\n"
+"\n"
+"         -> %%d: date (UNIX-like epoch)\n"
+"         -> %%r: application age (time elapsed since the beginning of the application)\n"
+"\n"
+    );
+}
+
+static int xbt_log_cat_cmp(const void *pa, const void *pb)
+{
+  xbt_log_category_t a = *(xbt_log_category_t *)pa;
+  xbt_log_category_t b = *(xbt_log_category_t *)pb;
+  return strcmp(a->name, b->name);
+}
+
+static void xbt_log_help_categories_rec(xbt_log_category_t category,
+                                        const char *prefix)
+{
+  char *this_prefix;
+  char *child_prefix;
+  xbt_dynar_t dynar;
+  unsigned i;
+  xbt_log_category_t cat;
+
+  if (!category)
+    return;
+
+  if (category->parent) {
+    this_prefix = bprintf("%s \\_ ", prefix);
+    child_prefix = bprintf("%s |  ", prefix);
+  } else {
+    this_prefix = bprintf("%s", prefix);
+    child_prefix = bprintf("%s", prefix);
+  }
+
+  dynar = xbt_dynar_new(sizeof(xbt_log_category_t), NULL);
+  for (cat = category ; cat != NULL; cat = cat->nextSibling)
+    xbt_dynar_push_as(dynar, xbt_log_category_t, cat);
+
+  xbt_dynar_sort(dynar, xbt_log_cat_cmp);
+
+  for (i = 0; i < xbt_dynar_length(dynar); i++) {
+    if (i == xbt_dynar_length(dynar) - 1 && category->parent)
+      *strrchr(child_prefix, '|') = ' ';
+    cat = xbt_dynar_get_as(dynar, i, xbt_log_category_t);
+    printf("%s%s: %s\n", this_prefix, cat->name, cat->description);
+    xbt_log_help_categories_rec(cat->firstChild, child_prefix);
+  }
+
+  xbt_dynar_free(&dynar);
+  xbt_free(this_prefix);
+  xbt_free(child_prefix);
+}
+
+static void xbt_log_help_categories(void)
+{
+  printf("Current log category hierarchy:\n");
+  xbt_log_help_categories_rec(&_XBT_LOGV(XBT_LOG_ROOT_CAT), "   ");
+  printf("\n");
+}
index 391b573..5660ba7 100644 (file)
 
 #include "xbt_modinter.h"       /* prototype of other module's init/exit in XBT */
 
+XBT_LOG_NEW_CATEGORY(xbt, "All XBT categories (simgrid toolbox)");
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(module, xbt, "module handling");
 
 char *xbt_binary_name = NULL;   /* Mandatory to retrieve neat backtraces */
 int xbt_initialized = 0;
 
-XBT_LOG_EXTERNAL_CATEGORY(graphxml_parse);
-XBT_LOG_EXTERNAL_CATEGORY(log);
-XBT_LOG_EXTERNAL_CATEGORY(module);
-XBT_LOG_EXTERNAL_CATEGORY(peer);
-XBT_LOG_EXTERNAL_CATEGORY(strbuff);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_cfg);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_dict);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_dict_cursor);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_dict_elm);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_dict_multi);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_dyn);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_ex);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_fifo);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_graph);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_matrix);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_queue);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_set);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_sync_os);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_parmap);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_parmap_unit);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_ddt);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_ddt_cbps);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_ddt_convert);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_ddt_create);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_ddt_exchange);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_ddt_lexer);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_ddt_parse);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_trp);
-XBT_LOG_EXTERNAL_CATEGORY(xbt_trp_meas);
-
 int _surf_do_model_check = 0;   /* this variable is used accros the libraries, and must be declared in XBT so that it's also defined in GRAS (not only in libsimgrid) */
 
 /* Declare xbt_preinit and xbt_postexit as constructor/destructor of the library.
  * This is crude and rather compiler-specific, unfortunately.
  */
-static void xbt_preinit(void) _XBT_GNUC_CONSTRUCTOR;
-static void xbt_postexit(void) _XBT_GNUC_DESTRUCTOR;
+static void xbt_preinit(void) _XBT_GNUC_CONSTRUCTOR(200);
+static void xbt_postexit(void) _XBT_GNUC_DESTRUCTOR(200);
 
 #ifdef _XBT_WIN32
 # undef _XBT_NEED_INIT_PRAGMA
@@ -112,37 +83,6 @@ static void xbt_preinit(void)
 #endif
   xbt_log_preinit();
 
-  /* Connect our log channels: that must be done manually under windows */
-  XBT_LOG_CONNECT(graphxml_parse, xbt);
-  XBT_LOG_CONNECT(log, xbt);
-  XBT_LOG_CONNECT(module, xbt);
-  XBT_LOG_CONNECT(peer, xbt);
-  XBT_LOG_CONNECT(strbuff, xbt);
-  XBT_LOG_CONNECT(xbt_cfg, xbt);
-  XBT_LOG_CONNECT(xbt_dict, xbt);
-  XBT_LOG_CONNECT(xbt_dict_cursor, xbt_dict);
-  XBT_LOG_CONNECT(xbt_dict_elm, xbt_dict);
-  XBT_LOG_CONNECT(xbt_dict_multi, xbt_dict);
-  XBT_LOG_CONNECT(xbt_dyn, xbt);
-  XBT_LOG_CONNECT(xbt_ex, xbt);
-  XBT_LOG_CONNECT(xbt_fifo, xbt);
-  XBT_LOG_CONNECT(xbt_graph, xbt);
-  XBT_LOG_CONNECT(xbt_matrix, xbt);
-  XBT_LOG_CONNECT(xbt_queue, xbt);
-  XBT_LOG_CONNECT(xbt_set, xbt);
-  XBT_LOG_CONNECT(xbt_sync_os, xbt);
-  XBT_LOG_CONNECT(xbt_parmap,xbt);
-  XBT_LOG_CONNECT(xbt_parmap_unit,xbt_parmap);
-  XBT_LOG_CONNECT(xbt_ddt, xbt);
-  XBT_LOG_CONNECT(xbt_ddt_cbps, xbt_ddt);
-  XBT_LOG_CONNECT(xbt_ddt_convert, xbt_ddt);
-  XBT_LOG_CONNECT(xbt_ddt_create, xbt_ddt);
-  XBT_LOG_CONNECT(xbt_ddt_exchange, xbt_ddt);
-  XBT_LOG_CONNECT(xbt_ddt_lexer, xbt_ddt_parse);
-  XBT_LOG_CONNECT(xbt_ddt_parse, xbt_ddt);
-  XBT_LOG_CONNECT(xbt_trp, xbt);
-  XBT_LOG_CONNECT(xbt_trp_meas, xbt_trp);
-
   xbt_backtrace_preinit();
   xbt_os_thread_mod_preinit();
   xbt_fifo_preinit();
index f74500a..de3522f 100644 (file)
@@ -202,9 +202,6 @@ static void test_sha(const char *clear, const char *hashed)
 
 XBT_TEST_SUITE("hash", "Various hash functions");
 
-XBT_LOG_NEW_DEFAULT_CATEGORY(hash, "Tests of various hash functions ");
-
-
 XBT_TEST_UNIT("sha", test_crypto_sha, "Test of the sha algorithm")
 {
   /* Empty string as test vector */
index d72f8a6..7b2993d 100644 (file)
@@ -66,8 +66,7 @@ void xbt_dynar_dopar(xbt_dynar_t datas, void_f_int_pvoid_t function)
 #include "xbt/synchro.h"
 
 XBT_TEST_SUITE("synchro", "Advanced synchronization mecanisms");
-XBT_LOG_EXTERNAL_CATEGORY(xbt_dyn);
-XBT_LOG_DEFAULT_CATEGORY(xbt_dyn);
+XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(xbt_dyn);
 
 static void add100(int rank, void *data)
 {
index 02720c5..0994999 100644 (file)
@@ -4,7 +4,7 @@
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
-//for i in $(seq 1 100); do teshsuite/simdag/platforms/evaluate_get_route_time ../examples/platforms/One_cluster.xml 1 2> /tmp/null ; done
+//for i in $(seq 1 100); do teshsuite/simdag/platforms/evaluate_get_route_time ../examples/platforms/cluster.xml 1 2> /tmp/null ; done
 
 
 #include <stdio.h>
index 8cd04da..1d6ae96 100644 (file)
@@ -2,7 +2,7 @@
 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
 <platform version="3">
        <AS id="main" routing="Full">
-               <include file="clusterA.xml"/>
-               <include file="clusterB.xml"/>
+               <include file="clusterA.xml"></include>
+               <include file="clusterB.xml"></include>
        </AS>
 </platform>
index 80e8fc9..fe7fc39 100755 (executable)
@@ -5,7 +5,7 @@ use strict;
 # Add here the pages of the documentation generated by a @page doxygen macro
 my @extra_files = qw(html/index.html html/pages.html html/modules.html html/annotated.html html/functions.html 
                                         html/functions_vars.html index.php 
-                     html/GRAS_tut.html html/tracing.html html/install.html html/bindings.html
+                     html/GRAS_tut.html html/tracing.html html/platform.html html/install.html html/bindings.html
                      html/options.html html/use.html html/pls.html html/FAQ.html);
 
 # GRAS tutorial
@@ -395,6 +395,7 @@ foreach my $file (@allfiles) {
              || $file =~ /^html\/install.*/
              || $file =~ /^html\/options.*/
              || $file =~ /^html\/tracing.*/ 
+             || $file =~ /^html\/platform.*/ 
              || $file =~ /^html\/bindings.*/
              || $file =~ /^html\/pls.*/
              || $file =~ /^html\/modules.*/
@@ -408,6 +409,7 @@ foreach my $file (@allfiles) {
                                $tmp_buff .= '          <li><a href="modules.html"><span>Modules&#160;API</span></a></li>'."\n";
                        $tmp_buff .= '          <li><a href="annotated.html"><span>Data&#160;Structures</span></a></li>'."\n";
                                $tmp_buff .= '          <li><a href="options.html"><span>Options & configurations</span></a></li>'."\n";
+                               $tmp_buff .= '          <li><a href="platform.html"><span>Platform description</span></a></li>'."\n";
                                $tmp_buff .= '          <li><a href="tracing.html"><span>Tracing Simulations</span></a></li>'."\n";
                                $tmp_buff .= '          <li><a href="bindings.html"><span>Bindings</span></a></li>'."\n";
                                $tmp_buff .= '          <li><a href="pls.html"><span>Packet level simulation</span></a></li>'."\n";
index 938d953..9801be3 100755 (executable)
@@ -17,50 +17,28 @@ my %desc;
 #    ie, when the channel toto is initialized (does not work under windows)
 
 # $desc{"toto"} is its description
-my %c_ancestor;
-# $c_ancestor{"toto"} is the ancestor of the toto channel, as declared by XBT_LOG_CONNECT
-#    ie, in a initialization function (only way to do so under windows)
-#    we want $ancestor{"toto"} == $c_ancestor{"toto"} for each toto, or bad things will happen under windows
+my %connected;
+# $connected{"toto"} is defined if XBT_LOG_CONNECT("toto") is used
 
 sub cleanup_ctn {
     my $ctn = shift;        # cleanup the content of a macro call
-    $ctn =~ s/ *\n//gs;                                                                                 
-    $ctn =~ s/,\s*"/,"/gs;
-    $ctn =~ s/"\s*$/"/gs;
-    $ctn =~ s/,\s*/,/gs;
-    my @elms_tmp=split (/,/,$ctn); 
+    $ctn =~ s/^\s*(.*)\s*$/$1/gs;
     my @elms;
     print "ctn=$ctn\n" if $debug > 1;
-    # There may be some ',' in the description. Remerge the stuff like: "description, really"
-    while (1) {
-       my $acc = shift @elms_tmp;
-       last unless defined $acc;
-       if ($acc =~ /^"/) { # ") {
-           while (shift @elms_tmp) { 
-               $acc .= $_;
-           }
-           die "Unparsable content: $ctn\n"
-             unless ($acc =~ s/^"(.*)"$/$1/);
-       }
-       print "  seen $acc\n" if $debug > 1;
-       push @elms, $acc;
-    }
-    if (scalar(@elms) eq 3) {
+    if ($ctn =~ m/^(\w+)\s*,\s*(\w+)\s*,\s*"?([^"]*)"?$/s) {
        # Perfect, we got 0->name; 1->anc; 2->desc
-    } elsif (scalar(@elms) eq 2) {
+       $elms[0] = $1;
+       $elms[1] = $2;
+       $elms[2] = $3;
+    } elsif ($ctn =~ m/^(\w+)\s*,\s*"?([^"]*)"?$/s) {
        # Mmm. got no ancestor. Add the default one.
-       $elms[2] = $elms[1]; # shift the desc
+       $elms[0] = $1;
        $elms[1] = "XBT_LOG_ROOT_CAT";
+       $elms[2] = $2;
     } else {
-       my $l = scalar(@elms);
-       my $s = "";
-       map {$s .= $_;} @elms;
-       die "Unparsable content: $ctn (length=$l) (content=$s)\n";
+       die "Unparsable content: $ctn\n";
     }
-    
-    $elms[0] =~ s/^\s*(\S*)\s*$/$1/; # trim
-    $elms[1]  =~ s/^\s*(\S*)\s*$/$1/; # trim
-
+    $elms[2] =~ s/\\\\/\\/gs;
     return @elms;
 }
 
@@ -85,7 +63,7 @@ sub parse_file {
 
     my $connect_data = $data; # save a copy for second parsing phase
     while ($data =~ s/^.*?XBT_LOG_NEW(_DEFAULT)?_(SUB)?CATEGORY\(//s) {
-       $data =~ s/([^"]*"[^"]*")\)//s || die "unparsable macro: $data"; # ]]);
+       $data =~ s/([^"]*"[^"]*")\)//s || die "unparsable macro: $data";
            
         my ($name,$anc,$desc) = cleanup_ctn($1);
            
@@ -102,14 +80,8 @@ sub parse_file {
    # Now, look for XBT_LOG_CONNECT calls
    $data = $connect_data;
    while ($data =~ s/^.*?XBT_LOG_CONNECT\(//s) {
-                                                                        
-       $data =~ s/([^\)]*)\)//s || die "unparsable macro: $data"; # ]]);           
-        my ($name, $ignoreme, $anc) = cleanup_ctn($1);
-           
-        # build the tree, checking for name conflict
-       $c_ancestor{$name}=$anc;
-   
-       print STDERR " $name -> $anc\n" if $debug;
+       $data =~ s/\s*(\w+)\s*\)//s || die "unparsable macro: $data";
+       $connected{$1} = 1;
    }
 }
 # Retrieve all the file names, and add their content to $data
@@ -139,20 +111,12 @@ sub display_subtree {
     
 display_subtree("XBT_LOG_ROOT_CAT","");
 
-sub check_connection {
-    my $name=shift;
-    
-    foreach my $cat (grep {$ancestor{$_} eq $name} sort keys %ancestor) {
-       unless ($ancestor{$cat} eq "XBT_LOG_ROOT_CAT" || (defined($c_ancestor{$cat}) && $c_ancestor{$cat} eq $name)) {
-           warn "Category $cat will be disconnected under windows. Add the following to an initialization function:\n   XBT_LOG_CONNECT($cat, $ancestor{$cat});\n";
-       } else {
-           warn "Correctly connected, even under windows: Category $cat.\n" if $debug;
-       }
-       check_connection($cat);
-    }
-}
-check_connection("XBT_LOG_ROOT_CAT");  
-map {warn "Category $_ does not seem to be connected to the root (anc=$ancestor{$_})\n";} grep {!defined $used{$_}} sort keys %ancestor;    
+map {
+    warn "Category $_ does not seem to be connected.  Use XBT_LOG_CONNECT($_).\n";
+} grep {!defined $connected{$_}} sort keys %ancestor;
+map {
+    warn "Category $_ does not seem to be connected to the root (anc=$ancestor{$_})\n";
+} grep {!defined $used{$_}} sort keys %ancestor;
 
        
-print "@}*/";
\ No newline at end of file
+print "@}*/\n";
index 7efa7df..b418639 100644 (file)
@@ -16,6 +16,7 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(graphicator,
 
 int main(int argc, char **argv)
 {
+  XBT_LOG_CONNECT(graphicator);
 #ifdef HAVE_TRACING
   MSG_global_init(&argc, argv);
 
index 3639b0b..1cd58ee 100644 (file)
@@ -95,6 +95,8 @@ int main(int argc, char *argv[])
   char *deployment_file = NULL;
   int i;
 
+  XBT_LOG_CONNECT(stubgen);
+
   xbt_binary_name=xbt_strdup(argv[0]);
 
   surf_init(&argc, argv);
index f865e45..6105ba4 100644 (file)
@@ -199,6 +199,8 @@ int main(int argc, char *argv[])
   int i;
   char *suitename = NULL;
   struct sigaction newact;
+
+  XBT_LOG_CONNECT(tesh);
   xbt_init(&argc, argv);
   rctx_init();
   parse_environ();